Commit 7078c149 authored by ”Tt_mac“'s avatar ”Tt_mac“

数据上传

parent 24561fe4
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// Learn life-cycle callbacks: // Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import movement from "./movements"; import movement from "./movements_ns20_jsqj";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
interface Point { interface Point {
...@@ -65,3 +65,4 @@ export default class NewClass extends cc.Component { ...@@ -65,3 +65,4 @@ export default class NewClass extends cc.Component {
} }
// update (dt) {} // update (dt) {}
} }
import { asyncDelay, onHomeworkFinish } from "../script/util"; import { asyncDelay, onHomeworkFinish } from "../script/util_ns20_jsqj";
import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent"; import { MyCocosSceneComponent } from "../script/MyCocosSceneComponent_ns20_jsqj";
import pg from "./tool/pg"; import pg from "./tool/pg_ns20_jsqj";
import Game from "./tool/GameNS16" import Game from "./tool/GameNS16_ns20_jsqj"
import { import {
showFireworks, showFireworks,
} from '../script/utils'; } from '../script/utils_ns20_jsqj';
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -445,3 +445,4 @@ export default class NewClass extends MyCocosSceneComponent { ...@@ -445,3 +445,4 @@ export default class NewClass extends MyCocosSceneComponent {
}) })
} }
} }
import pg from "./tool/pg"; import pg from "./tool/pg_ns20_jsqj";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
...@@ -66,3 +66,4 @@ export default class NewClass extends cc.Component { ...@@ -66,3 +66,4 @@ export default class NewClass extends cc.Component {
// update (dt) {} // update (dt) {}
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// Learn life-cycle callbacks: // Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import pg from "./tool/pg"; import pg from "./tool/pg_ns20_jsqj";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -240,3 +240,4 @@ export default class SpeakRecord extends cc.Component { ...@@ -240,3 +240,4 @@ export default class SpeakRecord extends cc.Component {
// update (dt) {} // update (dt) {}
} }
import map from "./map"; import map from "./map_ns20_jsqj";
export class Item { export class Item {
public audio; public audio;
public img; public img;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// Learn life-cycle callbacks: // Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import pg from "./tool/pg"; import pg from "./tool/pg_ns20_jsqj";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
...@@ -95,3 +95,4 @@ export default class NewClass extends cc.Component { ...@@ -95,3 +95,4 @@ export default class NewClass extends cc.Component {
} }
} }
} }
import { defaultData } from "../script/defaultData"; import { defaultData } from "../script/defaultData_ns20_jsqj";
export class MyCocosSceneComponent extends cc.Component { export class MyCocosSceneComponent extends cc.Component {
......
import { log } from "console";
export function getPosByAngle(angle, len) { export function getPosByAngle(angle, len) {
...@@ -191,72 +190,72 @@ export async function asyncDelay(time) { ...@@ -191,72 +190,72 @@ export async function asyncDelay(time) {
}) })
} }
export async function asyncLoadDragonBoneAnime(node, { skeJsonData: { url: skeJsonDataUrl }, texJsonData: { url: texJsonDataUrl }, texPngData: { url: texPngDataUrl } }) { // export async function asyncLoadDragonBoneAnime(node, { skeJsonData: { url: skeJsonDataUrl }, texJsonData: { url: texJsonDataUrl }, texPngData: { url: texPngDataUrl } }) {
if (!texPngDataUrl || !texJsonDataUrl || !texPngDataUrl // if (!texPngDataUrl || !texJsonDataUrl || !texPngDataUrl
|| texPngDataUrl == '' || texJsonDataUrl == '' || texPngDataUrl == '') { // || texPngDataUrl == '' || texJsonDataUrl == '' || texPngDataUrl == '') {
return; // return;
} // }
return new Promise((resolve, reject) => { // return new Promise((resolve, reject) => {
if (node.animaNode) { // if (node.animaNode) {
node.animaNode.removeFromParent(); // node.animaNode.removeFromParent();
} // }
const animaNode = new cc.Node(); // const animaNode = new cc.Node();
animaNode.name = 'animaNode'; // animaNode.name = 'animaNode';
animaNode.parent = node; // animaNode.parent = node;
animaNode.active = true; // animaNode.active = true;
node.animaNode = animaNode; // node.animaNode = animaNode;
const dragonDisplay = animaNode.addComponent(dragonBones.ArmatureDisplay); // const dragonDisplay = animaNode.addComponent(dragonBones.ArmatureDisplay);
const loadTexture = new Promise((resolve, reject) => { // const loadTexture = new Promise((resolve, reject) => {
cc.assetManager.loadRemote(texPngDataUrl, (error, texture) => { // cc.assetManager.loadRemote(texPngDataUrl, (error, texture) => {
if (error) { // if (error) {
reject(error); // reject(error);
} // }
resolve(texture); // resolve(texture);
}); // });
}); // });
const loadTexJsonData = new Promise((resolve, reject) => { // const loadTexJsonData = new Promise((resolve, reject) => {
cc.assetManager.loadAny({ url: texJsonDataUrl }, (error, atlasJson) => { // cc.assetManager.loadAny({ url: texJsonDataUrl }, (error, atlasJson) => {
if (error) { // if (error) {
reject(error); // reject(error);
} // }
resolve(atlasJson); // resolve(atlasJson);
}); // });
}); // });
const loadSkeJsonData = new Promise((resolve, reject) => { // const loadSkeJsonData = new Promise((resolve, reject) => {
cc.assetManager.loadAny({ url: skeJsonDataUrl }, (error, dragonBonesJson) => { // cc.assetManager.loadAny({ url: skeJsonDataUrl }, (error, dragonBonesJson) => {
if (error) { // if (error) {
reject(error); // reject(error);
} // }
resolve(dragonBonesJson); // resolve(dragonBonesJson);
}); // });
}); // });
Promise.all([loadTexture, loadTexJsonData, loadSkeJsonData]).then(([texture, atlasJson, dragonBonesJson]) => { // 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.atlasJson = JSON.stringify(atlasJson);
atlas.texture = texture; // atlas.texture = texture;
const asset = new dragonBones.DragonBonesAsset(); // const asset = new dragonBones.DragonBonesAsset();
asset.dragonBonesJson = JSON.stringify(dragonBonesJson); // asset.dragonBonesJson = JSON.stringify(dragonBonesJson);
dragonDisplay.dragonAtlasAsset = atlas; // dragonDisplay.dragonAtlasAsset = atlas;
dragonDisplay.dragonAsset = asset; // dragonDisplay.dragonAsset = asset;
let armatureNames = dragonBonesJson.armature.map(data => data.name); // let armatureNames = dragonBonesJson.armature.map(data => data.name);
if (armatureNames.length > 0) { // if (armatureNames.length > 0) {
dragonDisplay.armatureName = armatureNames[0]; // dragonDisplay.armatureName = armatureNames[0];
} // }
resolve(animaNode); // resolve(animaNode);
}); // });
}); // });
} // }
export class FireworkSettings { export class FireworkSettings {
baseNode; // 父节点 baseNode; // 父节点
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 750, "height": 750,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_bg": { "bg_bg_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "976960db-8ac1-41c2-9050-602f6d791e48", "uuid": "976960db-8ac1-41c2-9050-602f6d791e48",
"rawTextureUuid": "8eaf41ce-c520-4978-9834-076f20f33646", "rawTextureUuid": "8eaf41ce-c520-4978-9834-076f20f33646",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 222, "height": 222,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_comeon": { "bg_comeon_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "72241610-59a2-4499-a509-dfa3f818f2ce", "uuid": "72241610-59a2-4499-a509-dfa3f818f2ce",
"rawTextureUuid": "9796cebd-86fc-429e-bfff-691d300f63bd", "rawTextureUuid": "9796cebd-86fc-429e-bfff-691d300f63bd",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 419, "height": 419,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_di": { "bg_di_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "40526b87-4a37-4a4b-abc8-722773ddb799", "uuid": "40526b87-4a37-4a4b-abc8-722773ddb799",
"rawTextureUuid": "4574b1cb-d366-4a11-9f6e-a4746d03c715", "rawTextureUuid": "4574b1cb-d366-4a11-9f6e-a4746d03c715",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice1": { "bg_dice1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "19da5c20-7e1f-42fb-8edb-898b7371262f", "uuid": "19da5c20-7e1f-42fb-8edb-898b7371262f",
"rawTextureUuid": "089991e2-2988-47bb-b19b-a9d55aa3238c", "rawTextureUuid": "089991e2-2988-47bb-b19b-a9d55aa3238c",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice2": { "bg_dice2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "ffca7c76-c97f-432a-81d2-469a7a93b538", "uuid": "ffca7c76-c97f-432a-81d2-469a7a93b538",
"rawTextureUuid": "198f1af1-4c97-44cb-be66-2125c1befda5", "rawTextureUuid": "198f1af1-4c97-44cb-be66-2125c1befda5",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice3": { "bg_dice3_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "07b2bd9f-b54e-42a5-83d8-04af1f4ebd05", "uuid": "07b2bd9f-b54e-42a5-83d8-04af1f4ebd05",
"rawTextureUuid": "dffa3ad6-498e-47ab-a26a-637602de0cb1", "rawTextureUuid": "dffa3ad6-498e-47ab-a26a-637602de0cb1",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice4": { "bg_dice4_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "da8e0460-6364-4726-8780-04f18035c161", "uuid": "da8e0460-6364-4726-8780-04f18035c161",
"rawTextureUuid": "71a3bb87-ab83-401c-b66c-62cf6bbfb156", "rawTextureUuid": "71a3bb87-ab83-401c-b66c-62cf6bbfb156",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice5": { "bg_dice5_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "8b7e7021-b368-4800-b96c-ec8258abbc9d", "uuid": "8b7e7021-b368-4800-b96c-ec8258abbc9d",
"rawTextureUuid": "26725ce3-2944-4b84-947a-a6bcf5d9f8cf", "rawTextureUuid": "26725ce3-2944-4b84-947a-a6bcf5d9f8cf",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 274, "height": 274,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice6": { "bg_dice6_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "fa4fb3d5-cb81-4fe1-8b6f-abd13f4176ff", "uuid": "fa4fb3d5-cb81-4fe1-8b6f-abd13f4176ff",
"rawTextureUuid": "7dc894f6-7957-4a33-9c3a-19a4cb1ec7c3", "rawTextureUuid": "7dc894f6-7957-4a33-9c3a-19a4cb1ec7c3",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_dice-bg": { "bg_dice_bg_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "3a2ea461-1506-4faf-a852-08c87aac2891", "uuid": "3a2ea461-1506-4faf-a852-08c87aac2891",
"rawTextureUuid": "a24228a4-5f1a-4939-bcf3-6ed7a22ac702", "rawTextureUuid": "a24228a4-5f1a-4939-bcf3-6ed7a22ac702",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 332, "height": 332,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_goodjob": { "bg_goodjob_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "cdcc23e2-2871-4058-9cc0-c4214b80ebcd", "uuid": "cdcc23e2-2871-4058-9cc0-c4214b80ebcd",
"rawTextureUuid": "e3cc9c70-7b1c-4ba2-b6ff-9034f4c785fb", "rawTextureUuid": "e3cc9c70-7b1c-4ba2-b6ff-9034f4c785fb",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 691, "height": 691,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_light-big": { "bg_light_big_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "feeff13e-b8ce-4a99-aa2b-8641d75f010b", "uuid": "feeff13e-b8ce-4a99-aa2b-8641d75f010b",
"rawTextureUuid": "d574d21f-aef7-4cae-8bab-e783e7949878", "rawTextureUuid": "d574d21f-aef7-4cae-8bab-e783e7949878",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 315, "height": 315,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_light-small": { "bg_light_small_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "438dc353-627d-4f18-8a5c-131e8366357e", "uuid": "438dc353-627d-4f18-8a5c-131e8366357e",
"rawTextureUuid": "ab1cb579-1a94-45d6-a403-6406f5ce059a", "rawTextureUuid": "ab1cb579-1a94-45d6-a403-6406f5ce059a",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 333, "height": 333,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_lose": { "bg_lose_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "615c6080-6d29-49cb-8604-18c096288d0b", "uuid": "615c6080-6d29-49cb-8604-18c096288d0b",
"rawTextureUuid": "513e3122-5a37-4002-a76a-55eeeeb4378b", "rawTextureUuid": "513e3122-5a37-4002-a76a-55eeeeb4378b",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 702, "height": 702,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_map": { "bg_map_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "a24ec5cf-6862-4cb7-adfd-e1077cf939ae", "uuid": "a24ec5cf-6862-4cb7-adfd-e1077cf939ae",
"rawTextureUuid": "f9165c7c-8da4-4091-93ad-7a36a9226516", "rawTextureUuid": "f9165c7c-8da4-4091-93ad-7a36a9226516",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 157, "height": 157,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_sky": { "bg_sky_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "cc4ad706-5af9-447a-85b4-22753d304bf5", "uuid": "cc4ad706-5af9-447a-85b4-22753d304bf5",
"rawTextureUuid": "22c4e26d-5d9e-47c4-952c-11fc4b43c792", "rawTextureUuid": "22c4e26d-5d9e-47c4-952c-11fc4b43c792",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 390, "height": 390,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_tip": { "bg_tip_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "d75fbd23-9dcb-4c3f-8b16-d2558c5accc5", "uuid": "d75fbd23-9dcb-4c3f-8b16-d2558c5accc5",
"rawTextureUuid": "8a142917-9b2f-452d-93d7-61cfc0b8db98", "rawTextureUuid": "8a142917-9b2f-452d-93d7-61cfc0b8db98",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 287, "height": 287,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_tryagain": { "bg_tryagain_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "3a265934-0558-4845-909a-a7c0558dc098", "uuid": "3a265934-0558-4845-909a-a7c0558dc098",
"rawTextureUuid": "8624a6de-7a80-42e3-ad98-715901d5d93c", "rawTextureUuid": "8624a6de-7a80-42e3-ad98-715901d5d93c",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 441, "height": 441,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_vs": { "bg_vs_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "15931dc2-2400-4794-9b4b-629eb9087922", "uuid": "15931dc2-2400-4794-9b4b-629eb9087922",
"rawTextureUuid": "e004b7f1-de80-4fa6-9a3d-9d70c3f0e573", "rawTextureUuid": "e004b7f1-de80-4fa6-9a3d-9d70c3f0e573",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 488, "height": 488,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_win": { "bg_win_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "677e271f-5c8c-407a-b434-6c13aa1ab8d0", "uuid": "677e271f-5c8c-407a-b434-6c13aa1ab8d0",
"rawTextureUuid": "aa105812-67ac-454a-bdbc-6fe1574c5999", "rawTextureUuid": "aa105812-67ac-454a-bdbc-6fe1574c5999",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 88, "height": 88,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_audio-clock": { "btn_audio_clock_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "9122355e-5464-4c2b-b880-0b6a6eb117ef", "uuid": "9122355e-5464-4c2b-b880-0b6a6eb117ef",
"rawTextureUuid": "dd640686-0e5b-435c-adad-5e4af1b0f783", "rawTextureUuid": "dd640686-0e5b-435c-adad-5e4af1b0f783",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 101, "height": 101,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_audio-start": { "btn_audio_start_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "fa42d46c-df55-42c9-a024-f7aa098f83ba", "uuid": "fa42d46c-df55-42c9-a024-f7aa098f83ba",
"rawTextureUuid": "24cd8beb-9777-4e9e-a4a3-51c542e5f617", "rawTextureUuid": "24cd8beb-9777-4e9e-a4a3-51c542e5f617",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 101, "height": 101,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_audio-stop": { "btn_audio_stop_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b9c72757-521a-44ca-a9bd-83ca4980cc97", "uuid": "b9c72757-521a-44ca-a9bd-83ca4980cc97",
"rawTextureUuid": "28867559-08bc-438c-9877-9c02191b3ea5", "rawTextureUuid": "28867559-08bc-438c-9877-9c02191b3ea5",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 79, "height": 79,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_dice-stop": { "btn_dice_stop_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "12abcfb6-a56a-4b91-9398-bf9e97b3eb09", "uuid": "12abcfb6-a56a-4b91-9398-bf9e97b3eb09",
"rawTextureUuid": "d4701b0d-100a-49ba-bed2-40c0b71e6406", "rawTextureUuid": "d4701b0d-100a-49ba-bed2-40c0b71e6406",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 92, "height": 92,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_laba1": { "btn_laba1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "0e4c065f-4a60-4e1d-8e3b-2761c3e9414f", "uuid": "0e4c065f-4a60-4e1d-8e3b-2761c3e9414f",
"rawTextureUuid": "cd4d6969-9e12-4d34-bc8b-5e27b83fd346", "rawTextureUuid": "cd4d6969-9e12-4d34-bc8b-5e27b83fd346",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 92, "height": 92,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_laba2": { "btn_laba2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "9cb66959-4484-44e4-a246-27f14c30cdc9", "uuid": "9cb66959-4484-44e4-a246-27f14c30cdc9",
"rawTextureUuid": "0b88784f-b609-4c2a-8f44-a7d0c0aec616", "rawTextureUuid": "0b88784f-b609-4c2a-8f44-a7d0c0aec616",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 92, "height": 92,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_laba": { "btn_laba_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "f1eb0593-55cb-4d7f-85b2-680e71116161", "uuid": "f1eb0593-55cb-4d7f-85b2-680e71116161",
"rawTextureUuid": "2cd11775-27eb-4d07-b7a3-17c97fd07f4f", "rawTextureUuid": "2cd11775-27eb-4d07-b7a3-17c97fd07f4f",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 92, "height": 92,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_music-off": { "btn_music_off_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "66409c9d-b163-49fd-9fe8-825dfe156afe", "uuid": "66409c9d-b163-49fd-9fe8-825dfe156afe",
"rawTextureUuid": "b6cc8241-d1c2-4864-b471-1e4be690a22a", "rawTextureUuid": "b6cc8241-d1c2-4864-b471-1e4be690a22a",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 92, "height": 92,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_music-on": { "btn_music_on_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e9257034-608d-4c19-8408-879d7eec76df", "uuid": "e9257034-608d-4c19-8408-879d7eec76df",
"rawTextureUuid": "93e0dbb4-5bc3-4f57-a576-98179a45b740", "rawTextureUuid": "93e0dbb4-5bc3-4f57-a576-98179a45b740",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 102, "height": 102,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_restart": { "btn_restart_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2534f01e-9d4d-4f96-9974-0b6b8c10f5bb", "uuid": "2534f01e-9d4d-4f96-9974-0b6b8c10f5bb",
"rawTextureUuid": "9901bf44-bc64-4b2e-9661-dce2b912e751", "rawTextureUuid": "9901bf44-bc64-4b2e-9661-dce2b912e751",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 119, "height": 119,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_return": { "btn_return_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b12234bf-e10f-4079-834b-7a0fde951393", "uuid": "b12234bf-e10f-4079-834b-7a0fde951393",
"rawTextureUuid": "3ea9570e-91ee-4bae-b4c3-fe9941eb2fdb", "rawTextureUuid": "3ea9570e-91ee-4bae-b4c3-fe9941eb2fdb",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 102, "height": 102,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"btn_start": { "btn_start_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "af364807-6c17-45d5-b6c5-f7f6ae29e830", "uuid": "af364807-6c17-45d5-b6c5-f7f6ae29e830",
"rawTextureUuid": "5238aeb1-9a41-4933-931f-df9e13297720", "rawTextureUuid": "5238aeb1-9a41-4933-931f-df9e13297720",
......
{"name":"speak","SubTexture":[{"name":"提示/椭圆_11","x":1,"height":278,"y":1,"width":275},{"name":"提示/椭圆_11_拷贝","x":1,"height":225,"y":281,"width":222},{"name":"提示/组_1","x":225,"height":184,"y":281,"width":124}],"imagePath":"speak_tex.png","height":512,"width":512} {"name":"speak","SubTexture":[{"name":"提示/椭圆_11","x":1,"height":278,"y":1,"width":275},{"name":"提示/椭圆_11_拷贝","x":1,"height":225,"y":281,"width":222},{"name":"提示/组_1","x":225,"height":184,"y":281,"width":124}],"imagePath":"speak_tex_ns20_jsqj.png","height":512,"width":512}
\ No newline at end of file \ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 512, "height": 512,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"speak_tex": { "speak_tex_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "93e42244-6774-461d-86b4-42e7545feb17", "uuid": "93e42244-6774-461d-86b4-42e7545feb17",
"rawTextureUuid": "ae3457cd-6bd2-4ead-b3e0-8e99a3d65046", "rawTextureUuid": "ae3457cd-6bd2-4ead-b3e0-8e99a3d65046",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 24, "height": 24,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_sahua": { "bg_sahua_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "95a1b983-981a-4b0a-854c-7cc38cd2f9d6", "uuid": "95a1b983-981a-4b0a-854c-7cc38cd2f9d6",
"rawTextureUuid": "7a305826-0fed-4051-9f16-5542637cc8da", "rawTextureUuid": "7a305826-0fed-4051-9f16-5542637cc8da",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 133, "height": 133,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_arrow": { "icon_arrow_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "3d5d54ca-a079-4c65-abd2-b505f6d0974f", "uuid": "3d5d54ca-a079-4c65-abd2-b505f6d0974f",
"rawTextureUuid": "da3a5c6e-cb5b-429a-8e82-d1c4e23559ee", "rawTextureUuid": "da3a5c6e-cb5b-429a-8e82-d1c4e23559ee",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 128, "height": 128,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_hand": { "icon_hand_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "5e05f400-eb8e-4cf5-be5e-6f947bb8e62a", "uuid": "5e05f400-eb8e-4cf5-be5e-6f947bb8e62a",
"rawTextureUuid": "aaf5a5a7-c69f-4cb7-95b3-47f8970ac9e3", "rawTextureUuid": "aaf5a5a7-c69f-4cb7-95b3-47f8970ac9e3",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 295, "height": 295,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_player1": { "icon_player1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "25e1db33-a9ac-41b5-9dcb-13ead12acddb", "uuid": "25e1db33-a9ac-41b5-9dcb-13ead12acddb",
"rawTextureUuid": "f558c208-15db-4dea-8ad6-7ee9576385eb", "rawTextureUuid": "f558c208-15db-4dea-8ad6-7ee9576385eb",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 295, "height": 295,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_player2": { "icon_player2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "5616bbdc-b6e3-4810-933a-cd71066d9ac6", "uuid": "5616bbdc-b6e3-4810-933a-cd71066d9ac6",
"rawTextureUuid": "d160debe-fa5d-4f8c-8bd5-dd5cde881028", "rawTextureUuid": "d160debe-fa5d-4f8c-8bd5-dd5cde881028",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 59, "height": 59,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_player": { "icon_player_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "0db029a0-481f-495f-86d0-7623c31852e1", "uuid": "0db029a0-481f-495f-86d0-7623c31852e1",
"rawTextureUuid": "128e969e-30d7-46cf-9637-8f7d0fd370b6", "rawTextureUuid": "128e969e-30d7-46cf-9637-8f7d0fd370b6",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 59, "height": 59,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_robot": { "icon_robot_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "8fd1141d-5fc0-4efd-a014-42f7e03e6ad5", "uuid": "8fd1141d-5fc0-4efd-a014-42f7e03e6ad5",
"rawTextureUuid": "9062e49d-56d0-4c2b-a751-c5780e631ece", "rawTextureUuid": "9062e49d-56d0-4c2b-a751-c5780e631ece",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 129, "height": 129,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"text_tip": { "text_tip_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2c240bde-15e4-4cf4-adb1-b190212a36e7", "uuid": "2c240bde-15e4-4cf4-adb1-b190212a36e7",
"rawTextureUuid": "5d4d8d54-504c-44d0-bb65-3442aee7d360", "rawTextureUuid": "5d4d8d54-504c-44d0-bb65-3442aee7d360",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 127, "height": 127,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"text_vs": { "text_vs_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "40e6fc10-67a1-452d-992d-265d08a73736", "uuid": "40e6fc10-67a1-452d-992d-265d08a73736",
"rawTextureUuid": "d8019915-290a-4629-9daa-074b3d3b8d8f", "rawTextureUuid": "d8019915-290a-4629-9daa-074b3d3b8d8f",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_1": { "icon_1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2db85b0f-0d2f-4511-96ff-6746b0666b91", "uuid": "2db85b0f-0d2f-4511-96ff-6746b0666b91",
"rawTextureUuid": "40b4a906-cc05-4ff3-bcde-37d202cf8b82", "rawTextureUuid": "40b4a906-cc05-4ff3-bcde-37d202cf8b82",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_2": { "icon_2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e0078a11-dce4-4d60-ad4d-fe0111bc40ca", "uuid": "e0078a11-dce4-4d60-ad4d-fe0111bc40ca",
"rawTextureUuid": "522c3e42-004b-408d-b54a-339d167867c7", "rawTextureUuid": "522c3e42-004b-408d-b54a-339d167867c7",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_3": { "icon_3_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "776f8585-277d-4451-9373-32ed6dc1ae8a", "uuid": "776f8585-277d-4451-9373-32ed6dc1ae8a",
"rawTextureUuid": "e8f5fab2-3780-4151-9236-b77bc63a81be", "rawTextureUuid": "e8f5fab2-3780-4151-9236-b77bc63a81be",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_4": { "icon_4_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "9e130b13-684f-46b7-9aaf-0f661da8fc38", "uuid": "9e130b13-684f-46b7-9aaf-0f661da8fc38",
"rawTextureUuid": "6028bf30-7dbe-45ec-ae9d-e35e2b26c3f0", "rawTextureUuid": "6028bf30-7dbe-45ec-ae9d-e35e2b26c3f0",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_5": { "icon_5_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "64dc457d-758a-41b6-bbfe-bf83a8b7ead8", "uuid": "64dc457d-758a-41b6-bbfe-bf83a8b7ead8",
"rawTextureUuid": "9a46f51b-ecf8-4b77-8823-58c3952d0bc9", "rawTextureUuid": "9a46f51b-ecf8-4b77-8823-58c3952d0bc9",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_6": { "icon_6_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2843d8c4-1a05-4fe9-a5fb-fadd1dd7df9b", "uuid": "2843d8c4-1a05-4fe9-a5fb-fadd1dd7df9b",
"rawTextureUuid": "6c7680d8-3b89-42d8-8acd-32166fa28ace", "rawTextureUuid": "6c7680d8-3b89-42d8-8acd-32166fa28ace",
......
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 123, "width": 139,
"height": 123, "height": 138,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_player-dice": { "icon_player_dice_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "557332be-622c-4f77-b502-8bd6b4f8f52c", "uuid": "557332be-622c-4f77-b502-8bd6b4f8f52c",
"rawTextureUuid": "ba26da39-74ee-4046-8437-3220af0f7be9", "rawTextureUuid": "ba26da39-74ee-4046-8437-3220af0f7be9",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 123, "height": 123,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_player": { "icon_player_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "eeac12a6-180a-4c6e-bf6d-b87da9c5c8e0", "uuid": "eeac12a6-180a-4c6e-bf6d-b87da9c5c8e0",
"rawTextureUuid": "7e3ecf70-2d05-4da8-be50-f77e9716d97d", "rawTextureUuid": "7e3ecf70-2d05-4da8-be50-f77e9716d97d",
......
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 123, "width": 139,
"height": 123, "height": 138,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_robot-dice": { "icon_robot_dice_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b2d1bf2a-828e-4058-997c-0abd56dc6016", "uuid": "b2d1bf2a-828e-4058-997c-0abd56dc6016",
"rawTextureUuid": "18266ba1-8c05-44ec-a641-cc827ac54620", "rawTextureUuid": "18266ba1-8c05-44ec-a641-cc827ac54620",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 123, "height": 123,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_robot": { "icon_robot_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e62ca036-7918-41ad-98b0-876a5753ec63", "uuid": "e62ca036-7918-41ad-98b0-876a5753ec63",
"rawTextureUuid": "e66adec9-969f-4c24-85cf-97a97fba8941", "rawTextureUuid": "e66adec9-969f-4c24-85cf-97a97fba8941",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_1": { "bg_1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "882db467-7c4e-48e7-93db-61ac63207e6a", "uuid": "882db467-7c4e-48e7-93db-61ac63207e6a",
"rawTextureUuid": "3765f02d-b468-42d1-9101-ab80e598f6df", "rawTextureUuid": "3765f02d-b468-42d1-9101-ab80e598f6df",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_2": { "bg_2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "d47c9e79-5cd1-4785-894e-d2998428bdba", "uuid": "d47c9e79-5cd1-4785-894e-d2998428bdba",
"rawTextureUuid": "cf4bc34b-1021-46bc-86a6-135f5d08a9d3", "rawTextureUuid": "cf4bc34b-1021-46bc-86a6-135f5d08a9d3",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_3": { "bg_3_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "e7ba0eda-84ae-4075-9640-c8fe1505ba8c", "uuid": "e7ba0eda-84ae-4075-9640-c8fe1505ba8c",
"rawTextureUuid": "1fdaab44-7440-4a6b-8ee0-1778324e4e3d", "rawTextureUuid": "1fdaab44-7440-4a6b-8ee0-1778324e4e3d",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_4": { "bg_4_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "d1559550-116d-4fee-a86f-6ddb2ee6a17b", "uuid": "d1559550-116d-4fee-a86f-6ddb2ee6a17b",
"rawTextureUuid": "18920164-7c0b-4a0b-8eee-af4a9f014f89", "rawTextureUuid": "18920164-7c0b-4a0b-8eee-af4a9f014f89",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_5": { "bg_5_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "15d4868e-9692-4d1b-821b-a942837e5a6d", "uuid": "15d4868e-9692-4d1b-821b-a942837e5a6d",
"rawTextureUuid": "8482d484-2b7b-4a11-9003-9e10bb8229ef", "rawTextureUuid": "8482d484-2b7b-4a11-9003-9e10bb8229ef",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bg_6": { "bg_6_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "1b96427c-c0d6-4cff-abc3-c3ed887bb239", "uuid": "1b96427c-c0d6-4cff-abc3-c3ed887bb239",
"rawTextureUuid": "dccfee72-5995-4c68-8b8e-726f059dd69a", "rawTextureUuid": "dccfee72-5995-4c68-8b8e-726f059dd69a",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_1": { "icon_1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "d8c0c22a-e304-4179-82c2-654396ac60d8", "uuid": "d8c0c22a-e304-4179-82c2-654396ac60d8",
"rawTextureUuid": "10559a80-9587-4e3c-aee1-3840877a8949", "rawTextureUuid": "10559a80-9587-4e3c-aee1-3840877a8949",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_2": { "icon_2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "c26f4ae7-dfdc-4934-b8d1-0c2c964df549", "uuid": "c26f4ae7-dfdc-4934-b8d1-0c2c964df549",
"rawTextureUuid": "c7e67948-2e8f-415c-b903-117094cd3086", "rawTextureUuid": "c7e67948-2e8f-415c-b903-117094cd3086",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_3": { "icon_3_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "fbb4fc35-60de-4939-9fbd-03b1c60828cc", "uuid": "fbb4fc35-60de-4939-9fbd-03b1c60828cc",
"rawTextureUuid": "70eeeb44-3333-470e-988c-51db74355418", "rawTextureUuid": "70eeeb44-3333-470e-988c-51db74355418",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_4": { "icon_4_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "538ca4ac-7a2a-49ad-8ea0-e5c369c43306", "uuid": "538ca4ac-7a2a-49ad-8ea0-e5c369c43306",
"rawTextureUuid": "8f87918e-0b8c-422f-b59a-0db7011ee5c5", "rawTextureUuid": "8f87918e-0b8c-422f-b59a-0db7011ee5c5",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_5": { "icon_5_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "ba83be30-64e6-43bc-ba11-002949ca4da4", "uuid": "ba83be30-64e6-43bc-ba11-002949ca4da4",
"rawTextureUuid": "7a63aafb-3894-411c-b4be-3f37dda8fc2d", "rawTextureUuid": "7a63aafb-3894-411c-b4be-3f37dda8fc2d",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 134, "height": 134,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_6": { "icon_6_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "95df1734-fd96-47ef-86c0-2ca4f3614b27", "uuid": "95df1734-fd96-47ef-86c0-2ca4f3614b27",
"rawTextureUuid": "6314d52d-e567-4968-9781-ae337b5f1e61", "rawTextureUuid": "6314d52d-e567-4968-9781-ae337b5f1e61",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_1": { "icon_small_1_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "38008136-8895-41f4-9b3e-7545f3c3a65c", "uuid": "38008136-8895-41f4-9b3e-7545f3c3a65c",
"rawTextureUuid": "d31464bd-b218-4519-bccd-467ee55e7a17", "rawTextureUuid": "d31464bd-b218-4519-bccd-467ee55e7a17",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_2": { "icon_small_2_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2db6039c-890b-4687-934e-fc97cb51b925", "uuid": "2db6039c-890b-4687-934e-fc97cb51b925",
"rawTextureUuid": "20963d22-57e7-4c2f-a7a9-570efc3d49ee", "rawTextureUuid": "20963d22-57e7-4c2f-a7a9-570efc3d49ee",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_3": { "icon_small_3_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "7ce58d5b-ae56-4d61-b2bf-21beeeeacfca", "uuid": "7ce58d5b-ae56-4d61-b2bf-21beeeeacfca",
"rawTextureUuid": "6576ce9c-51e6-4724-8d57-8d324c8e5a67", "rawTextureUuid": "6576ce9c-51e6-4724-8d57-8d324c8e5a67",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_4": { "icon_small_4_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b544783b-7264-4279-b5db-7f653435a72f", "uuid": "b544783b-7264-4279-b5db-7f653435a72f",
"rawTextureUuid": "98b2b7f8-d144-4169-9fbf-4e69422f838e", "rawTextureUuid": "98b2b7f8-d144-4169-9fbf-4e69422f838e",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_5": { "icon_small_5_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "381e60c0-f5e0-4ad3-93e0-ec527db1ff68", "uuid": "381e60c0-f5e0-4ad3-93e0-ec527db1ff68",
"rawTextureUuid": "a03be8db-3de1-4cf4-b32d-d1934122f1dc", "rawTextureUuid": "a03be8db-3de1-4cf4-b32d-d1934122f1dc",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 61, "height": 61,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"icon_small_6": { "icon_small_6_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "2fca1379-e9c9-488f-ad2f-f249ddaa6de4", "uuid": "2fca1379-e9c9-488f-ad2f-f249ddaa6de4",
"rawTextureUuid": "97b2f5a8-5a6a-49a5-989c-118e26ce2ad3", "rawTextureUuid": "97b2f5a8-5a6a-49a5-989c-118e26ce2ad3",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 750, "height": 750,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"view": { "view_ns20_jsqj": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "b5112894-b0b3-481b-8555-d53718fc433d", "uuid": "b5112894-b0b3-481b-8555-d53718fc433d",
"rawTextureUuid": "a8eec2f5-937c-4ff0-97c4-db006eb3d6c5", "rawTextureUuid": "a8eec2f5-937c-4ff0-97c4-db006eb3d6c5",
......
...@@ -20396,6 +20396,7 @@ declare namespace dragonBones { ...@@ -20396,6 +20396,7 @@ declare namespace dragonBones {
export class DragonBonesAtlasAsset extends cc.Asset { export class DragonBonesAtlasAsset extends cc.Asset {
atlasJson: string; atlasJson: string;
texture: cc.Texture2D; texture: cc.Texture2D;
atlas: unknown;
} }
/**************************************************** /****************************************************
* ArmatureDisplay * ArmatureDisplay
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