first commit

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

View File

@@ -0,0 +1,4 @@
存储UI资源的文件夹
1、通过app.manager.ui管理
2、通过菜单「App/创建/View」创建
3、如不再需要可以直接删除此文件夹

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "5854d615-edf1-435d-9ec6-1ecb4ee0af2a",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,2 @@
1、所有page类型UI的根目录
2、如不再需要可以直接删除此文件夹

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "06135315-0b97-4b53-97f0-5ee82ea63600",
"files": [],
"subMetas": {},
"userData": {}
}

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

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

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "169756bf-bc5f-471b-8200-c13e4a174b8e",
"files": [],
"subMetas": {},
"userData": {}
}

View File

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

View File

@@ -0,0 +1,14 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e76f98d3-131d-48aa-bbd5-a1fc99406971",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_f7NI9WxFVIO6e8LbJGF72k",
"priority": 1,
"bundleName": "page-rewardhistory"
}
}

View File

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

View File

@@ -0,0 +1,2817 @@
[
{
"__type__": "cc.Prefab",
"_name": "PageRewardhistory",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "PageRewardhistory",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 10
},
{
"__id__": 69
}
],
"_active": true,
"_components": [
{
"__id__": 117
},
{
"__id__": 119
},
{
"__id__": 121
}
],
"_prefab": {
"__id__": 123
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "mask",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
}
],
"_prefab": {
"__id__": 9
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bffYXjGadNB7Q4+PI/QoIF"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_alignFlags": 45,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "7cRCi+2JVIPbbMKk3eVKfp"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 8
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 150
},
"_spriteFrame": {
"__uuid__": "f02366ec-9682-4417-87b0-bd9723cb4041@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "7aZEEniLZLnoT2A6qDMGfE"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "bbqnhfc8RA8aXR1wCSgaxy",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_bg",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 11
},
{
"__id__": 17
},
{
"__id__": 23
},
{
"__id__": 34
},
{
"__id__": 58
}
],
"_active": true,
"_components": [
{
"__id__": 64
},
{
"__id__": 66
}
],
"_prefab": {
"__id__": 68
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "rehis_icon",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 12
},
{
"__id__": 14
}
],
"_prefab": {
"__id__": 16
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 458,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
},
"_enabled": true,
"__prefab": {
"__id__": 13
},
"_contentSize": {
"__type__": "cc.Size",
"width": 849,
"height": 317
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "32OvmziOtEvZxKLUiMYsjF"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
},
"_enabled": true,
"__prefab": {
"__id__": 15
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "4e96f507-f26d-4701-a9a4-912f7547b295@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1fSh9XTYJFEKc1W2xCpgDF"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "30sN1g0INEQ6tJnGr4ctEU",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_bg_title",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 18
},
{
"__id__": 20
}
],
"_prefab": {
"__id__": 22
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 675,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 17
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"_contentSize": {
"__type__": "cc.Size",
"width": 576,
"height": 111
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a1GKjezwlJSJnN7pe9xqLJ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 17
},
"_enabled": true,
"__prefab": {
"__id__": 21
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "2f12e860-64f6-462e-b3a0-eb4d04dfec81@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "984eQoJG9DX5FV3uH1n2PL"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "36np2mmfVGS4ROL8gu3fv8",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "btn_close",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 24
},
{
"__id__": 26
},
{
"__id__": 28
},
{
"__id__": 30
}
],
"_prefab": {
"__id__": 33
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 435,
"y": 590,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 25
},
"_contentSize": {
"__type__": "cc.Size",
"width": 118,
"height": 130
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "3bs6eCETFKzYTMMb53B9n2"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 27
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "e4c4a51f-4906-4750-92fa-eda8ea787e68@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "69YgQPdGZKpK1htY243dkH"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 29
},
"_alignFlags": 33,
"_target": null,
"_left": 0,
"_right": 30.5,
"_top": 108,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "80ALlTPLBFNrNvhpkQYKPM"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 31
},
"clickEvents": [
{
"__id__": 32
}
],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.1,
"_zoomScale": 0.96,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "02hBBBYaxEPJVtzXIX+TQH"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 1
},
"component": "",
"_componentId": "a70db4PkldMrqJCkQvJdOTQ",
"handler": "hide",
"customEventData": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "a2aT9KQWRHAoC5YWwCC8Aw",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rw_list",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [
{
"__id__": 35
}
],
"_active": true,
"_components": [
{
"__id__": 51
},
{
"__id__": 53
},
{
"__id__": 55
}
],
"_prefab": {
"__id__": 57
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -160,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "mask",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 34
},
"_children": [
{
"__id__": 36
}
],
"_active": true,
"_components": [
{
"__id__": 42
},
{
"__id__": 44
},
{
"__id__": 46
},
{
"__id__": 48
}
],
"_prefab": {
"__id__": 50
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "content",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 35
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
}
],
"_prefab": {
"__id__": 41
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 596,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
},
"_enabled": true,
"__prefab": {
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
"width": 100,
"height": -30
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 1
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "c5R0L9MrBJZrzT+2sQTjhl"
},
{
"__type__": "cc.Layout",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
},
"_enabled": true,
"__prefab": {
"__id__": 40
},
"_resizeMode": 1,
"_layoutType": 2,
"_cellSize": {
"__type__": "cc.Size",
"width": 40,
"height": 40
},
"_startAxis": 0,
"_paddingLeft": 0,
"_paddingRight": 0,
"_paddingTop": 0,
"_paddingBottom": 0,
"_spacingX": 0,
"_spacingY": 30,
"_verticalDirection": 1,
"_horizontalDirection": 0,
"_constraint": 0,
"_constraintNum": 2,
"_affectedByScale": false,
"_isAlign": false,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "c20JVpkGFH9ZQrsnjUP7J1"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "adwgBXFMJHP6vbTClSkkcv",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 35
},
"_enabled": true,
"__prefab": {
"__id__": 43
},
"_contentSize": {
"__type__": "cc.Size",
"width": 889,
"height": 906
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "dfecdW6XZH4rtvJ4XNsqvn"
},
{
"__type__": "cc.Mask",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 35
},
"_enabled": true,
"__prefab": {
"__id__": 45
},
"_type": 0,
"_inverted": false,
"_segments": 64,
"_alphaThreshold": 0.1,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9cXLtOWxFAi7aY7KonSggx"
},
{
"__type__": "cc.Graphics",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 35
},
"_enabled": true,
"__prefab": {
"__id__": 47
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_lineWidth": 1,
"_strokeColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_lineJoin": 2,
"_lineCap": 0,
"_fillColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 0
},
"_miterLimit": 10,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "13TM5Y/e1IiLSO90FdQfVR"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 35
},
"_enabled": true,
"__prefab": {
"__id__": 49
},
"_alignFlags": 45,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "eaipPus09CE47pOj0qhOJ3"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "626PlbjDVN/5DyH4A13Hbo",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"_contentSize": {
"__type__": "cc.Size",
"width": 889,
"height": 906
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "87EV8TcYxOU4q32+Rca4yo"
},
{
"__type__": "cc.ScrollView",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 54
},
"bounceDuration": 1,
"brake": 0.5,
"elastic": true,
"inertia": true,
"horizontal": false,
"vertical": true,
"cancelInnerEvents": true,
"scrollEvents": [],
"_content": {
"__id__": 36
},
"_horizontalScrollBar": null,
"_verticalScrollBar": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "77Yv3wlQpK1KCIl+GZVf+P"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 56
},
"_alignFlags": 45,
"_target": null,
"_left": 80,
"_right": 80,
"_top": 470,
"_bottom": 150,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bfLCQyoshOuJK46743VnVw"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "7chrvFK39HT7lXWyIdpNHV",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_gift",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 59
},
{
"__id__": 61
}
],
"_prefab": {
"__id__": 63
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 340,
"y": -605,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 58
},
"_enabled": true,
"__prefab": {
"__id__": 60
},
"_contentSize": {
"__type__": "cc.Size",
"width": 249,
"height": 208
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4f3lPMUYdO35FeDKC7lN80"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 58
},
"_enabled": true,
"__prefab": {
"__id__": 62
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "94a83b7e-6022-4724-8cb4-e8cba772e532@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a55sOWcTRD65tbw8F0dzXe"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "65gznxqsRK7I3vHazhEzFE",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 65
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1049,
"height": 1526
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8bBpxEqYlOBbTY+5sAe0wj"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 67
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "d4a6fcf4-f444-4ba7-83be-b2bfae37b174@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8cJTs+KZNODIWRuB6R4Qcc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "aeI23Z1VFFHbej1+bcDfxJ",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rw_item",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 70
},
{
"__id__": 82
},
{
"__id__": 88
},
{
"__id__": 94
},
{
"__id__": 100
},
{
"__id__": 106
}
],
"_active": false,
"_components": [
{
"__id__": 112
},
{
"__id__": 114
}
],
"_prefab": {
"__id__": 116
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "rehis_bg_rw",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [
{
"__id__": 71
}
],
"_active": true,
"_components": [
{
"__id__": 77
},
{
"__id__": 79
}
],
"_prefab": {
"__id__": 81
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -245,
"y": 20,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "icon",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 70
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 72
},
{
"__id__": 74
}
],
"_prefab": {
"__id__": 76
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 71
},
"_enabled": true,
"__prefab": {
"__id__": 73
},
"_contentSize": {
"__type__": "cc.Size",
"width": 136,
"height": 135
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9eJIwEfKVN7ZjkTTxdPEhW"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 71
},
"_enabled": true,
"__prefab": {
"__id__": 75
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": null,
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "daSNSwwHFBo51DBDnYrYVf"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ebADOrCZhMm4etSoWUvB7w",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 70
},
"_enabled": true,
"__prefab": {
"__id__": 78
},
"_contentSize": {
"__type__": "cc.Size",
"width": 217,
"height": 219
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "81G7eldpxJ3ppKZ8P9hkPf"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 70
},
"_enabled": true,
"__prefab": {
"__id__": 80
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "2305111f-e56f-4991-8aac-e10282bc8b86@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 1,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f4tK6bBplAMbGC2GPdKezH"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "6fBetE+YhHaIsM9ozM2HLs",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "lab_num",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 83
},
{
"__id__": 85
}
],
"_prefab": {
"__id__": 87
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -245,
"y": -110,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 82
},
"_enabled": true,
"__prefab": {
"__id__": 84
},
"_contentSize": {
"__type__": "cc.Size",
"width": 300,
"height": 50.4
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b70p2VMCZPm7AEeTP27on1"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 82
},
"_enabled": true,
"__prefab": {
"__id__": 86
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_string": "50 Credits",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 33,
"_fontSize": 32,
"_fontFamily": "Arial",
"_lineHeight": 40,
"_overflow": 2,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_isItalic": false,
"_isBold": true,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": true,
"_shadowColor": {
"__type__": "cc.Color",
"r": 7,
"g": 43,
"b": 83,
"a": 134
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "54F83KoqVCtI0BFr62hprZ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "a9isNGzsZLMr75cXd8J/j+",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "lab_time",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 89
},
{
"__id__": 91
}
],
"_prefab": {
"__id__": 93
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 150,
"y": -110,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 88
},
"_enabled": true,
"__prefab": {
"__id__": 90
},
"_contentSize": {
"__type__": "cc.Size",
"width": 300,
"height": 50.4
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "5bxHv7aA1BL7dB0hqsxwod"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 88
},
"_enabled": true,
"__prefab": {
"__id__": 92
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_string": "2025-06-06 12:33:33",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 29,
"_fontSize": 28,
"_fontFamily": "Arial",
"_lineHeight": 40,
"_overflow": 2,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "ebNOJUgtBO6q1/3SWWWyHu"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "7aBrKuUghLXaJlAwDPvCrB",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_cry",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 95
},
{
"__id__": 97
}
],
"_prefab": {
"__id__": 99
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -245,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 94
},
"_enabled": true,
"__prefab": {
"__id__": 96
},
"_contentSize": {
"__type__": "cc.Size",
"width": 234,
"height": 262
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "edBwL7n4lL7YqeKbo0vCHe"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 94
},
"_enabled": true,
"__prefab": {
"__id__": 98
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "53b538bb-7f48-4f65-a357-cc70647a7a76@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "50Ln0myQdHC55q08SzhBeY"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ef6eftd1FLXJ6ayvWhkfkL",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_lose",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 101
},
{
"__id__": 103
}
],
"_prefab": {
"__id__": 105
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 150,
"y": 40,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 100
},
"_enabled": true,
"__prefab": {
"__id__": 102
},
"_contentSize": {
"__type__": "cc.Size",
"width": 324,
"height": 238
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "afHgiR0hxHhZtdHuJmNDbu"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 100
},
"_enabled": true,
"__prefab": {
"__id__": 104
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "d1952274-0a88-4594-a616-8290b4054600@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6cs2aBLLJFIZB9e1jXbSH7"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c7aERpjYdAdqoPxYFyUkdp",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rehis_win",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 69
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 107
},
{
"__id__": 109
}
],
"_prefab": {
"__id__": 111
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 150,
"y": 40,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 106
},
"_enabled": true,
"__prefab": {
"__id__": 108
},
"_contentSize": {
"__type__": "cc.Size",
"width": 335,
"height": 247
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "6bY1mMwOBKdblB9FJ/pEjZ"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 106
},
"_enabled": true,
"__prefab": {
"__id__": 110
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "9fcb6444-6f74-4636-8792-2fcced184437@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "41cpi07vBD5IiKKtEXfzjF"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b3Lg4b8ihKsIBOnJs+Npac",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 69
},
"_enabled": true,
"__prefab": {
"__id__": 113
},
"_contentSize": {
"__type__": "cc.Size",
"width": 849,
"height": 291
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "91RRU2DW9IZouOvD6QIqhT"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 69
},
"_enabled": true,
"__prefab": {
"__id__": 115
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9f6qaYWzRMxKruomyp/IkF"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "0e35HmFcBAvqnvHR0uCSOh",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "a70db4PkldMrqJCkQvJdOTQ",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 118
},
"_hideEvent": 2,
"_singleton": true,
"_captureFocus": true,
"_shade": false,
"_blockInput": true,
"_alwaysExist": false,
"rw_item": {
"__id__": 69
},
"rw_list": {
"__id__": 53
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "689lCMjJZJI4uUV6znpRKN"
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 120
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "7ba1ZyY9tHo4Hrq2Ww9Oa6"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 122
},
"_alignFlags": 45,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "744gmrD/dAUoVkMgrOfyML"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "68C1xdSS5HCqj8JNp7fqdk",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "5231a223-7efb-466d-849b-e506ffbf58bf",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "PageRewardhistory"
}
}

View File

@@ -0,0 +1,44 @@
import { _decorator, Node, ScrollView, Sprite } from 'cc';
import BaseView from '../../../../../../extensions/app/assets/base/BaseView';
import { Tools } from 'db://assets/res-native/tools/Tools';
const { ccclass, property } = _decorator;
@ccclass('PageRewardhistory')
export class PageRewardhistory extends BaseView {
@property(Node)
rw_item: Node = null!;
@property(ScrollView)
rw_list: ScrollView = null!;
// 初始化的相关逻辑写在这
onLoad() {}
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
onShow(params: any) {
this.initRw()
}
initRw() {
this.rw_list.content.removeAllChildren()
Tools.httpReq("draw-records", {}, (res:any)=>{
for (let i = 0; i < res.length; i++) {
let d = res[i]
let item = Tools.AddChild(this.rw_list.content, this.rw_item, "item" + i);
Tools.SetChildText(item, "lab_num", d.prize_name)
Tools.SetChildText(item, "lab_time", d.draw_time)
Tools.remoteLoadSprite(d.prize_pic, Tools.GetChildComp(item, "rehis_bg_rw/icon", Sprite))
item.active = true;
Tools.ActChild(item, "rehis_bg_rw", d.prize_type != 3)
Tools.ActChild(item, "lab_num", d.prize_type != 3)
Tools.ActChild(item, "rehis_win", d.prize_type != 3)
Tools.ActChild(item, "rehis_cry", d.prize_type == 3)
Tools.ActChild(item, "rehis_lose", d.prize_type == 3)
}
})
}
// 界面关闭时的相关逻辑写在这(已经关闭的界面不会触发onHide)
onHide(result: undefined) {
// app.manager.ui.show<PageRewardhistory>({name: 'PageRewardhistory', onHide:(result) => { 接收到return的数据并且有类型提示 }})
return result;
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "a70dbe0f-9257-4cae-a242-910bc974e4d0",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "cb733b05-a6d4-4c8c-a674-9e1dd4ad3084",
"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": "ede1d7ef-2b9f-48e9-b21a-107727dba4e0",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_11aBEBWDxI/6ryvKvFthEo",
"priority": 4,
"bundleName": "page-rewardhistory-res"
}
}

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2305111f-e56f-4991-8aac-e10282bc8b86",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2305111f-e56f-4991-8aac-e10282bc8b86@6c48a",
"displayName": "rehis_bg_rw",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2305111f-e56f-4991-8aac-e10282bc8b86",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2305111f-e56f-4991-8aac-e10282bc8b86@f9941",
"displayName": "rehis_bg_rw",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 217,
"height": 219,
"rawWidth": 217,
"rawHeight": 219,
"borderTop": 132,
"borderBottom": 87,
"borderLeft": 132,
"borderRight": 85,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-108.5,
-109.5,
0,
108.5,
-109.5,
0,
-108.5,
109.5,
0,
108.5,
109.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
219,
217,
219,
0,
0,
217,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-108.5,
-109.5,
0
],
"maxPos": [
108.5,
109.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2305111f-e56f-4991-8aac-e10282bc8b86@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2305111f-e56f-4991-8aac-e10282bc8b86@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "53b538bb-7f48-4f65-a357-cc70647a7a76",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "53b538bb-7f48-4f65-a357-cc70647a7a76@6c48a",
"displayName": "rehis_cry",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "53b538bb-7f48-4f65-a357-cc70647a7a76",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "53b538bb-7f48-4f65-a357-cc70647a7a76@f9941",
"displayName": "rehis_cry",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 234,
"height": 262,
"rawWidth": 235,
"rawHeight": 262,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-117,
-131,
0,
117,
-131,
0,
-117,
131,
0,
117,
131,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
262,
234,
262,
0,
0,
234,
0
],
"nuv": [
0,
0,
0.9957446808510638,
0,
0,
1,
0.9957446808510638,
1
],
"minPos": [
-117,
-131,
0
],
"maxPos": [
117,
131,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "53b538bb-7f48-4f65-a357-cc70647a7a76@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "53b538bb-7f48-4f65-a357-cc70647a7a76@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "94a83b7e-6022-4724-8cb4-e8cba772e532",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "94a83b7e-6022-4724-8cb4-e8cba772e532@6c48a",
"displayName": "rehis_gift",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "94a83b7e-6022-4724-8cb4-e8cba772e532",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "94a83b7e-6022-4724-8cb4-e8cba772e532@f9941",
"displayName": "rehis_gift",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": -0.5,
"trimX": 1,
"trimY": 1,
"width": 249,
"height": 208,
"rawWidth": 250,
"rawHeight": 209,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-124.5,
-104,
0,
124.5,
-104,
0,
-124.5,
104,
0,
124.5,
104,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
208,
250,
208,
1,
0,
250,
0
],
"nuv": [
0.004,
0,
1,
0,
0.004,
0.9952153110047847,
1,
0.9952153110047847
],
"minPos": [
-124.5,
-104,
0
],
"maxPos": [
124.5,
104,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "94a83b7e-6022-4724-8cb4-e8cba772e532@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "94a83b7e-6022-4724-8cb4-e8cba772e532@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

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": "4e96f507-f26d-4701-a9a4-912f7547b295",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "4e96f507-f26d-4701-a9a4-912f7547b295@6c48a",
"displayName": "rehis_icon",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "4e96f507-f26d-4701-a9a4-912f7547b295",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "4e96f507-f26d-4701-a9a4-912f7547b295@f9941",
"displayName": "rehis_icon",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 849,
"height": 317,
"rawWidth": 849,
"rawHeight": 317,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-424.5,
-158.5,
0,
424.5,
-158.5,
0,
-424.5,
158.5,
0,
424.5,
158.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
317,
849,
317,
0,
0,
849,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-424.5,
-158.5,
0
],
"maxPos": [
424.5,
158.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "4e96f507-f26d-4701-a9a4-912f7547b295@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "4e96f507-f26d-4701-a9a4-912f7547b295@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

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": "d1952274-0a88-4594-a616-8290b4054600",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "d1952274-0a88-4594-a616-8290b4054600@6c48a",
"displayName": "rehis_lose",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "d1952274-0a88-4594-a616-8290b4054600",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "d1952274-0a88-4594-a616-8290b4054600@f9941",
"displayName": "rehis_lose",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 324,
"height": 238,
"rawWidth": 324,
"rawHeight": 238,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-162,
-119,
0,
162,
-119,
0,
-162,
119,
0,
162,
119,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
238,
324,
238,
0,
0,
324,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-162,
-119,
0
],
"maxPos": [
162,
119,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "d1952274-0a88-4594-a616-8290b4054600@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "d1952274-0a88-4594-a616-8290b4054600@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

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": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8@6c48a",
"displayName": "rehis_rw_bg",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8@f9941",
"displayName": "rehis_rw_bg",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 849,
"height": 291,
"rawWidth": 850,
"rawHeight": 291,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-424.5,
-145.5,
0,
424.5,
-145.5,
0,
-424.5,
145.5,
0,
424.5,
145.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
291,
849,
291,
0,
0,
849,
0
],
"nuv": [
0,
0,
0.9988235294117647,
0,
0,
1,
0.9988235294117647,
1
],
"minPos": [
-424.5,
-145.5,
0
],
"maxPos": [
424.5,
145.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2f833d48-cce6-4b5e-bcc3-de30bfa9ebc8@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "2f12e860-64f6-462e-b3a0-eb4d04dfec81",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "2f12e860-64f6-462e-b3a0-eb4d04dfec81@6c48a",
"displayName": "rehis_title",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "2f12e860-64f6-462e-b3a0-eb4d04dfec81",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "2f12e860-64f6-462e-b3a0-eb4d04dfec81@f9941",
"displayName": "rehis_title",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0.5,
"trimX": 1,
"trimY": 0,
"width": 576,
"height": 111,
"rawWidth": 577,
"rawHeight": 112,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-288,
-55.5,
0,
288,
-55.5,
0,
-288,
55.5,
0,
288,
55.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
1,
112,
577,
112,
1,
1,
577,
1
],
"nuv": [
0.0017331022530329288,
0.008928571428571428,
1,
0.008928571428571428,
0.0017331022530329288,
1,
1,
1
],
"minPos": [
-288,
-55.5,
0
],
"maxPos": [
288,
55.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "2f12e860-64f6-462e-b3a0-eb4d04dfec81@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "2f12e860-64f6-462e-b3a0-eb4d04dfec81@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

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": "9fcb6444-6f74-4636-8792-2fcced184437",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "9fcb6444-6f74-4636-8792-2fcced184437@6c48a",
"displayName": "rehis_win",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "9fcb6444-6f74-4636-8792-2fcced184437",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "9fcb6444-6f74-4636-8792-2fcced184437@f9941",
"displayName": "rehis_win",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 335,
"height": 247,
"rawWidth": 335,
"rawHeight": 247,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-167.5,
-123.5,
0,
167.5,
-123.5,
0,
-167.5,
123.5,
0,
167.5,
123.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
247,
335,
247,
0,
0,
335,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-167.5,
-123.5,
0
],
"maxPos": [
167.5,
123.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "9fcb6444-6f74-4636-8792-2fcced184437@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "9fcb6444-6f74-4636-8792-2fcced184437@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f02366ec-9682-4417-87b0-bd9723cb4041",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f02366ec-9682-4417-87b0-bd9723cb4041@6c48a",
"displayName": "singleColor",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f02366ec-9682-4417-87b0-bd9723cb4041",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f02366ec-9682-4417-87b0-bd9723cb4041@f9941",
"displayName": "singleColor",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2,
"height": 2,
"rawWidth": 2,
"rawHeight": 2,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-1,
-1,
0,
1,
-1,
0,
-1,
1,
0,
1,
1,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2,
2,
2,
0,
0,
2,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-1,
-1,
0
],
"maxPos": [
1,
1,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f02366ec-9682-4417-87b0-bd9723cb4041@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f02366ec-9682-4417-87b0-bd9723cb4041@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "09e2d82a-3d4f-4102-b780-de9ea86f192b",
"files": [],
"subMetas": {},
"userData": {}
}

View File

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

View File

@@ -0,0 +1,14 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "4ed45723-cb84-4213-9fde-d70ce968b9b0",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_f7NI9WxFVIO6e8LbJGF72k",
"priority": 1,
"bundleName": "page-tips"
}
}

View File

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

View File

@@ -0,0 +1,1218 @@
[
{
"__type__": "cc.Prefab",
"_name": "PageTips",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"data": {
"__id__": 1
},
"optimizationPolicy": 0,
"persistent": false
},
{
"__type__": "cc.Node",
"_name": "PageTips",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": null,
"_children": [
{
"__id__": 2
},
{
"__id__": 10
}
],
"_active": true,
"_components": [
{
"__id__": 47
},
{
"__id__": 49
},
{
"__id__": 51
}
],
"_prefab": {
"__id__": 53
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "mask",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 3
},
{
"__id__": 5
},
{
"__id__": 7
}
],
"_prefab": {
"__id__": 9
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 4
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "855hhnaT9AHLxt7GxEQCL8"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 6
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 150
},
"_spriteFrame": {
"__uuid__": "06c69eac-72f1-4cf9-938e-ece19602cc55@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d0VapTGlhL44GLDGmoMHIi"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 2
},
"_enabled": true,
"__prefab": {
"__id__": 8
},
"_alignFlags": 45,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1aLpquux9Dob4Ar9pF7GYh"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "d0CzyElo5AOI+9uKiojWR3",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "bg",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [
{
"__id__": 11
},
{
"__id__": 23
},
{
"__id__": 34
}
],
"_active": true,
"_components": [
{
"__id__": 42
},
{
"__id__": 44
}
],
"_prefab": {
"__id__": 46
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "tips_bg_title",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [
{
"__id__": 12
}
],
"_active": true,
"_components": [
{
"__id__": 18
},
{
"__id__": 20
}
],
"_prefab": {
"__id__": 22
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 675,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.Node",
"_name": "title",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 11
},
"_children": [],
"_active": false,
"_components": [
{
"__id__": 13
},
{
"__id__": 15
}
],
"_prefab": {
"__id__": 17
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 15,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 12
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_contentSize": {
"__type__": "cc.Size",
"width": 609,
"height": 111
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e6bFRknSRAV6SOBlTbQbE5"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 12
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "f28663c8-a56e-4250-bc32-12e6ec054846@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "34QGt3dJ1De4Ky5PX7dhEc"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ccSv3OFI5JMI2YR4/vJJH0",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
},
"_enabled": true,
"__prefab": {
"__id__": 19
},
"_contentSize": {
"__type__": "cc.Size",
"width": 609,
"height": 111
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "10k+HQ+dhEOpv+h1gNkMpj"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
},
"_enabled": true,
"__prefab": {
"__id__": 21
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "f28663c8-a56e-4250-bc32-12e6ec054846@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "64wrR76RpGh66GmfFhXwGs"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "8cdTt93QFJQ47qdk9zWm47",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "btn_close",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 24
},
{
"__id__": 26
},
{
"__id__": 28
},
{
"__id__": 30
}
],
"_prefab": {
"__id__": 33
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 435,
"y": 590,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 25
},
"_contentSize": {
"__type__": "cc.Size",
"width": 118,
"height": 130
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "c81oaqd/hFMJbTtvIOpb7a"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 27
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "e4c4a51f-4906-4750-92fa-eda8ea787e68@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e32xl/XVNMw4Mux/FhoJHg"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 29
},
"_alignFlags": 33,
"_target": null,
"_left": 0,
"_right": 30.5,
"_top": 108,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "a77EROo3VIyIVVyfiCA3gh"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 23
},
"_enabled": true,
"__prefab": {
"__id__": 31
},
"clickEvents": [
{
"__id__": 32
}
],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.1,
"_zoomScale": 0.96,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "41MXh67GBHSaRHn+G95VLq"
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 1
},
"component": "",
"_componentId": "79948hibTlEY5RVGpx/edvj",
"handler": "hide",
"customEventData": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "a7p8qYyWlARb/S9yiHW8xE",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "lab_tips",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 35
},
{
"__id__": 37
},
{
"__id__": 39
}
],
"_prefab": {
"__id__": 41
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -25,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 36
},
"_contentSize": {
"__type__": "cc.Size",
"width": 809,
"height": 1176
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4buQ/O/8VKfqYQlwSjTu2D"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 38
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 201,
"g": 235,
"b": 255,
"a": 255
},
"_string": "",
"_horizontalAlign": 0,
"_verticalAlign": 0,
"_actualFontSize": 33,
"_fontSize": 32,
"_fontFamily": "Arial",
"_lineHeight": 40,
"_overflow": 2,
"_enableWrapText": true,
"_font": null,
"_isSystemFontUsed": true,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "abLDZbR01A+Z/f720dYtxZ"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 34
},
"_enabled": true,
"__prefab": {
"__id__": 40
},
"_alignFlags": 45,
"_target": null,
"_left": 120,
"_right": 120,
"_top": 200,
"_bottom": 150,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 700,
"_originalHeight": 400,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "95NfXeQS1GaqBmpbIGFS9v"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "99FUHm8JhMHK4TbR9+XfqB",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 43
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1049,
"height": 1526
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73lVCMbLRPRJ7jqVFJXNn+"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 45
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "d4a6fcf4-f444-4ba7-83be-b2bfae37b174@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "bfPwi6E+VBTKSgAzV1+snk"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "b31L8f7wxDCZX14TH8RZ2P",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "79948hibTlEY5RVGpx/edvj",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 48
},
"_hideEvent": 2,
"_singleton": true,
"_captureFocus": true,
"_shade": false,
"_blockInput": true,
"_alwaysExist": false,
"lab_tips": {
"__id__": 37
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "61DG2Hhm9Lf7Z9V9XAwcZD"
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 50
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 1920
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1RBJlY5BO27PDlfslJaia"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"_alignFlags": 45,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 100,
"_originalHeight": 100,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "f09VrsjTNCgKly1ztpB1Gx"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "13R0oe3xFAmrvlQLMv2EeI",
"instance": null,
"targetOverrides": null
}
]

View File

@@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "f8f8b7ef-6d55-4b2e-997d-fb96104ac47d",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "PageTips"
}
}

View File

@@ -0,0 +1,24 @@
import { _decorator, Label, Node } from 'cc';
import BaseView from '../../../../../../extensions/app/assets/base/BaseView';
import { USERDATA } from 'db://assets/res-native/data/UserData';
const { ccclass, property } = _decorator;
@ccclass('PageTips')
export class PageTips extends BaseView {
/** tips */
@property(Label)
lab_tips: Label = null!;
// 初始化的相关逻辑写在这
onLoad() {}
// 界面打开时的相关逻辑写在这(onShow可被多次调用-它与onHide不成对)
onShow(params: any) {
this.lab_tips.string = USERDATA.description
}
// 界面关闭时的相关逻辑写在这(已经关闭的界面不会触发onHide)
onHide(result: undefined) {
// app.manager.ui.show<PageTips>({name: 'PageTips', onHide:(result) => { 接收到return的数据并且有类型提示 }})
return result;
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "79948862-6d39-4463-9455-1a9c7f79dbe3",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "d5c2c247-b89a-42bc-a389-290ca94b79d9",
"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": "bc281800-ee8d-4ec9-bd7d-1373ede53490",
"files": [],
"subMetas": {},
"userData": {
"isBundle": true,
"bundleConfigID": "auto_11aBEBWDxI/6ryvKvFthEo",
"priority": 4,
"bundleName": "page-tips-res"
}
}

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

View File

@@ -0,0 +1,134 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "06c69eac-72f1-4cf9-938e-ece19602cc55",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "06c69eac-72f1-4cf9-938e-ece19602cc55@6c48a",
"displayName": "singleColor",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "06c69eac-72f1-4cf9-938e-ece19602cc55",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "06c69eac-72f1-4cf9-938e-ece19602cc55@f9941",
"displayName": "singleColor",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2,
"height": 2,
"rawWidth": 2,
"rawHeight": 2,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-1,
-1,
0,
1,
-1,
0,
-1,
1,
0,
1,
1,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
2,
2,
2,
0,
0,
2,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-1,
-1,
0
],
"maxPos": [
1,
1,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "06c69eac-72f1-4cf9-938e-ece19602cc55@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": false,
"fixAlphaTransparencyArtifacts": false,
"redirect": "06c69eac-72f1-4cf9-938e-ece19602cc55@6c48a"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,138 @@
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "f28663c8-a56e-4250-bc32-12e6ec054846",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "f28663c8-a56e-4250-bc32-12e6ec054846@6c48a",
"displayName": "tips_title",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "f28663c8-a56e-4250-bc32-12e6ec054846",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "f28663c8-a56e-4250-bc32-12e6ec054846@f9941",
"displayName": "tips_title",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 609,
"height": 111,
"rawWidth": 609,
"rawHeight": 111,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-304.5,
-55.5,
0,
304.5,
-55.5,
0,
-304.5,
55.5,
0,
304.5,
55.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
111,
609,
111,
0,
0,
609,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-304.5,
-55.5,
0
],
"maxPos": [
304.5,
55.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "f28663c8-a56e-4250-bc32-12e6ec054846@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "f28663c8-a56e-4250-bc32-12e6ec054846@6c48a",
"compressSettings": {
"useCompressTexture": true,
"presetId": "b1rRMHaV9Gz5HhQd3Z8obg"
}
}
}