Commit 8c597a64 authored by 杨一航's avatar 杨一航

fix

parent df7b2366
......@@ -5,6 +5,8 @@
// Learn life-cycle callbacks:
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
import { asyncDelay } from "../../script/util";
const { ccclass, property } = cc._decorator;
@ccclass
......@@ -40,7 +42,7 @@ export default class EndView extends cc.Component {
}
showView(win: boolean, redScore, blueScore, redUrl, blueUrl) {
async showView(win: boolean, redScore, blueScore, redUrl, blueUrl) {
this.node.opacity = 255;
......@@ -58,6 +60,17 @@ export default class EndView extends cc.Component {
cc.loader.load({ url: blueUrl }, (err, img) => {
this.blueIcon.getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(img)
})
if (win) {
this.winRoot.getChildByName("ani").active = true;
await asyncDelay(1)
this.winRoot.getChildByName("audio").active = true;
} else {
this.loseRoot.getChildByName("ani").active = true;
await asyncDelay(1)
this.loseRoot.getChildByName("audio").active = true;
}
}
replay() {
......
{
"ver": "1.1.2",
"uuid": "4448b275-7e39-4296-8694-9d54b5b0960c",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "eda1bd81-8cad-4ddb-8f67-08c5e04f1cc7",
"downloadMode": 0,
"duration": 0.873878,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.0.1",
"uuid": "8b40755c-1363-4f14-b68f-c85d846ee47f",
"downloadMode": 0,
"duration": 3.787755,
"subMetas": {}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "819f12b9-0c19-42cf-ad79-7c222d429b4e",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 326,
"height": 138,
"platformSettings": {},
"subMetas": {
"Replay": {
"ver": "1.0.4",
"uuid": "ed490212-9c00-4a20-a463-2dae7eea5955",
"rawTextureUuid": "819f12b9-0c19-42cf-ad79-7c222d429b4e",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 326,
"height": 138,
"rawWidth": 326,
"rawHeight": 138,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
......@@ -10595,8 +10595,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
952.649,
312.418,
-790,
80,
0,
0,
0,
......@@ -10773,8 +10773,8 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
952.649,
312.418,
-790,
80,
0,
0,
0,
......
This diff is collapsed.
......@@ -554,7 +554,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
let realRedScore = (Math.floor(data.redScore / 100) + data.redScore % 100);
let realBlueScore = (Math.floor(data.blueScore / 100) + data.blueScore % 100);
if (this.playerId == data.uuid) {
cc.audioEngine.stopAllEffects();
......
......@@ -50,6 +50,7 @@ export class GameServer {
private _round_1_cardList: any[] = [];
private _nowStepAnswerIndex: number;
private _round2OutIndex;
private _gameOver: boolean = false;
constructor(playerMaxNumber, networkHelper) {
this.playerMaxNumber = playerMaxNumber;
......@@ -65,6 +66,7 @@ export class GameServer {
this._gameData = new MsgData();
this._gameData.Time = this._totalTime;
this._gameData.Round = 1;
this._gameOver = false;
this.networkHelper.startFrameSync();
}
......@@ -226,7 +228,7 @@ export class GameServer {
}
this._gameData.clearAnswerList();
}
_initRound2Step() {
async _initRound2Step() {
clearInterval(this._timer)
......@@ -269,6 +271,7 @@ export class GameServer {
}
})
this._gameOver = true;
this._senMsg({
type: MsgType.ROUND_END_EV,
data: { round: this._gameData.Round, redScore: this._gameData.RedScore, blueScore: this._gameData.BuleSocre, uuid: uuid, ary: ary }
......@@ -283,6 +286,11 @@ export class GameServer {
type: MsgType.ROUND_START_EV,
data: { round: this._gameData.Round, index: this._nowStepAnswerIndex }
});
await asyncDelay(1)
if (this._gameOver) return;
this._userPrepareCount = 0;
this._lastTime = Date.now();
this._gameData.Time = 10;
......@@ -432,6 +440,9 @@ export class GameServer {
this._gameData.addAnswerList({ uuid: userId, index: index })
clearInterval(this._timer)
await asyncDelay(1)
this._initRound2Step();
} else {
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 166,
"height": 73,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"book": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 166,
"height": 73,
"rawWidth": 166,
"rawHeight": 73,
"offsetY": 8,
"trimX": 31,
"trimY": 2,
"width": 96,
"height": 42,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
assets/L5R1_bingo/texture/words/boy.png

5.69 KB | W: | H:

assets/L5R1_bingo/texture/words/boy.png

4.73 KB | W: | H:

assets/L5R1_bingo/texture/words/boy.png
assets/L5R1_bingo/texture/words/boy.png
assets/L5R1_bingo/texture/words/boy.png
assets/L5R1_bingo/texture/words/boy.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -20,12 +20,12 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 132,
"height": 105,
"rawWidth": 132,
"rawHeight": 105,
"trimX": 43,
"trimY": 3,
"width": 72,
"height": 56,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 203,
"height": 70,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"brown": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 203,
"height": 70,
"rawWidth": 203,
"rawHeight": 70,
"offsetY": 7.5,
"trimX": 20,
"trimY": 3,
"width": 118,
"height": 41,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 148,
"height": 70,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"bush": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 148,
"height": 70,
"rawWidth": 148,
"rawHeight": 70,
"offsetX": -0.5,
"offsetY": 7.5,
"trimX": 35,
"trimY": 3,
"width": 87,
"height": 41,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
assets/L5R1_bingo/texture/words/car.png

3.56 KB | W: | H:

assets/L5R1_bingo/texture/words/car.png

3.43 KB | W: | H:

assets/L5R1_bingo/texture/words/car.png
assets/L5R1_bingo/texture/words/car.png
assets/L5R1_bingo/texture/words/car.png
assets/L5R1_bingo/texture/words/car.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 113,
"height": 41,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"car": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 113,
"height": 41,
"rawWidth": 113,
"rawHeight": 41,
"offsetX": -2,
"offsetY": -1,
"trimX": 46,
"trimY": 21,
"width": 62,
"height": 22,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 145,
"height": 50,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"coin": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 145,
"height": 50,
"rawWidth": 145,
"rawHeight": 50,
"offsetY": 2.5,
"trimX": 37,
"trimY": 14,
"width": 84,
"height": 29,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
assets/L5R1_bingo/texture/words/cow.png

4.75 KB | W: | H:

assets/L5R1_bingo/texture/words/cow.png

4.24 KB | W: | H:

assets/L5R1_bingo/texture/words/cow.png
assets/L5R1_bingo/texture/words/cow.png
assets/L5R1_bingo/texture/words/cow.png
assets/L5R1_bingo/texture/words/cow.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 135,
"height": 41,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"cow": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 135,
"height": 41,
"rawWidth": 135,
"rawHeight": 41,
"offsetX": -1.5,
"offsetY": -1.5,
"trimX": 39,
"trimY": 21,
"width": 77,
"height": 23,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 229,
"height": 74,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"doctor": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 229,
"height": 74,
"rawWidth": 229,
"rawHeight": 74,
"offsetX": 2,
"offsetY": 7,
"trimX": 22,
"trimY": 5,
"width": 118,
"height": 38,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 173,
"height": 68,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"farm": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 173,
"height": 68,
"rawWidth": 173,
"rawHeight": 68,
"offsetY": 7.5,
"trimX": 30,
"trimY": 4,
"width": 98,
"height": 39,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 150,
"height": 69,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"foot": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 150,
"height": 69,
"rawWidth": 150,
"rawHeight": 69,
"offsetX": -2,
"offsetY": 7,
"trimX": 31,
"trimY": 3,
"width": 92,
"height": 42,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 105,
"height": 82,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"girl": {
......@@ -20,12 +20,12 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 105,
"height": 82,
"rawWidth": 105,
"rawHeight": 82,
"trimX": 43,
"trimY": 3,
"width": 72,
"height": 56,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 201,
"height": 68,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"house": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 201,
"height": 68,
"rawWidth": 201,
"rawHeight": 68,
"offsetX": 2,
"offsetY": 7.5,
"trimX": 23,
"trimY": 4,
"width": 116,
"height": 39,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 208,
"height": 41,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"mouse": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 208,
"height": 41,
"rawWidth": 208,
"rawHeight": 41,
"offsetY": -1,
"trimX": 20,
"trimY": 20,
"width": 118,
"height": 24,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "7b45a651-bb3e-4c2d-ae7d-2f28d5b3b5f2",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"nurse": {
"ver": "1.0.4",
"uuid": "90c2cb0c-83ef-49ae-ad5d-d65a2417dd9c",
"rawTextureUuid": "7b45a651-bb3e-4c2d-ae7d-2f28d5b3b5f2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": -1,
"trimX": 29,
"trimY": 21,
"width": 100,
"height": 22,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 200,
"height": 84,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"purple": {
......@@ -19,13 +19,13 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 200,
"height": 84,
"rawWidth": 200,
"rawHeight": 84,
"offsetY": -2.5,
"trimX": 23,
"trimY": 10,
"width": 112,
"height": 47,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 108,
"height": 70,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"soil": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 108,
"height": 70,
"rawWidth": 108,
"rawHeight": 70,
"offsetX": 0.5,
"offsetY": 8.5,
"trimX": 48,
"trimY": 2,
"width": 63,
"height": 41,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 139,
"height": 56,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"star": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 139,
"height": 56,
"rawWidth": 139,
"rawHeight": 56,
"offsetX": 3.5,
"offsetY": 2.5,
"trimX": 45,
"trimY": 13,
"width": 75,
"height": 31,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 260,
"height": 74,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"teacher": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 260,
"height": 74,
"rawWidth": 260,
"rawHeight": 74,
"offsetX": -0.5,
"offsetY": 8.5,
"trimX": 6,
"trimY": 2,
"width": 145,
"height": 41,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
assets/L5R1_bingo/texture/words/toy.png

4.21 KB | W: | H:

assets/L5R1_bingo/texture/words/toy.png

4.45 KB | W: | H:

assets/L5R1_bingo/texture/words/toy.png
assets/L5R1_bingo/texture/words/toy.png
assets/L5R1_bingo/texture/words/toy.png
assets/L5R1_bingo/texture/words/toy.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 121,
"height": 80,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"toy": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 121,
"height": 80,
"rawWidth": 121,
"rawHeight": 80,
"offsetX": 0.5,
"offsetY": -3.5,
"trimX": 44,
"trimY": 11,
"width": 71,
"height": 47,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
......@@ -7,8 +7,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 251,
"height": 56,
"width": 158,
"height": 62,
"platformSettings": {},
"subMetas": {
"tractor": {
......@@ -18,14 +18,14 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 251,
"height": 56,
"rawWidth": 251,
"rawHeight": 56,
"offsetX": 0.5,
"offsetY": 4,
"trimX": 12,
"trimY": 10,
"width": 135,
"height": 34,
"rawWidth": 158,
"rawHeight": 62,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......
{
"ver": "2.3.5",
"uuid": "79493b8a-6f73-4aa1-91d2-d0194b0c76c9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 633,
"height": 1600,
"platformSettings": {},
"subMetas": {
"右树干": {
"ver": "1.0.4",
"uuid": "c3b1569c-0404-4fd0-b2db-c44124679879",
"rawTextureUuid": "79493b8a-6f73-4aa1-91d2-d0194b0c76c9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 633,
"height": 1600,
"rawWidth": 633,
"rawHeight": 1600,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
{
"ver": "2.3.5",
"uuid": "ba6e617d-1592-4dc8-8578-2418eae067a9",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 585,
"height": 1600,
"platformSettings": {},
"subMetas": {
"左树干": {
"ver": "1.0.4",
"uuid": "e2d362aa-439b-411a-95db-911910d68257",
"rawTextureUuid": "ba6e617d-1592-4dc8-8578-2418eae067a9",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 585,
"height": 1600,
"rawWidth": 585,
"rawHeight": 1600,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
{
"ver": "2.3.5",
"uuid": "98c78862-49e8-4925-8400-df9d1b8c8afc",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 2160,
"height": 642,
"platformSettings": {},
"subMetas": {
"树冠": {
"ver": "1.0.4",
"uuid": "d2b08398-ae50-4fd9-8863-562a279c7247",
"rawTextureUuid": "98c78862-49e8-4925-8400-df9d1b8c8afc",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 2160,
"height": 642,
"rawWidth": 2160,
"rawHeight": 642,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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