Commit d6fd626a authored by 范雪寒's avatar 范雪寒

feat: 基本完成

parent 34d71c6a
{ {
"ver": "1.1.0", "ver": "1.1.0",
"uuid": "c551970e-b095-45f3-9f1d-25cde8b8deb1", "uuid": "79fdf773-9953-43e0-9e47-7fac741e6986",
"subMetas": {} "subMetas": {}
} }
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "b73f6a12-cf34-49a0-ab6a-26cb13561803",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.0",
"uuid": "cd56f1cd-1521-480e-8b26-0ed578d0aaee",
"subMetas": {}
}
\ No newline at end of file
This diff is collapsed.
import { asyncCallNetworkApiGet, asyncDelay, onHomeworkFinish } from "../script/util"; import { asyncCallNetworkApiGet, asyncCallNetworkApiPost, asyncDelay, buttonOnClick, jumpToCourseWare, onHomeworkFinish, seekChildByName } from "../script/util";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent"; import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -65,10 +65,90 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -65,10 +65,90 @@ export default class SceneComponent extends MyCocosSceneComponent {
} }
async initView() { async initView() {
const bg = cc.find('Canvas/touchboard/contant/bg');
for (let i = 0; i < 36; i++) {
const btn = seekChildByName(bg, `btn_${i}`);
const row = this.rows[i];
if (row && !row.locked) {
this.changeNodeColor(btn);
} else {
this.changeNodeGray(btn);
}
}
}
changeNodeGray(node) {
const sprite: cc.Sprite = node.getComponent(cc.Sprite);
if (sprite) {
node.color = cc.color(200, 200, 200);
// let material = cc.Material.createWithBuiltin('2d-gray-sprite', 0);
// let variant1 = cc.MaterialVariant.create(material, sprite);
// sprite.setMaterial(0, variant1);
}
node.children.forEach(child => {
this.changeNodeGray(child);
});
}
changeNodeColor(node) {
const sprite: cc.Sprite = node.getComponent(cc.Sprite);
if (sprite) {
node.color = cc.color(255, 255, 255);
// let material = cc.Material.createWithBuiltin('2d-sprite', 0);
// let variant1 = cc.MaterialVariant.create(material, sprite);
// sprite.setMaterial(0, variant1);
}
node.children.forEach(child => {
this.changeNodeColor(child);
});
} }
initListener() { initListener() {
const bg = cc.find('Canvas/touchboard/contant/bg');
for (let i = 0; i < 36; i++) {
const btn = seekChildByName(bg, `btn_${i}`);
const row = this.rows[i];
buttonOnClick(btn, async () => {
const middleLayer = cc.find('middleLayer');
if (!middleLayer) {
return;
}
const middleLayerComponent = middleLayer.getComponent('middleLayer');
if (!row) {
middleLayerComponent.showTips("未解锁 [101]");
return;
}
if (row.locked) {
middleLayerComponent.showTips("未解锁");
return;
}
if (i == 0) {
// 如果是第一个文件夹,则上报一个解锁
await asyncCallNetworkApiPost('/api/oxford/v1/kid/unlock', {
kidid: this.kidInfo.id,
syllabusid: row.id,
token: cc.sys.localStorage.getItem('token')
});
}
const resStr = await asyncCallNetworkApiGet('/api/syllabus/v1/list', {
pid: this.rows[i].id
});
const res = JSON.parse(resStr);
const guideRow = res.rows.find(row => row.name == '指读索引');
if (!guideRow) {
middleLayerComponent.showTips("未配置‘指读索引’");
return;
}
middleLayerComponent.setData('NJ_game_select', {
folderId: this.rows[i].id,
courseId: guideRow.id,
nextForderId: this.rows[i + 1]?.id
});
jumpToCourseWare(guideRow.id);
});
}
} }
} }
...@@ -547,6 +547,7 @@ export function jumpToCourseWare(courseWareId: number) { ...@@ -547,6 +547,7 @@ export function jumpToCourseWare(courseWareId: number) {
} }
export function buttonOnClick(button: cc.Node, callback: Function, scale = 1.0) { export function buttonOnClick(button: cc.Node, callback: Function, scale = 1.0) {
button.addComponent(cc.Button);
button.on('click', () => { button.on('click', () => {
if (button['cantClick']) { if (button['cantClick']) {
return; return;
...@@ -569,7 +570,10 @@ export function seekChildByName(node, name) { ...@@ -569,7 +570,10 @@ export function seekChildByName(node, name) {
} }
for (let i = 0; i < node.children.length; i++) { for (let i = 0; i < node.children.length; i++) {
const child = node.children[i]; const child = node.children[i];
return seekChildByName(child, name); const result = seekChildByName(child, name);
if (result) {
return result;
}
} }
return null; return null;
} }
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "3d38d29a-79d9-427f-a101-635c563fc2c8",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "64e10b72-df42-49ee-800a-4a0265e292f6",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 451,
"height": 512,
"platformSettings": {},
"subMetas": {
"a": {
"ver": "1.0.4",
"uuid": "441c0636-1a86-4a73-82fe-7c4b2cd610cc",
"rawTextureUuid": "64e10b72-df42-49ee-800a-4a0265e292f6",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 451,
"height": 512,
"rawWidth": 451,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e9bb0746-56a5-46ef-9447-f1fc2e50384a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 296,
"height": 512,
"platformSettings": {},
"subMetas": {
"ad": {
"ver": "1.0.4",
"uuid": "6f40ae07-759e-4ed6-a4d9-d38ab88479e2",
"rawTextureUuid": "e9bb0746-56a5-46ef-9447-f1fc2e50384a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 296,
"height": 512,
"rawWidth": 296,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "abe5bdca-323a-4670-803a-45ea18408b69",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 461,
"height": 512,
"platformSettings": {},
"subMetas": {
"ag": {
"ver": "1.0.4",
"uuid": "d2898450-23a0-49be-b2ed-855d92471234",
"rawTextureUuid": "abe5bdca-323a-4670-803a-45ea18408b69",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 461,
"height": 512,
"rawWidth": 461,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "b696bc5f-ec3b-40b7-9489-f1fb3c7b8607",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 658,
"height": 512,
"platformSettings": {},
"subMetas": {
"am": {
"ver": "1.0.4",
"uuid": "e625941c-d2f6-4bf8-b96c-1ea4def57557",
"rawTextureUuid": "b696bc5f-ec3b-40b7-9489-f1fb3c7b8607",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 657,
"height": 512,
"rawWidth": 658,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7f997470-9367-414b-8d85-6e8eec4e949d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 383,
"height": 512,
"platformSettings": {},
"subMetas": {
"an": {
"ver": "1.0.4",
"uuid": "3ee40d3f-af25-44c8-b0cc-ae2ecd5f1179",
"rawTextureUuid": "7f997470-9367-414b-8d85-6e8eec4e949d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 383,
"height": 512,
"rawWidth": 383,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "78c84792-ea6f-4e3d-b72c-abdc99df04b3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 843,
"height": 512,
"platformSettings": {},
"subMetas": {
"ap": {
"ver": "1.0.4",
"uuid": "c60d2089-9250-463e-a05f-76b5a8b717fc",
"rawTextureUuid": "78c84792-ea6f-4e3d-b72c-abdc99df04b3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 843,
"height": 512,
"rawWidth": 843,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a9bbe3c7-aa2e-433f-84e1-bc157f973c60",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 289,
"height": 512,
"platformSettings": {},
"subMetas": {
"at": {
"ver": "1.0.4",
"uuid": "08d75b1b-da0c-42b4-be2e-3bc8895ce2cf",
"rawTextureUuid": "a9bbe3c7-aa2e-433f-84e1-bc157f973c60",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 288,
"height": 512,
"rawWidth": 289,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "fbf7a03b-2819-443b-b820-7af7e5ee2199",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 482,
"height": 512,
"platformSettings": {},
"subMetas": {
"e": {
"ver": "1.0.4",
"uuid": "fe9aa43a-1c84-47ab-8b44-62afc58a96fe",
"rawTextureUuid": "fbf7a03b-2819-443b-b820-7af7e5ee2199",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 482,
"height": 512,
"rawWidth": 482,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "73793edc-17aa-4013-9d9b-085aa297ac9c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 866,
"height": 512,
"platformSettings": {},
"subMetas": {
"ed": {
"ver": "1.0.4",
"uuid": "2397ea43-8b03-47ef-8582-e973617dfa6c",
"rawTextureUuid": "73793edc-17aa-4013-9d9b-085aa297ac9c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 866,
"height": 512,
"rawWidth": 866,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "19f36f1a-935d-4162-a23a-81296e387b07",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 460,
"height": 512,
"platformSettings": {},
"subMetas": {
"en": {
"ver": "1.0.4",
"uuid": "7c92559f-683f-4ec8-9cbf-f5210ab1945d",
"rawTextureUuid": "19f36f1a-935d-4162-a23a-81296e387b07",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 460,
"height": 512,
"rawWidth": 460,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9d33acc2-5dd4-4c24-b150-8efc4e8c30ac",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 785,
"height": 512,
"platformSettings": {},
"subMetas": {
"et": {
"ver": "1.0.4",
"uuid": "32e0bd26-53c9-45f5-90c3-032fc0785fd2",
"rawTextureUuid": "9d33acc2-5dd4-4c24-b150-8efc4e8c30ac",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 1,
"trimX": 0,
"trimY": 0,
"width": 785,
"height": 510,
"rawWidth": 785,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "6ec3a6db-7d4e-432c-a1fb-2f872dc218d4",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 435,
"height": 512,
"platformSettings": {},
"subMetas": {
"i": {
"ver": "1.0.4",
"uuid": "1bc4e450-e038-4b84-9f28-1e9b6eb684e0",
"rawTextureUuid": "6ec3a6db-7d4e-432c-a1fb-2f872dc218d4",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 435,
"height": 512,
"rawWidth": 435,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5063280e-77a6-4a01-bac9-7b3a6596e5c9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 412,
"height": 512,
"platformSettings": {},
"subMetas": {
"ib": {
"ver": "1.0.4",
"uuid": "3109cf0a-3032-44e1-8ba5-d530d6674a9c",
"rawTextureUuid": "5063280e-77a6-4a01-bac9-7b3a6596e5c9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 412,
"height": 512,
"rawWidth": 412,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ab521b9a-eceb-4707-8bab-2a0c4f0fb297",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 355,
"height": 512,
"platformSettings": {},
"subMetas": {
"id": {
"ver": "1.0.4",
"uuid": "36e377a1-4050-49e6-bb03-3448c62a6e05",
"rawTextureUuid": "ab521b9a-eceb-4707-8bab-2a0c4f0fb297",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 354,
"height": 512,
"rawWidth": 355,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "2b88a7c5-034c-46eb-96f3-407be2d95ba3",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 369,
"height": 512,
"platformSettings": {},
"subMetas": {
"ig": {
"ver": "1.0.4",
"uuid": "7326af7a-a9b2-42d0-9841-76b26757953f",
"rawTextureUuid": "2b88a7c5-034c-46eb-96f3-407be2d95ba3",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 369,
"height": 512,
"rawWidth": 369,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a1cf17dc-5f22-4803-ae68-78df1b5810b5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 269,
"height": 512,
"platformSettings": {},
"subMetas": {
"in": {
"ver": "1.0.4",
"uuid": "f6a8f8f2-711f-451f-a3c4-854054e38065",
"rawTextureUuid": "a1cf17dc-5f22-4803-ae68-78df1b5810b5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 269,
"height": 512,
"rawWidth": 269,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "326cd980-9264-4bdb-bb7b-c6ede0f786aa",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 784,
"height": 512,
"platformSettings": {},
"subMetas": {
"ip": {
"ver": "1.0.4",
"uuid": "a7f5d96d-72e1-48b4-8275-ca83fd14c85d",
"rawTextureUuid": "326cd980-9264-4bdb-bb7b-c6ede0f786aa",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 784,
"height": 512,
"rawWidth": 784,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a24b4e65-7121-42a2-bcb9-f09069b3b01c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 371,
"height": 512,
"platformSettings": {},
"subMetas": {
"it": {
"ver": "1.0.4",
"uuid": "708bbeff-1d75-4e5d-99b8-cd867fbd994a",
"rawTextureUuid": "a24b4e65-7121-42a2-bcb9-f09069b3b01c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 371,
"height": 512,
"rawWidth": 371,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "adb74651-bf3f-4afb-95c0-51a38808cbc7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 358,
"height": 512,
"platformSettings": {},
"subMetas": {
"ix": {
"ver": "1.0.4",
"uuid": "548b2e5b-92cc-4d98-9fd1-7e79a4dc80bb",
"rawTextureUuid": "adb74651-bf3f-4afb-95c0-51a38808cbc7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 358,
"height": 512,
"rawWidth": 358,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "7e9489bc-214a-4024-86b2-5f0ed915ea6d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 458,
"height": 512,
"platformSettings": {},
"subMetas": {
"o": {
"ver": "1.0.4",
"uuid": "84f8e84f-9a55-419f-8d66-4bfdf4976730",
"rawTextureUuid": "7e9489bc-214a-4024-86b2-5f0ed915ea6d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 458,
"height": 512,
"rawWidth": 458,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f37f48e9-940e-4df3-9f8c-97d8ec9f1fd1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 440,
"height": 512,
"platformSettings": {},
"subMetas": {
"op": {
"ver": "1.0.4",
"uuid": "2bc366ef-bc45-4a56-bc74-bec71d75c70e",
"rawTextureUuid": "f37f48e9-940e-4df3-9f8c-97d8ec9f1fd1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0,
"trimX": 4,
"trimY": 0,
"width": 431,
"height": 512,
"rawWidth": 440,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "1185a284-34b5-49fd-8265-a632e2b68687",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 708,
"height": 512,
"platformSettings": {},
"subMetas": {
"ot": {
"ver": "1.0.4",
"uuid": "8d17d39a-4d4a-45c5-b2dd-3db98c6d44d4",
"rawTextureUuid": "1185a284-34b5-49fd-8265-a632e2b68687",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 708,
"height": 512,
"rawWidth": 708,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e2825c89-cc1d-482d-b36a-24f400fafad9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 584,
"height": 512,
"platformSettings": {},
"subMetas": {
"u": {
"ver": "1.0.4",
"uuid": "60e108fd-2f96-4e5e-8c80-fec3f3275b45",
"rawTextureUuid": "e2825c89-cc1d-482d-b36a-24f400fafad9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 584,
"height": 512,
"rawWidth": 584,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "520a599f-f017-44c6-9ea9-5f9ea43de73f",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 302,
"height": 512,
"platformSettings": {},
"subMetas": {
"ub": {
"ver": "1.0.4",
"uuid": "b67ec653-ebd9-40bc-8687-676bce685427",
"rawTextureUuid": "520a599f-f017-44c6-9ea9-5f9ea43de73f",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 302,
"height": 512,
"rawWidth": 302,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "a26b4fb0-9b81-4de0-8494-5def058b205e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 837,
"height": 512,
"platformSettings": {},
"subMetas": {
"ud": {
"ver": "1.0.4",
"uuid": "3da22467-4e44-4ea0-9c5e-c33bfb88c18c",
"rawTextureUuid": "a26b4fb0-9b81-4de0-8494-5def058b205e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 837,
"height": 512,
"rawWidth": 837,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "12e0e356-9e72-4de8-ac34-ba48587335f7",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 621,
"height": 512,
"platformSettings": {},
"subMetas": {
"ug": {
"ver": "1.0.4",
"uuid": "4b83ba95-d007-40c0-8955-c2d30406085c",
"rawTextureUuid": "12e0e356-9e72-4de8-ac34-ba48587335f7",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 621,
"height": 512,
"rawWidth": 621,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "cf2b6f42-13ed-4b80-99be-ce3874b52b89",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 312,
"height": 512,
"platformSettings": {},
"subMetas": {
"um": {
"ver": "1.0.4",
"uuid": "85093b6e-5ec3-405c-a297-5cc5cdc4c936",
"rawTextureUuid": "cf2b6f42-13ed-4b80-99be-ce3874b52b89",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 312,
"height": 512,
"rawWidth": 312,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "dd97a7d6-25da-4078-a915-e1767b662b50",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 768,
"height": 512,
"platformSettings": {},
"subMetas": {
"un": {
"ver": "1.0.4",
"uuid": "884e0efa-4e04-4c8c-b2d7-47239766abd7",
"rawTextureUuid": "dd97a7d6-25da-4078-a915-e1767b662b50",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 768,
"height": 512,
"rawWidth": 768,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "f17c7ef2-0cfa-4fe3-8faf-22f1129cc83a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 471,
"height": 512,
"platformSettings": {},
"subMetas": {
"up": {
"ver": "1.0.4",
"uuid": "166d601e-195d-432c-b11b-6451af27fcf9",
"rawTextureUuid": "f17c7ef2-0cfa-4fe3-8faf-22f1129cc83a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 471,
"height": 512,
"rawWidth": 471,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "429833a9-ca32-433b-90a1-b98b96a71512",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 438,
"height": 512,
"platformSettings": {},
"subMetas": {
"ut": {
"ver": "1.0.4",
"uuid": "86e57261-2454-4351-8f1c-f06467b2dd2c",
"rawTextureUuid": "429833a9-ca32-433b-90a1-b98b96a71512",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 438,
"height": 512,
"rawWidth": 438,
"rawHeight": 512,
"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