Commit 34d71c6a authored by 范雪寒's avatar 范雪寒

feat:

parent 22eb4a2f
This source diff could not be displayed because it is too large. You can view the blob instead.
import { asyncDelay, onHomeworkFinish } from "../script/util";
import { asyncCallNetworkApiGet, asyncDelay, onHomeworkFinish } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator;
......@@ -9,8 +9,66 @@ export default class SceneComponent extends MyCocosSceneComponent {
// this._imageResList.push({ url: this.data.pic_url });
}
onLoadEnd() {
rows;
kidInfo;
async initData() {
const middleLayer = cc.find('middleLayer');
if (!middleLayer) {
this.rows = [
{ id: 1, locked: false, name: 1 },
{ id: 1, locked: false, name: 1 },
{ id: 1, locked: true, name: 1 },
];
return;
}
const middleLayerComponent = middleLayer.getComponent('middleLayer');
const userInfo = await middleLayerComponent.getUserInfo();
if (!userInfo) {
return;
}
console.log('userInfo = ' + JSON.stringify(userInfo));
this.kidInfo = userInfo;
const folderId = middleLayerComponent.getData('NJ_ShaMo');
console.log('folderId = ' + folderId);
const resStr = await asyncCallNetworkApiGet('/api/syllabus/v1/list', {
pid: folderId
});
console.log('resStr = ' + resStr);
const res = JSON.parse(resStr);
this.rows = res.rows.map((row, idx) => {
let locked = true;
if (idx == 0) {
locked = false;
}
if (userInfo.unlock_syllabuses?.includes(row.id)) {
locked = false;
}
return {
id: row.id,
locked: locked,
name: row.name
};
});
}
async onLoadEnd() {
await this.initData();
await this.initView();
this.initListener();
}
async initView() {
}
initListener() {
}
}
export const defaultData = {
"pic_url": "http://staging-teach.cdn.ireadabc.com/ed94332a503c31e0908bd4c6923a2665.png",
"pic_url_2": "http://staging-teach.cdn.ireadabc.com/5fb60317ade0195d35ad8034d5370a7f.png",
"text": "This is a test label.",
"audio_url": "http://staging-teach.cdn.ireadabc.com/f47f1d7b5c160fe1c59500d180346240.mp3"
}
\ No newline at end of file
export const defaultData = {}
\ No newline at end of file
......@@ -94,13 +94,13 @@ export function getScaleRateBy2Node(baseNode, targetNode, maxFlag = true) {
}
}
export function getDistance (start, end){
export function getDistance(start, end) {
var pos = cc.v2(start.x - end.x, start.y - end.y);
var dis = Math.sqrt(pos.x*pos.x + pos.y*pos.y);
var dis = Math.sqrt(pos.x * pos.x + pos.y * pos.y);
return dis;
}
export function playAudioByUrl(audio_url, cb=null) {
export function playAudioByUrl(audio_url, cb = null) {
if (audio_url) {
cc.assetManager.loadRemote(audio_url, (err, audioClip) => {
const audioId = cc.audioEngine.play(audioClip, false, 0.8);
......@@ -114,21 +114,21 @@ export function playAudioByUrl(audio_url, cb=null) {
}
export function btnClickAnima(btn, time=0.15, rate=1.05) {
export function btnClickAnima(btn, time = 0.15, rate = 1.05) {
btn.tmpScale = btn.scale;
btn.on(cc.Node.EventType.TOUCH_START, () => {
cc.tween(btn)
.to(time / 2, {scale: btn.scale * rate})
.to(time / 2, { scale: btn.scale * rate })
.start()
})
btn.on(cc.Node.EventType.TOUCH_CANCEL, () => {
cc.tween(btn)
.to(time / 2, {scale: btn.tmpScale})
.to(time / 2, { scale: btn.tmpScale })
.start()
})
btn.on(cc.Node.EventType.TOUCH_END, () => {
cc.tween(btn)
.to(time / 2, {scale: btn.tmpScale})
.to(time / 2, { scale: btn.tmpScale })
.start()
})
}
......@@ -179,7 +179,7 @@ export async function asyncDelay(time) {
try {
cc.tween(cc.find('Canvas'))
.delay(time)
.call(()=>{
.call(() => {
resolve(null);
})
.start();
......@@ -236,7 +236,7 @@ export async function asyncLoadDragonBoneAnime(node, { skeJsonData: { url: skeJs
});
Promise.all([loadTexture, loadTexJsonData, loadSkeJsonData]).then(([texture, atlasJson, dragonBonesJson]) => {
const atlas = new dragonBones.DragonBonesAtlasAsset();
const atlas: any = new dragonBones.DragonBonesAtlasAsset();
atlas.atlasJson = JSON.stringify(atlasJson);
atlas.texture = texture;
......@@ -246,7 +246,7 @@ export async function asyncLoadDragonBoneAnime(node, { skeJsonData: { url: skeJs
dragonDisplay.dragonAtlasAsset = atlas;
dragonDisplay.dragonAsset = asset;
let armatureNames = dragonBonesJson.armature.map(data => data.name);
let armatureNames = (<any>dragonBonesJson).armature.map(data => data.name);
if (armatureNames.length > 0) {
dragonDisplay.armatureName = armatureNames[0];
......@@ -444,7 +444,7 @@ export function httpHeadCall(requsetUrl: string, callback) {
}
}
export function onHomeworkFinish(data = "", callback = ()=>{}) {
export function onHomeworkFinish(data = "", callback = () => { }) {
const middleLayer = cc.find('middleLayer');
if (middleLayer) {
const middleLayerComponent = middleLayer.getComponent('middleLayer');
......@@ -464,3 +464,112 @@ export function callMiddleLayerFunction(apiName: string, data: any, callback: Fu
}
}
export function asyncCallNetworkApiGet(apiName, data): Promise<any> {
return new Promise((resolve, reject) => {
callNetworkApiGet(apiName, data, (res => {
resolve(res);
}));
});
}
export function asyncCallNetworkApiPost(uri, data): Promise<any> {
return new Promise((resolve, reject) => {
callNetworkApiPost(uri, data, (res) => {
resolve(res);
});
});
}
export function callNetworkApiPost(uri, data, callBack) {
const middleLayer = cc.find('middleLayer')?.getComponent('middleLayer');
if (middleLayer) {
middleLayer.callNetworkApiPost(uri, data, callBack);
return;
}
const baseUrl = 'http://staging-openapi.iteachabc.com';
const xhr = new XMLHttpRequest();
const url = `${baseUrl}${uri}`;
xhr.open("POST", url, true);
xhr.setRequestHeader('content-type', 'application/json');
xhr.onreadystatechange = () => {
if (xhr.readyState == 4) {
callBack(JSON.parse(xhr.responseText));
}
}
xhr.send(JSON.stringify(data));
}
export function callNetworkApiGet(uri, data, callBack) {
const middleLayer = cc.find('middleLayer')?.getComponent('middleLayer');
if (middleLayer) {
middleLayer.callNetworkApiGet(uri, data, callBack);
return;
}
const baseUrl = 'http://staging-openapi.iteachabc.com';
let queryStr = '?';
const params = [];
for (const key in data) {
if (Object.hasOwnProperty.call(data, key)) {
params.push(`${key}=${data[key]}`);
}
}
queryStr += params.join("&");
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = () => {
if (xhr.readyState == 4 && (xhr.status >= 200 && xhr.status < 400)) {
callBack(xhr.responseText);
}
};
const url = `${baseUrl}${uri}${queryStr}`;
console.log('url = ' + url);
xhr.open('GET', url, true);
xhr.send();
}
export function jumpToBundle(bundleName: string) {
const middleLayer = cc.find('middleLayer');
if (middleLayer) {
const middleLayerComponent = middleLayer.getComponent('middleLayer');
middleLayerComponent.loadOnlineBundle(bundleName);
} else {
console.log('jump to bundle: ' + bundleName);
}
}
export function jumpToCourseWare(courseWareId: number) {
const middleLayer = cc.find('middleLayer');
if (middleLayer) {
const middleLayerComponent = middleLayer.getComponent('middleLayer');
middleLayerComponent.loadOnlineCourseWare(courseWareId);
} else {
console.log('jump to CourseWare: ' + courseWareId);
}
}
export function buttonOnClick(button: cc.Node, callback: Function, scale = 1.0) {
button.on('click', () => {
if (button['cantClick']) {
return;
}
button['cantClick'] = true;
cc.tween(button)
.to(0.1, { scale: scale * 1.1 })
.to(0.1, { scale: scale })
.call(() => {
button['cantClick'] = false;
callback && callback();
})
.start();
});
}
export function seekChildByName(node, name) {
if (node.name == name) {
return node;
}
for (let i = 0; i < node.children.length; i++) {
const child = node.children[i];
return seekChildByName(child, name);
}
return null;
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9a334da3-bcb3-4837-a90a-170dc52f3e83",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 172,
"platformSettings": {},
"subMetas": {
"STORY1": {
"ver": "1.0.4",
"uuid": "c1505162-2b12-4151-94c6-55008197c568",
"rawTextureUuid": "9a334da3-bcb3-4837-a90a-170dc52f3e83",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 172,
"rawWidth": 359,
"rawHeight": 172,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "970ba8ae-d5b8-402b-94ea-e79a8f80d48c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 166,
"platformSettings": {},
"subMetas": {
"STORY2": {
"ver": "1.0.4",
"uuid": "ea6af8d6-4476-46a9-9332-6a2e4ef621bb",
"rawTextureUuid": "970ba8ae-d5b8-402b-94ea-e79a8f80d48c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 166,
"rawWidth": 359,
"rawHeight": 166,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b9f1424f-7141-439e-855c-84e4b66dd7d1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 166,
"platformSettings": {},
"subMetas": {
"STORY3": {
"ver": "1.0.4",
"uuid": "8333fbda-8457-4ba8-a3f6-c44c24ff4c01",
"rawTextureUuid": "b9f1424f-7141-439e-855c-84e4b66dd7d1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 166,
"rawWidth": 359,
"rawHeight": 166,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fbf9ed89-e5c0-483b-847f-acd98a73557e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 166,
"platformSettings": {},
"subMetas": {
"STORY4": {
"ver": "1.0.4",
"uuid": "6ab2aa1a-0f48-4c0d-96a0-eb23f304b83c",
"rawTextureUuid": "fbf9ed89-e5c0-483b-847f-acd98a73557e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 166,
"rawWidth": 359,
"rawHeight": 166,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "74785dd9-fb38-42f7-8b0d-717d4999faa9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 166,
"platformSettings": {},
"subMetas": {
"STORY5": {
"ver": "1.0.4",
"uuid": "25148b73-2108-4011-baea-f5c506e66ec5",
"rawTextureUuid": "74785dd9-fb38-42f7-8b0d-717d4999faa9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 166,
"rawWidth": 359,
"rawHeight": 166,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "004f7984-bcd6-41c9-9433-92bc3aaa2b95",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 167,
"platformSettings": {},
"subMetas": {
"STORY6": {
"ver": "1.0.4",
"uuid": "f9e09814-9239-454c-a11d-294e8d526d12",
"rawTextureUuid": "004f7984-bcd6-41c9-9433-92bc3aaa2b95",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 167,
"rawWidth": 359,
"rawHeight": 167,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "58e60cc0-6195-4b84-9c72-e0ce62e5f56f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 167,
"platformSettings": {},
"subMetas": {
"STORY7": {
"ver": "1.0.4",
"uuid": "4ab29166-7616-43cf-ad2c-f74718a68248",
"rawTextureUuid": "58e60cc0-6195-4b84-9c72-e0ce62e5f56f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 167,
"rawWidth": 359,
"rawHeight": 167,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "11466dfe-99c0-438b-a245-d39c887da9b8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 359,
"height": 168,
"platformSettings": {},
"subMetas": {
"STORY8": {
"ver": "1.0.4",
"uuid": "564f3f54-979a-4c6f-b6c2-a06d308028c0",
"rawTextureUuid": "11466dfe-99c0-438b-a245-d39c887da9b8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 359,
"height": 168,
"rawWidth": 359,
"rawHeight": 168,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "990f06c1-7656-4ca9-a84a-12182a0f8a0d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 348,
"height": 140,
"platformSettings": {},
"subMetas": {
"U1": {
"ver": "1.0.4",
"uuid": "5dbd2074-7ac7-40ba-99c8-0126944409bb",
"rawTextureUuid": "990f06c1-7656-4ca9-a84a-12182a0f8a0d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 348,
"height": 140,
"rawWidth": 348,
"rawHeight": 140,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1c10959f-b9c9-47f7-ad2f-770b352e90c7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 121,
"platformSettings": {},
"subMetas": {
"U2": {
"ver": "1.0.4",
"uuid": "d81f0d7b-3fd8-4b51-95e9-3b4d3ae69542",
"rawTextureUuid": "1c10959f-b9c9-47f7-ad2f-770b352e90c7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 121,
"rawWidth": 325,
"rawHeight": 121,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "73dea9e0-9e64-4fea-babb-5d577931d0f6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 131,
"platformSettings": {},
"subMetas": {
"U3": {
"ver": "1.0.4",
"uuid": "bd4758bb-7f55-4202-9296-b1eb9d0afbce",
"rawTextureUuid": "73dea9e0-9e64-4fea-babb-5d577931d0f6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 131,
"rawWidth": 325,
"rawHeight": 131,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a3822f48-4eb2-41c3-94de-a360d6cc9627",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 133,
"platformSettings": {},
"subMetas": {
"U4": {
"ver": "1.0.4",
"uuid": "53112b4a-2617-413f-b1f0-92ba175d021d",
"rawTextureUuid": "a3822f48-4eb2-41c3-94de-a360d6cc9627",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 133,
"rawWidth": 325,
"rawHeight": 133,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b12633f0-a0f8-44ea-8cfc-264c01f80fe0",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 118,
"platformSettings": {},
"subMetas": {
"U5": {
"ver": "1.0.4",
"uuid": "694fdadf-2e37-4d7e-b47d-cbb236dc21ad",
"rawTextureUuid": "b12633f0-a0f8-44ea-8cfc-264c01f80fe0",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 118,
"rawWidth": 325,
"rawHeight": 118,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dc2e1874-29d3-4bae-852b-5ca9da019120",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 150,
"platformSettings": {},
"subMetas": {
"U6": {
"ver": "1.0.4",
"uuid": "513f3028-c5f3-4a2d-a05f-8354d0d99606",
"rawTextureUuid": "dc2e1874-29d3-4bae-852b-5ca9da019120",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 150,
"rawWidth": 325,
"rawHeight": 150,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "162d0bc8-50f6-4a96-b813-c50e00b2f1d8",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 4000,
"height": 1200,
"platformSettings": {},
"subMetas": {
"bg": {
"ver": "1.0.4",
"uuid": "53c7958c-4a1c-475b-979f-a08d94788003",
"rawTextureUuid": "162d0bc8-50f6-4a96-b813-c50e00b2f1d8",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 4000,
"height": 1200,
"rawWidth": 4000,
"rawHeight": 1200,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1ba813a6-687d-47bc-ab7a-74817ecf02df",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 329,
"height": 154,
"platformSettings": {},
"subMetas": {
"btn_bg": {
"ver": "1.0.4",
"uuid": "35f36683-6c6d-4710-ba9b-06845e6b0c67",
"rawTextureUuid": "1ba813a6-687d-47bc-ab7a-74817ecf02df",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 329,
"height": 154,
"rawWidth": 329,
"rawHeight": 154,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "576af187-3a11-434c-9304-4ba807427d67",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 327,
"height": 328,
"platformSettings": {},
"subMetas": {
"btn_bg2": {
"ver": "1.0.4",
"uuid": "ad1eb42f-7485-4ab7-830c-8a31b39aa13d",
"rawTextureUuid": "576af187-3a11-434c-9304-4ba807427d67",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 327,
"height": 328,
"rawWidth": 327,
"rawHeight": 328,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "449acde6-d8f4-491e-943f-6b3a554f44b4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 462,
"height": 390,
"platformSettings": {},
"subMetas": {
"btn_box": {
"ver": "1.0.4",
"uuid": "43c2aad1-2860-4411-910d-421b346b9cdf",
"rawTextureUuid": "449acde6-d8f4-491e-943f-6b3a554f44b4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 462,
"height": 390,
"rawWidth": 462,
"rawHeight": 390,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "da395406-83ca-4599-817f-f1b2a9d9ba27",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 688,
"height": 526,
"platformSettings": {},
"subMetas": {
"car": {
"ver": "1.0.4",
"uuid": "004b70d7-ba9b-4d3b-a908-d19222640819",
"rawTextureUuid": "da395406-83ca-4599-817f-f1b2a9d9ba27",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 688,
"height": 526,
"rawWidth": 688,
"rawHeight": 526,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fd9d0e92-e46a-4c59-8610-dd9360422584",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 266,
"height": 433,
"platformSettings": {},
"subMetas": {
"line": {
"ver": "1.0.4",
"uuid": "4751f88e-1d20-49e8-93df-5605aefa2bc6",
"rawTextureUuid": "fd9d0e92-e46a-4c59-8610-dd9360422584",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 266,
"height": 433,
"rawWidth": 266,
"rawHeight": 433,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f77cf984-dadd-405a-8d38-d0586335b55d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 334,
"height": 74,
"platformSettings": {},
"subMetas": {
"line_2": {
"ver": "1.0.4",
"uuid": "da5b43bf-169f-43c0-910b-17523a512795",
"rawTextureUuid": "f77cf984-dadd-405a-8d38-d0586335b55d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 334,
"height": 74,
"rawWidth": 334,
"rawHeight": 74,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cbcedbae-56cb-4006-8f27-4b7a23480628",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 277,
"height": 199,
"platformSettings": {},
"subMetas": {
"line_3": {
"ver": "1.0.4",
"uuid": "dc87e9b9-ea55-48b6-bcd0-11d1eac4e3a9",
"rawTextureUuid": "cbcedbae-56cb-4006-8f27-4b7a23480628",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 277,
"height": 199,
"rawWidth": 277,
"rawHeight": 199,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d30e0dd1-7241-4751-990e-dfc2dc89c569",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 266,
"height": 644,
"platformSettings": {},
"subMetas": {
"line_long": {
"ver": "1.0.4",
"uuid": "2b0206ba-2698-4326-902f-7551f387c1b4",
"rawTextureUuid": "d30e0dd1-7241-4751-990e-dfc2dc89c569",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 266,
"height": 644,
"rawWidth": 266,
"rawHeight": 644,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f71634b9-8573-4a68-b08e-9b0e89d86d7a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 151,
"platformSettings": {},
"subMetas": {
"u7": {
"ver": "1.0.4",
"uuid": "0ff76ffb-4173-4110-881d-29fb746fb0da",
"rawTextureUuid": "f71634b9-8573-4a68-b08e-9b0e89d86d7a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 151,
"rawWidth": 325,
"rawHeight": 151,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e661f02a-d280-4d61-a4f1-a82d5c7de1cc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 325,
"height": 133,
"platformSettings": {},
"subMetas": {
"u8": {
"ver": "1.0.4",
"uuid": "a6d1c451-b14f-4fdd-8acf-f0c313393560",
"rawTextureUuid": "e661f02a-d280-4d61-a4f1-a82d5c7de1cc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 325,
"height": 133,
"rawWidth": 325,
"rawHeight": 133,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment