Commit 810ea134 authored by 范雪寒's avatar 范雪寒

feat:

parent 1a7cc543
This diff is collapsed.
......@@ -48,6 +48,11 @@ export default class PS_001_Ctrl extends cc.Component {
arg0 = 0
this.time++
}
if (this.time == 2) {
this.ShowNode = cc.instantiate(this.allScene[arg0])
this.node.addChild(this.ShowNode)
this.ShowNode.getComponent('PS_001_scene' + (arg0 + 1)).init(this.carema, this)
}
this.ShowNode = cc.instantiate(this.allScene[arg0])
this.node.addChild(this.ShowNode)
this.ShowNode.getComponent('PS_001_scene' + (arg0 + 1)).init(this.carema, this)
......
This diff is collapsed.
......@@ -5,6 +5,7 @@
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import { asyncDelay } from "../../script/util";
import PS_001_Ctrl from "./PS_001_Ctrl";
import PS_001_dialogueManager from "./PS_001_dialogueManager";
import PS_001_handManager from "./PS_001_handManager";
......@@ -27,8 +28,8 @@ export default class PS_001_scene8 extends cc.Component {
parent: PS_001_Ctrl;
init(cameraNode: cc.Node, parent: PS_001_Ctrl) {
this.camera = cameraNode
this.camera.setPosition(-37,-123)
this.camera.getComponent(cc.Camera).zoomRatio=2.5
this.camera.setPosition(-37, -123)
this.camera.getComponent(cc.Camera).zoomRatio = 2.5
this.parent = parent
cc.audioEngine.playMusic(this.BGM, false)
PS_001_dialogueManager.getIns().start(8)
......@@ -43,10 +44,10 @@ export default class PS_001_scene8 extends cc.Component {
// this.turtle_ske.timeScale=0
// })
}
func1() {10
func1() {//10
cc.tween({}).delay(6).call(this.func2, this).start()
}
func2() {17
func2() {//17
cc.tween(this.rightrabbit.node).delay(5).call(() => {
this.rightrabbit.timeScale = 1
this.rightrabbit.playAnimation('run', 0)
......@@ -57,17 +58,22 @@ export default class PS_001_scene8 extends cc.Component {
cc.tween(this.camera).to(5, { x: 0, y: 0 }).start()
cc.tween(this.camera.getComponent(cc.Camera)).to(5, { zoomRatio: 1.25 }).call(() => { }, this).start()
}
func3() {24
func3() {//24
this.snake.timeScale = 1
this.snake.playAnimation('normal', 0)
cc.tween(this.camera).to(5, { x: -36.957, y: -123.22 }).start()
cc.tween(this.camera.getComponent(cc.Camera)).to(5, { zoomRatio: 2 }).delay(2).call(this.func4, this).start()
}
func4(){
cc.tween(this.camera).to(5, {y: 288}).delay(10).call(() => {
this.parent.toNext(8)
this.node.destroy()
}).start()
func4() {
cc.tween(this.camera)
// .to(5, { y: 288 })
.delay(5)
.delay(10)
.call(() => {
this.parent.toNext(8)
this.node.destroy()
})
.start()
}
pause() {
this.act = cc.director.getActionManager().pauseAllRunningActions()
......@@ -85,33 +91,84 @@ export default class PS_001_scene8 extends cc.Component {
cc.audioEngine.resumeMusic()
}
@property([cc.AudioClip])
sound: cc.AudioClip[]= []
go24(cameraNode:cc.Node,parent:PS_001_Ctrl){
sound: cc.AudioClip[] = []
go24(cameraNode: cc.Node, parent: PS_001_Ctrl) {
cc.audioEngine.playMusic(this.sound[0],false)
PS_001_dialogueManager.getIns().start(8,24)
PS_001_handManager.getIns().start(8, this,24)
this.camera=cameraNode
this.parent=parent
this.rightrabbit.node.x=1181.201
this.leftrabbit.node.x=-1290.651
cc.audioEngine.playMusic(this.sound[0], false)
PS_001_dialogueManager.getIns().start(8, 24)
PS_001_handManager.getIns().start(8, this, 24)
this.camera = cameraNode
this.parent = parent
this.rightrabbit.node.x = 1181.201
this.leftrabbit.node.x = -1290.651
this.snake.playAnimation('normal', 0)
this.camera.setPosition(-36.957,-123.22)
this.camera.getComponent(cc.Camera).zoomRatio=2
this.camera.setPosition(-36.957, -123.22)
this.camera.getComponent(cc.Camera).zoomRatio = 2
this.func4()
}
go33(cameraNode:cc.Node,parent:PS_001_Ctrl){
cc.audioEngine.playMusic(this.sound[1],false)
PS_001_dialogueManager.getIns().start(8,33)
PS_001_handManager.getIns().start(8, this,33)
go33(cameraNode: cc.Node, parent: PS_001_Ctrl) {
cc.audioEngine.playMusic(this.sound[1], false)
PS_001_dialogueManager.getIns().start(8, 33)
PS_001_handManager.getIns().start(8, this, 33)
this.snake.playAnimation('normal', 0)
this.camera=cameraNode
this.parent=parent
this.camera.setPosition(-36.957, -123.22 )
this.camera.getComponent(cc.Camera).zoomRatio=2
cc.tween({}).delay(5).call(()=>{
this.parent.toNext(8)
this.node.destroy()
},this).start()
this.camera = cameraNode
this.parent = parent
this.camera.setPosition(-36.957, -123.22)
this.camera.getComponent(cc.Camera).zoomRatio = 2
cc.tween({}).delay(5).call(() => {
if (PS_001_Ctrl.getIns().time == 0) {
this.onFinishFrirstTime();
} else if (PS_001_Ctrl.getIns().time == 1) {
this.onFinishLast();
} else {
const bg = cc.find('Canvas/Main Camera/bg');
bg.active = true;
cc.tween(bg).to(1, { opacity: 255 }).start();
const wellDown = cc.find('Canvas/wellDown');
wellDown.active = true;
wellDown.x = this.camera.x;
wellDown.y = this.camera.y;
wellDown.getComponent(dragonBones.ArmatureDisplay).once(dragonBones.EventObject.COMPLETE, () => {
wellDown.active = false;
});
const clip = cc.find('Canvas/audio_over').getComponent(cc.AudioSource).clip;
cc.audioEngine.play(clip, false, 1.0);
}
}, this).start()
}
async onFinishFrirstTime() {
const canvas = cc.find('Canvas');
const zoom = this.camera.getComponent(cc.Camera).zoomRatio;
const cameraWidth = canvas.width / zoom;
const cameraHeight = canvas.height / zoom;
const ranbow = cc.find('Canvas/ranbow');
ranbow.active = true;
ranbow.scale = (cameraHeight + 20) / ranbow.height;
ranbow.x = cameraWidth / 2 + this.camera.x;
ranbow.y = this.camera.y;
const length = cameraWidth + 500 * ranbow.scale;
const time = length / 1000;
cc.tween(ranbow)
.to(time, { x: -cameraWidth / 2 - 500 * ranbow.scale })
.start();
await asyncDelay(time);
ranbow.active = false;
this.parent.toNext(8)
this.node.destroy()
}
onFinishLast() {
const middleLayerNode = cc.find('middleLayer');
if (middleLayerNode) {
cc.audioEngine.stopAll();
const middleLayer = middleLayerNode.getComponent('middleLayer');
middleLayer.loadOnlineBundleByCourseId(21227);
}
}
}
{
"ver": "2.0.1",
"uuid": "f0680ae0-c079-45ef-abd7-9e63d90b982b",
"uuid": "8a03c84b-37c7-49db-9647-e51fc1fb6c6c",
"downloadMode": 0,
"duration": 0.130612,
"duration": 2.592,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "3ec1a77e-1237-47b6-b694-0a1571c942ae",
"downloadMode": 0,
"duration": 5.112,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "2e30b51d-f84d-447e-add5-d338ebeb836b",
"downloadMode": 0,
"duration": 1.1755,
"subMetas": {}
}
\ No newline at end of file
{"frameRate":24,"name":"goodjob","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":24,"name":"Armature","aabb":{"x":-316,"y":-323,"width":616,"height":663},"bone":[{"name":"root"},{"name":"奖1","parent":"root","transform":{"x":-17.3,"y":5.75}},{"length":41,"name":"d-1","parent":"root","transform":{"x":13.05,"y":41.05,"skX":73.5988,"skY":73.5988}},{"length":42,"name":"d-2","parent":"root","transform":{"x":-40.4,"y":46.25,"skX":105.066,"skY":105.066}},{"name":"x1","parent":"root","transform":{"x":-45.6,"y":-26.7}},{"name":"x2","parent":"root","transform":{"x":-67.1,"y":1.3}},{"length":2,"name":"图层_1","parent":"root","transform":{"x":-16.9,"y":-93.15,"skX":180,"skY":180}},{"name":"图层_1_拷贝_11","parent":"root","transform":{"x":-10.4,"y":10.4}}],"slot":[{"name":"图层_1_拷贝_11","parent":"图层_1_拷贝_11"},{"name":"d-2","parent":"d-2"},{"name":"d-1","parent":"d-1"},{"name":"奖1","parent":"奖1"},{"name":"x2","parent":"x2"},{"name":"x1","parent":"x1"},{"name":"图层_1","parent":"图层_1"}],"skin":[{"slot":[{"name":"图层_1","display":[{"name":"奖章2/图层_1","transform":{"x":-9.4,"y":-1.65,"skX":180,"skY":180}}]},{"name":"x2","display":[{"name":"奖章2/x2","transform":{"x":2.6,"y":-0.3}}]},{"name":"d-2","display":[{"name":"奖章2/d-2","transform":{"x":27.49,"y":3.06,"skX":-105.07,"skY":-105.07}}]},{"name":"奖1","display":[{"name":"奖章2/奖1","transform":{"x":4.3,"y":-1.75}}]},{"name":"图层_1_拷贝_11","display":[{"name":"奖章2/图层_1_拷贝_11","transform":{"x":2.4,"y":-1.9}}]},{"name":"x1","display":[{"name":"奖章2/x1","transform":{"x":1.1,"y":-0.8}}]},{"name":"d-1","display":[{"name":"奖章2/d-1","transform":{"x":33.06,"y":-2.72,"skX":-73.6,"skY":-73.6}}]}]}],"animation":[{"duration":96,"playTimes":0,"name":"normal","bone":[{"name":"奖1","scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.1,"y":0.1},{"duration":3,"tweenEasing":0,"x":1.5,"y":1.5},{"duration":88}]},{"name":"d-1","translateFrame":[{"duration":10},{"duration":4,"tweenEasing":0,"x":-34.15,"y":-52.59},{"duration":82}]},{"name":"d-2","translateFrame":[{"duration":8},{"duration":4,"tweenEasing":0,"x":25.46,"y":-66.07},{"duration":84}]},{"name":"x1","scaleFrame":[{"duration":15},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":20,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":17,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.5,"y":0.5},{"duration":3,"tweenEasing":0},{"duration":8,"x":0.5,"y":0.5}]},{"name":"x2","scaleFrame":[{"duration":11},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":21,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":17,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.4,"y":1.4},{"duration":11}]},{"name":"图层_1","scaleFrame":[{"duration":28},{"duration":10,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":8,"tweenEasing":0,"x":0.8,"y":0.8},{"duration":9,"tweenEasing":0,"x":1.2,"y":1.2},{"duration":32}]},{"name":"图层_1_拷贝_11","rotateFrame":[{"duration":27},{"duration":69,"tweenEasing":0,"clockwise":2},{"duration":0}]}],"slot":[{"name":"图层_1_拷贝_11","colorFrame":[{"duration":26,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":69}]},{"name":"d-2","colorFrame":[{"duration":7,"tweenEasing":0,"value":{"aM":0}},{"duration":89}]},{"name":"d-1","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":87}]},{"name":"x2","colorFrame":[{"duration":10,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":85}]},{"name":"x1","colorFrame":[{"duration":14,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":81}]},{"name":"图层_1","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"tweenEasing":0,"value":{"aM":0}},{"duration":68}]}]}],"defaultActions":[{"gotoAndPlay":"normal"}],"canvas":{"width":700,"height":700}}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "242ac10e-291e-4017-aec6-f3e64af24536",
"subMetas": {}
}
\ No newline at end of file
{"imagePath":"goodjob_tex.png","width":1024,"height":1024,"name":"goodjob","SubTexture":[{"width":616,"y":1,"height":663,"name":"奖章2/图层_1_拷贝_11","x":1},{"width":75,"y":723,"height":88,"name":"奖章2/d-2","x":79},{"width":76,"y":723,"height":88,"name":"奖章2/d-1","x":1},{"width":118,"y":666,"height":118,"name":"奖章2/奖1","x":254},{"width":15,"y":723,"height":44,"name":"奖章2/x2","x":173},{"width":15,"y":723,"height":45,"name":"奖章2/x1","x":156},{"frameY":0,"y":666,"frameWidth":260,"frameHeight":55,"width":251,"height":55,"name":"奖章2/图层_1","frameX":-1,"x":1}]}
\ No newline at end of file
{
"ver": "1.0.1",
"uuid": "5be32bbd-0fd2-47e8-94fb-0827153bdec2",
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "8a906efb-218c-4c67-9930-86fb16288b4c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1024,
"height": 1024,
"platformSettings": {},
"subMetas": {
"goodjob_tex": {
"ver": "1.0.4",
"uuid": "82151d47-0b53-4768-b0f7-2f22f17f9ad5",
"rawTextureUuid": "8a906efb-218c-4c67-9930-86fb16288b4c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -203,
"offsetY": 106,
"trimX": 1,
"trimY": 1,
"width": 616,
"height": 810,
"rawWidth": 1024,
"rawHeight": 1024,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "3464790b-d514-40e8-bfec-555dee2fb17d",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 67,
"width": 149,
"height": 267,
"platformSettings": {},
"subMetas": {
"btn_left": {
"1": {
"ver": "1.0.4",
"uuid": "ce19457d-e8f3-4c38-ae3e-d4b99208ddb5",
"rawTextureUuid": "9a79969a-0506-48d4-bc98-3c05d109b027",
"uuid": "a319632c-b62e-42a8-9302-99d9de8c509a",
"rawTextureUuid": "3464790b-d514-40e8-bfec-555dee2fb17d",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......@@ -22,10 +22,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 61,
"height": 67,
"rawWidth": 61,
"rawHeight": 67,
"width": 149,
"height": 267,
"rawWidth": 149,
"rawHeight": 267,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "4c0552f8-cb74-4a11-b86c-c08da33bf079",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 1280,
"height": 720,
"width": 183,
"height": 266,
"platformSettings": {},
"subMetas": {
"bg": {
"2": {
"ver": "1.0.4",
"uuid": "8288e3d4-4c75-4b27-8f01-f7014417f4dd",
"rawTextureUuid": "e1b4d971-9876-4832-803a-5a321964a78b",
"uuid": "f75596f2-87d2-4ccb-86a5-9628cfcc7eef",
"rawTextureUuid": "4c0552f8-cb74-4a11-b86c-c08da33bf079",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
......@@ -22,10 +22,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 1280,
"height": 720,
"rawWidth": 1280,
"rawHeight": 720,
"width": 183,
"height": 266,
"rawWidth": 183,
"rawHeight": 266,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "c976fd1b-6f8c-416d-b197-ab854c79576a",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 366,
"height": 336,
"width": 186,
"height": 269,
"platformSettings": {},
"subMetas": {
"1orange": {
"3": {
"ver": "1.0.4",
"uuid": "43d1e79d-6de8-4dcb-b8ce-d767df7913aa",
"rawTextureUuid": "efa5fa09-a4dd-4bfc-ab7e-17c19f85408f",
"uuid": "b016afc6-fdc3-4956-9fd5-0a363b7f2f85",
"rawTextureUuid": "c976fd1b-6f8c-416d-b197-ab854c79576a",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"offsetY": 0,
"trimX": 0,
"trimY": 1,
"width": 366,
"height": 335,
"rawWidth": 366,
"rawHeight": 336,
"trimY": 0,
"width": 186,
"height": 269,
"rawWidth": 186,
"rawHeight": 269,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "1a08b7a2-da3d-4cf3-9800-fd6acddd248b",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 645,
"height": 112,
"platformSettings": {},
"subMetas": {
"areyouready": {
"ver": "1.0.4",
"uuid": "3ac4d99a-b68d-42ac-9490-ee6654ccb03d",
"rawTextureUuid": "1a08b7a2-da3d-4cf3-9800-fd6acddd248b",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 645,
"height": 112,
"rawWidth": 645,
"rawHeight": 112,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "12d36e91-9fc9-4252-a87d-4243a73b9ee1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 61,
"height": 67,
"width": 448,
"height": 339,
"platformSettings": {},
"subMetas": {
"btn_right": {
"go": {
"ver": "1.0.4",
"uuid": "e5a2dbaa-a677-4a32-90d7-a1b057d7fb59",
"rawTextureUuid": "d582359e-924e-4ee9-9964-1fc4bb417e71",
"uuid": "0078ff52-e8e1-4d6b-96bd-5973932f0590",
"rawTextureUuid": "12d36e91-9fc9-4252-a87d-4243a73b9ee1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": -0.5,
"offsetY": 0.5,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 60,
"height": 66,
"rawWidth": 61,
"rawHeight": 67,
"width": 448,
"height": 339,
"rawWidth": 448,
"rawHeight": 339,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 144,
"height": 144,
"platformSettings": {},
"subMetas": {
"icon": {
"ver": "1.0.4",
"uuid": "6fbc30a8-3c49-44ae-8ba4-7f56f385b78a",
"rawTextureUuid": "18d07592-51a9-421e-8972-0f67b68d29e1",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -0.5,
"trimX": 3,
"trimY": 2,
"width": 138,
"height": 141,
"rawWidth": 144,
"rawHeight": 144,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e58d32fc-f17e-479d-9013-3d75b85069cd",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 402,
"height": 1254,
"platformSettings": {},
"subMetas": {
"light": {
"ver": "1.0.4",
"uuid": "6e14be00-9d18-44a0-ac3a-3a0f73d65dc1",
"rawTextureUuid": "e58d32fc-f17e-479d-9013-3d75b85069cd",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0.5,
"offsetY": 0,
"trimX": 1,
"trimY": 0,
"width": 401,
"height": 1254,
"rawWidth": 402,
"rawHeight": 1254,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "e901df55-5447-48d0-9464-3be489ac865c",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 3410,
"height": 725,
"platformSettings": {},
"subMetas": {
"ranbow": {
"ver": "1.0.4",
"uuid": "880cd678-9ce7-4533-a93b-a1f4db806ba3",
"rawTextureUuid": "e901df55-5447-48d0-9464-3be489ac865c",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 3410,
"height": 725,
"rawWidth": 3410,
"rawHeight": 725,
"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