Commit 8d34e5f6 authored by WangFan's avatar WangFan

完成部分流程

parent e508af2b
This diff is collapsed.
...@@ -32,114 +32,101 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -32,114 +32,101 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.initGame(); this.initGame();
} }
_cantouch = null;
private list: Array<{ type, text, right, imgage, duration, content, audio }>;
private recordFlag: boolean;//录音模式
initData() {
// 所有全局变量 默认都是null
this._cantouch = true;
let data = this.data;
}
initView() {
initData() {
} }
initListener() { private layer_bg: cc.Node;
private layer_game: cc.Node;
private layer_finish: cc.Node;
private res: cc.Node;
} private sentence_box: cc.Node;
private time_area: cc.Node;
private time: cc.Node;
initGame() { private microphone_area: cc.Node;
initView() {
this.layer_bg = pg.view.find(this, "layer_bg")
this.layer_game = pg.view.find(this, "layer_game")
this.layer_finish = pg.view.find(this, "layer_finish")
this.res = pg.view.find(this, "res")
this.sentence_box = pg.view.find(this.layer_game, "sentence_box")
this.microphone_area = pg.view.find(this.sentence_box, "microphone_area");
this.time_area = pg.view.find(this.microphone_area, "time_area")
this.time = pg.view.find(this.time_area, "time")
} }
initListener() {
this.initTween()
private letter: string;
private targetTime: number;
private recordAudio: string;
//按钮触发,使用的方法
async onTouchRecord() {
this.recordAudio = '';
// let AniNode = pg.view.find(this.layout_record, 'AniNode');
// AniNode.active = true;
this.showTimeStart();
cc.audioEngine.stopAllEffects();
courseware && courseware.startTest(this.letter); //开始录音
}
async onTouchRecordEnd() {
// let AniNode = pg.view.find(this.layout_record, 'AniNode');
// AniNode.active = false;
this.showTimeEnd();
let testData = {
"dtLastResponse": "2021-09-17 13:36:26:109",
"refText": "I haven't found anything out about him yet.",
"recordId": "6144295213f0a2200000ed93",
"eof": 1,
audioUrl: 'http://staging-teach.cdn.ireadabc.com/43839adb578c7e01456748b8a176a0c3_l.mp3',
"result": {
"pronunciation": 25,
"resource_version": "3.1.0",
"fluency": 60,
"rhythm": 90,
"kernel_version": "5.2.4",
"overall": 8,//75
"integrity": 100,
"duration": "6.779",
"rear_tone": "fall",
"speed": 96,
},
"tokenId": "6144295408558b08dd000001",
"applicationId": "154838659000009e"
}
if (!courseware) {
return this.recrodEnd(testData)
}
courseware && courseware.stopTest((res) => {
res = JSON.parse(res);
this.recrodEnd(res);
}); //结束录音
} }
async recrodEnd(data) { // 场景初始动画
this.recordAudio = data.audioUrl; initTween() {
let score = data.result.overall; cc.tween(this.sentence_box).to(0.5, { y: -375 }).start()
pg.event.emit('layer_record_score', score); setTimeout(() => {
pg.view.visible(this.time_area, true);
}, 0.5 * 1000)
let time = 10;
let timer = null;
timer = setInterval(() => {
pg.view.setString(this.time, `${time}`)
if (time > 1) {
time === 5 && this.microphoneAreaChange()
time--
} else {
this.microphoneAreaRecover();
this.playBgAnimation()
clearInterval(timer)
}
}, 1000)
} }
private startTime: number; microphoneAreaChange() {
showTimeStart() { pg.view.setColor(this.time, "#FFE298")
if (!this.targetTime) return; let icon_recording = pg.view.find(this.microphone_area, 'icon_recording');
let nowTime = new Date().getTime(); pg.view.visible(icon_recording, true)
this.startTime = nowTime; cc.tween(this.microphone_area).to(0.25, { angle: 15 }).to(0.5, { angle: -15 }).to(0.25, { angle: 0 }).union().repeatForever().start();
cc.tween(icon_recording).to(0.5, { opacity: 0 }).to(0.3, { opacity: 255 }).union().repeatForever().start();
} }
showTimeUpdate() { microphoneAreaRecover() {
if (!this.startTime) return; cc.Tween.stopAllByTarget(this.microphone_area);
let nowTime = new Date().getTime(); let icon_recording = pg.view.find(this.microphone_area, 'icon_recording');
let subTime = (nowTime - this.startTime) / 1000; cc.Tween.stopAllByTarget(icon_recording);
let percent = 1 - (subTime / this.targetTime); pg.view.visible(icon_recording, false)
percent = Math.max(percent, 0)
// let record_time = pg.view.find(this.layout_record, 'record_time');
// record_time.getComponent(cc.Sprite).fillRange = percent;
// if (percent == 0) {
// this.showTimeEnd();
// }
} }
showTimeEnd() { playBgAnimation(){
this.startTime = null; let bg_tween = pg.view.find(this.layer_bg,"tween");
// let record_time = pg.view.find(this.layout_record, 'record_time'); // 背景动画报错,暂时注释
// record_time.getComponent(cc.Sprite).fillRange = 0; // pg.view.playSpineAnimation(pg.view.find(bg_tween,"mountain2/mountain2_ske"), 'animation', false);
// pg.view.playSpineAnimation(pg.view.find(bg_tween,"mountain2_grass2/mountain2_grass2_ske"), 'animation', false);
// pg.view.playSpineAnimation(pg.view.find(bg_tween,"cloud/cloud_ske"), 'animation', false);
// pg.view.playSpineAnimation(pg.view.find(bg_tween,"tree/tree_ske"), 'animation', false);
// pg.view.playSpineAnimation(pg.view.find(bg_tween,"grass2/grass2_ske"), 'animation', false);
// pg.view.playSpineAnimation(pg.view.find(bg_tween,"mountain1_grass1/mountain1_grass1_ske"), 'animation', false);
let icon_mountain = pg.view.find(bg_tween,"icon_mountain");
pg.view.visible(icon_mountain, true)
cc.tween(icon_mountain).to(0.5, { opacity: 0 }).to(0.3, { opacity: 255 }).union().repeatForever().start();
} }
playLocalAudio(audioName) { stopBgAnimation(){
const audio = cc.find(`Canvas/res/audio/${audioName}`).getComponent(cc.AudioSource); let bg_tween = pg.view.find(this.layer_bg,"tween");
return new Promise((resolve, reject) => { let icon_mountain = pg.view.find(bg_tween,"icon_mountain");
const id = cc.audioEngine.playEffect(audio.clip, false); cc.Tween.stopAllByTarget(icon_mountain);
cc.audioEngine.setFinishCallback(id, () => { pg.view.visible(icon_mountain, false)
resolve(id);
});
})
} }
initGame() {
}
} }
{
"ver": "1.1.2",
"uuid": "54066f16-80fe-4583-81a9-285fabdf4f34",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"height": 512, "height": 512,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"cloud_tex": { "cloud": {
"ver": "1.0.4", "ver": "1.0.4",
"uuid": "f7dfadf1-468c-4c06-b619-95745d53b11b", "uuid": "f7dfadf1-468c-4c06-b619-95745d53b11b",
"rawTextureUuid": "04bb31e3-4c67-4a33-99f7-eef7ae6a1bbb", "rawTextureUuid": "04bb31e3-4c67-4a33-99f7-eef7ae6a1bbb",
......
{
"ver": "1.1.2",
"uuid": "5c6d3963-8643-477e-93c7-5b780e0c84f5",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "209571b5-028c-43ef-9b71-e82344f6f447",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"coin": {
"ver": "1.0.4",
"uuid": "b94ffcef-1a45-4234-ae56-504b58bad1c4",
"rawTextureUuid": "209571b5-028c-43ef-9b71-e82344f6f447",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -56,
"offsetY": 74.5,
"trimX": 1,
"trimY": 1,
"width": 398,
"height": 361,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "3a580124-d250-4a14-80f7-c317fab99c45",
"subMetas": {}
}
\ No newline at end of file
{"name":"coin","SubTexture":[{"name":"金币动画/金币底","x":1,"height":181,"y":181,"width":172},{"name":"金币动画/条","x":175,"height":18,"y":181,"width":9},{"name":"金币动画/圈","x":1,"height":178,"y":1,"width":218},{"name":"金币动画/金币","x":221,"height":185,"y":1,"width":178}],"height":512,"imagePath":"coin.png","width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "2cc82843-60c7-4c09-93b8-f4996133efe7",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "018a2cbf-2f70-4c95-9bc0-ddef05d5da25",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "165fc25d-3969-4a11-b734-0e892dfcd718",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 512,
"height": 512,
"platformSettings": {},
"subMetas": {
"coin2": {
"ver": "1.0.4",
"uuid": "654f9c3b-cb32-4ec7-b121-8c9b2bfbd7dc",
"rawTextureUuid": "165fc25d-3969-4a11-b734-0e892dfcd718",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -56,
"offsetY": 74.5,
"trimX": 1,
"trimY": 1,
"width": 398,
"height": 361,
"rawWidth": 512,
"rawHeight": 512,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "1.0.1",
"uuid": "1ce57e33-8745-4213-bde0-f4d1f5de1161",
"subMetas": {}
}
\ No newline at end of file
{"name":"coin2","SubTexture":[{"name":"金币动画/金币底","x":1,"height":181,"y":181,"width":172},{"name":"金币动画/条","x":175,"height":18,"y":181,"width":9},{"name":"金币动画/圈","x":1,"height":178,"y":1,"width":218},{"name":"金币动画/金币","x":221,"height":185,"y":1,"width":178}],"height":512,"imagePath":"coin2.png","width":512}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "4e701c9e-4050-4b63-92d9-72f23134233d",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "d1259e93-d506-4a00-8975-c23bc2b82f9f",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9498a888-59a5-486c-b294-8487060b8392",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"finish": {
"ver": "1.0.4",
"uuid": "9218a9fb-6cb7-4d0e-916a-bc7a017d6d67",
"rawTextureUuid": "9498a888-59a5-486c-b294-8487060b8392",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -10.5,
"offsetY": 75.5,
"trimX": 1,
"trimY": 1,
"width": 1001,
"height": 871,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{"name":"finish","version":"5.5","frameRate":24,"isGlobal":0,"armature":[{"name":"Armature","animation":[{"name":"finish","ffd":[],"frame":[],"duration":26,"slot":[{"name":"金币底","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":44},"duration":10},{"color":{"aM":0},"duration":6}],"displayFrame":[]},{"name":"圈","colorFrame":[{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":4},{"tweenEasing":0,"color":{"aM":0},"duration":6},{"tweenEasing":0,"color":{"aM":40},"duration":6},{"color":{"aM":0},"duration":6}],"displayFrame":[]},{"name":"金币","colorFrame":[],"displayFrame":[{"duration":4,"value":-1},{"duration":7,"value":-1},{"duration":15}]},{"name":"条1","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条11","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条111","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条12","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.5,1],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条13","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条121","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]},{"name":"条122","colorFrame":[{"color":{"aM":0},"duration":8},{"curve":[0,0,0.34269662921348315,0.9952978056426333],"color":{"aM":22},"duration":11},{"tweenEasing":0,"duration":7},{"color":{"aM":0},"duration":0}],"displayFrame":[]}],"bone":[{"name":"root","translateFrame":[],"rotateFrame":[],"scaleFrame":[]},{"name":"金币底","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"x":1.3,"duration":4,"tweenEasing":0,"y":1.3},{"x":1.3,"duration":6,"tweenEasing":0,"y":1.3},{"duration":16}]},{"name":"圈","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"duration":9,"tweenEasing":0},{"x":1.4,"duration":6,"y":1.4}]},{"name":"金币","translateFrame":[],"rotateFrame":[],"scaleFrame":[{"duration":11},{"x":0.5,"duration":4,"tweenEasing":0,"y":0.5},{"duration":7,"curve":[0.7359550561797753,0.009404388714733543,1,1],"y":1.1},{"duration":4}]},{"name":"条1","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":-236.6667,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]},{"name":"bone","translateFrame":[],"rotateFrame":[{"duration":22,"clockwise":2,"tweenEasing":0},{"duration":4}],"scaleFrame":[]},{"name":"条11","translateFrame":[{"duration":8},{"x":-178.25,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":-581.1667,"duration":7,"y":-526.7441}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条111","translateFrame":[{"duration":8},{"x":-178.25,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":146.8333,"duration":7,"y":-138.9941}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条12","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"curve":[0,0,0.5,1],"y":33.3333},{"x":300.8333,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"curve":[0,0,0.5,1],"duration":11},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"curve":[0,0,0.5,1],"y":0.7},{"duration":7}]},{"name":"条13","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":321,"duration":7,"y":-189.8274}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-34.1966,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]},{"name":"条121","translateFrame":[{"duration":8},{"x":93.3333,"duration":11,"tweenEasing":0,"y":33.3333},{"x":-236.6667,"duration":7,"y":-54.1608}],"rotateFrame":[{"duration":8},{"duration":11,"tweenEasing":0},{"rotate":-93.3665,"duration":7}],"scaleFrame":[{"duration":8},{"x":0.7,"duration":11,"tweenEasing":0,"y":0.7},{"duration":7}]}],"ik":[],"playTimes":0}],"bone":[{"name":"root","transform":{"x":-131.6667,"y":16.6667}},{"name":"圈","transform":{"x":140.655,"y":-240.8618},"parent":"root"},{"name":"金币","transform":{"x":143.8193,"y":-246.4},"parent":"root"},{"name":"条1","transform":{"x":33.3193,"y":-90.0208},"parent":"root"},{"name":"金币底","transform":{"x":146.8193,"y":-242},"parent":"root"},{"name":"bone","transform":{"x":138.33,"y":-245.75},"parent":"root"},{"name":"条11","transform":{"x":323.3193,"scY":0.7,"y":-95.8541,"scX":0.7},"parent":"root"},{"name":"条111","transform":{"x":323.3193,"scY":0.7,"y":-95.8541,"scX":0.7},"parent":"root"},{"name":"条12","transform":{"x":166.6526,"y":-40.0208},"parent":"root"},{"name":"条13","transform":{"x":98.1526,"y":-115.9375},"parent":"root"},{"name":"条121","transform":{"x":33.3193,"y":-90.0208},"parent":"root"}],"skin":[{"name":"","slot":[{"name":"条11","display":[{"name":"金币动画/条","transform":{"x":-270.4571,"skX":-39.1322,"y":73.2524,"skY":-39.1322},"type":"image","path":"金币动画/条"}]},{"name":"圈","display":[{"name":"金币动画/圈","transform":{"x":3.5699,"y":0.3676},"type":"image","path":"金币动画/圈"}]},{"name":"金币底","display":[{"name":"金币动画/金币底","transform":{"x":-3,"y":-0.5},"type":"image","path":"金币动画/金币底"}]},{"name":"金币","display":[{"name":"金币动画/金币","transform":{"y":5.9},"type":"image","path":"金币动画/金币"}]},{"name":"条1","display":[{"name":"金币动画/条","transform":{"x":122.0667,"scY":0.5,"y":-6.3667,"scX":0.5},"type":"image","path":"金币动画/条"}]},{"name":"条111","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条13","display":[{"name":"金币动画/条","transform":{"x":122.0667,"scY":0.5,"y":-6.3667,"scX":0.5},"type":"image","path":"金币动画/条"}]},{"name":"条12","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条122","display":[{"name":"金币动画/条","transform":{"x":-0.1,"y":-0.2},"type":"image","path":"金币动画/条"}]},{"name":"条121","display":[]}]}],"defaultActions":[{"gotoAndPlay":"finish"}],"frameRate":24,"slot":[{"name":"金币底","color":{},"parent":"金币底"},{"name":"圈","color":{},"z":1,"parent":"圈"},{"name":"金币","color":{},"z":2,"parent":"金币"},{"name":"条1","color":{},"z":3,"parent":"条1"},{"name":"条11","color":{},"z":4,"parent":"条11"},{"name":"条111","color":{},"z":5,"parent":"条111"},{"name":"条12","color":{},"z":6,"parent":"条12"},{"name":"条13","color":{},"z":7,"parent":"条13"},{"name":"条121","color":{},"z":8,"parent":"root","displayIndex":-1},{"name":"条122","color":{},"z":9,"parent":"条121"}],"type":"Armature","ik":[],"aabb":{"x":-243.44169151262471,"height":497.77919520611704,"y":-469.33333333333337,"width":512}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "4880161b-2080-4705-9ad2-d2a155f40638",
"subMetas": {}
}
\ No newline at end of file
{"name":"finish","SubTexture":[{"name":"金币动画/金币底","x":1,"height":487,"y":1,"width":487},{"name":"金币动画/圈","x":490,"height":420,"y":1,"width":512},{"name":"金币动画/金币","x":490,"height":449,"y":423,"width":388},{"name":"金币动画/条","x":880,"height":104,"y":423,"width":105}],"height":1024,"imagePath":"finish.png","width":1024}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "518409a7-9c73-4dad-8494-4d54a5b4cfd5",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "5280a8a9-de36-4f7e-aca7-6cac4ad3cfd5",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1920,
"height": 1080,
"platformSettings": {},
"subMetas": {
"finish_view": {
"ver": "1.0.4",
"uuid": "0e1692bb-fa87-43c7-9f4f-94abae3974f6",
"rawTextureUuid": "5280a8a9-de36-4f7e-aca7-6cac4ad3cfd5",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1920,
"height": 1080,
"rawWidth": 1920,
"rawHeight": 1080,
"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