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

fix

parent df7b2366
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
// 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 { asyncDelay } from "../../script/util";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ccclass @ccclass
...@@ -40,7 +42,7 @@ export default class EndView extends cc.Component { ...@@ -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; this.node.opacity = 255;
...@@ -58,6 +60,17 @@ export default class EndView extends cc.Component { ...@@ -58,6 +60,17 @@ export default class EndView extends cc.Component {
cc.loader.load({ url: blueUrl }, (err, img) => { cc.loader.load({ url: blueUrl }, (err, img) => {
this.blueIcon.getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(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() { 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 @@ ...@@ -10595,8 +10595,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
952.649, -790,
312.418, 80,
0, 0,
0, 0,
0, 0,
...@@ -10773,8 +10773,8 @@ ...@@ -10773,8 +10773,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
952.649, -790,
312.418, 80,
0, 0,
0, 0,
0, 0,
......
This diff is collapsed.
...@@ -554,7 +554,6 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -554,7 +554,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
let realRedScore = (Math.floor(data.redScore / 100) + data.redScore % 100); let realRedScore = (Math.floor(data.redScore / 100) + data.redScore % 100);
let realBlueScore = (Math.floor(data.blueScore / 100) + data.blueScore % 100); let realBlueScore = (Math.floor(data.blueScore / 100) + data.blueScore % 100);
if (this.playerId == data.uuid) { if (this.playerId == data.uuid) {
cc.audioEngine.stopAllEffects(); cc.audioEngine.stopAllEffects();
......
...@@ -50,6 +50,7 @@ export class GameServer { ...@@ -50,6 +50,7 @@ export class GameServer {
private _round_1_cardList: any[] = []; private _round_1_cardList: any[] = [];
private _nowStepAnswerIndex: number; private _nowStepAnswerIndex: number;
private _round2OutIndex; private _round2OutIndex;
private _gameOver: boolean = false;
constructor(playerMaxNumber, networkHelper) { constructor(playerMaxNumber, networkHelper) {
this.playerMaxNumber = playerMaxNumber; this.playerMaxNumber = playerMaxNumber;
...@@ -65,6 +66,7 @@ export class GameServer { ...@@ -65,6 +66,7 @@ export class GameServer {
this._gameData = new MsgData(); this._gameData = new MsgData();
this._gameData.Time = this._totalTime; this._gameData.Time = this._totalTime;
this._gameData.Round = 1; this._gameData.Round = 1;
this._gameOver = false;
this.networkHelper.startFrameSync(); this.networkHelper.startFrameSync();
} }
...@@ -226,7 +228,7 @@ export class GameServer { ...@@ -226,7 +228,7 @@ export class GameServer {
} }
this._gameData.clearAnswerList(); this._gameData.clearAnswerList();
} }
_initRound2Step() { async _initRound2Step() {
clearInterval(this._timer) clearInterval(this._timer)
...@@ -269,6 +271,7 @@ export class GameServer { ...@@ -269,6 +271,7 @@ export class GameServer {
} }
}) })
this._gameOver = true;
this._senMsg({ this._senMsg({
type: MsgType.ROUND_END_EV, type: MsgType.ROUND_END_EV,
data: { round: this._gameData.Round, redScore: this._gameData.RedScore, blueScore: this._gameData.BuleSocre, uuid: uuid, ary: ary } data: { round: this._gameData.Round, redScore: this._gameData.RedScore, blueScore: this._gameData.BuleSocre, uuid: uuid, ary: ary }
...@@ -283,6 +286,11 @@ export class GameServer { ...@@ -283,6 +286,11 @@ export class GameServer {
type: MsgType.ROUND_START_EV, type: MsgType.ROUND_START_EV,
data: { round: this._gameData.Round, index: this._nowStepAnswerIndex } data: { round: this._gameData.Round, index: this._nowStepAnswerIndex }
}); });
await asyncDelay(1)
if (this._gameOver) return;
this._userPrepareCount = 0; this._userPrepareCount = 0;
this._lastTime = Date.now(); this._lastTime = Date.now();
this._gameData.Time = 10; this._gameData.Time = 10;
...@@ -432,6 +440,9 @@ export class GameServer { ...@@ -432,6 +440,9 @@ export class GameServer {
this._gameData.addAnswerList({ uuid: userId, index: index }) this._gameData.addAnswerList({ uuid: userId, index: index })
clearInterval(this._timer)
await asyncDelay(1)
this._initRound2Step(); this._initRound2Step();
} else { } else {
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 166, "width": 158,
"height": 73, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"book": { "book": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 8,
"trimX": 0, "trimX": 31,
"trimY": 0, "trimY": 2,
"width": 166, "width": 96,
"height": 73, "height": 42,
"rawWidth": 166, "rawWidth": 158,
"rawHeight": 73, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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 @@ ...@@ -20,12 +20,12 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 43,
"trimY": 0, "trimY": 3,
"width": 132, "width": 72,
"height": 105, "height": 56,
"rawWidth": 132, "rawWidth": 158,
"rawHeight": 105, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 203, "width": 158,
"height": 70, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"brown": { "brown": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 7.5,
"trimX": 0, "trimX": 20,
"trimY": 0, "trimY": 3,
"width": 203, "width": 118,
"height": 70, "height": 41,
"rawWidth": 203, "rawWidth": 158,
"rawHeight": 70, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 148, "width": 158,
"height": 70, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"bush": { "bush": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -0.5,
"offsetY": 0, "offsetY": 7.5,
"trimX": 0, "trimX": 35,
"trimY": 0, "trimY": 3,
"width": 148, "width": 87,
"height": 70, "height": 41,
"rawWidth": 148, "rawWidth": 158,
"rawHeight": 70, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 113, "width": 158,
"height": 41, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"car": { "car": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -2,
"offsetY": 0, "offsetY": -1,
"trimX": 0, "trimX": 46,
"trimY": 0, "trimY": 21,
"width": 113, "width": 62,
"height": 41, "height": 22,
"rawWidth": 113, "rawWidth": 158,
"rawHeight": 41, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 145, "width": 158,
"height": 50, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"coin": { "coin": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 2.5,
"trimX": 0, "trimX": 37,
"trimY": 0, "trimY": 14,
"width": 145, "width": 84,
"height": 50, "height": 29,
"rawWidth": 145, "rawWidth": 158,
"rawHeight": 50, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 135, "width": 158,
"height": 41, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"cow": { "cow": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -1.5,
"offsetY": 0, "offsetY": -1.5,
"trimX": 0, "trimX": 39,
"trimY": 0, "trimY": 21,
"width": 135, "width": 77,
"height": 41, "height": 23,
"rawWidth": 135, "rawWidth": 158,
"rawHeight": 41, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 229, "width": 158,
"height": 74, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"doctor": { "doctor": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 2,
"offsetY": 0, "offsetY": 7,
"trimX": 0, "trimX": 22,
"trimY": 0, "trimY": 5,
"width": 229, "width": 118,
"height": 74, "height": 38,
"rawWidth": 229, "rawWidth": 158,
"rawHeight": 74, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 173, "width": 158,
"height": 68, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"farm": { "farm": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 7.5,
"trimX": 0, "trimX": 30,
"trimY": 0, "trimY": 4,
"width": 173, "width": 98,
"height": 68, "height": 39,
"rawWidth": 173, "rawWidth": 158,
"rawHeight": 68, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 150, "width": 158,
"height": 69, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"foot": { "foot": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -2,
"offsetY": 0, "offsetY": 7,
"trimX": 0, "trimX": 31,
"trimY": 0, "trimY": 3,
"width": 150, "width": 92,
"height": 69, "height": 42,
"rawWidth": 150, "rawWidth": 158,
"rawHeight": 69, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 105, "width": 158,
"height": 82, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"girl": { "girl": {
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 43,
"trimY": 0, "trimY": 3,
"width": 105, "width": 72,
"height": 82, "height": 56,
"rawWidth": 105, "rawWidth": 158,
"rawHeight": 82, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 201, "width": 158,
"height": 68, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"house": { "house": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 2,
"offsetY": 0, "offsetY": 7.5,
"trimX": 0, "trimX": 23,
"trimY": 0, "trimY": 4,
"width": 201, "width": 116,
"height": 68, "height": 39,
"rawWidth": 201, "rawWidth": 158,
"rawHeight": 68, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 208, "width": 158,
"height": 41, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"mouse": { "mouse": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": -1,
"trimX": 0, "trimX": 20,
"trimY": 0, "trimY": 20,
"width": 208, "width": 118,
"height": 41, "height": 24,
"rawWidth": 208, "rawWidth": 158,
"rawHeight": 41, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 200, "width": 158,
"height": 84, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"purple": { "purple": {
...@@ -19,13 +19,13 @@ ...@@ -19,13 +19,13 @@
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": -2.5,
"trimX": 0, "trimX": 23,
"trimY": 0, "trimY": 10,
"width": 200, "width": 112,
"height": 84, "height": 47,
"rawWidth": 200, "rawWidth": 158,
"rawHeight": 84, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 108, "width": 158,
"height": 70, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"soil": { "soil": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0.5,
"offsetY": 0, "offsetY": 8.5,
"trimX": 0, "trimX": 48,
"trimY": 0, "trimY": 2,
"width": 108, "width": 63,
"height": 70, "height": 41,
"rawWidth": 108, "rawWidth": 158,
"rawHeight": 70, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 139, "width": 158,
"height": 56, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"star": { "star": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 3.5,
"offsetY": 0, "offsetY": 2.5,
"trimX": 0, "trimX": 45,
"trimY": 0, "trimY": 13,
"width": 139, "width": 75,
"height": 56, "height": 31,
"rawWidth": 139, "rawWidth": 158,
"rawHeight": 56, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 260, "width": 158,
"height": 74, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"teacher": { "teacher": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": -0.5,
"offsetY": 0, "offsetY": 8.5,
"trimX": 0, "trimX": 6,
"trimY": 0, "trimY": 2,
"width": 260, "width": 145,
"height": 74, "height": 41,
"rawWidth": 260, "rawWidth": 158,
"rawHeight": 74, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 121, "width": 158,
"height": 80, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"toy": { "toy": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0.5,
"offsetY": 0, "offsetY": -3.5,
"trimX": 0, "trimX": 44,
"trimY": 0, "trimY": 11,
"width": 121, "width": 71,
"height": 80, "height": 47,
"rawWidth": 121, "rawWidth": 158,
"rawHeight": 80, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 251, "width": 158,
"height": 56, "height": 62,
"platformSettings": {}, "platformSettings": {},
"subMetas": { "subMetas": {
"tractor": { "tractor": {
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0.5,
"offsetY": 0, "offsetY": 4,
"trimX": 0, "trimX": 12,
"trimY": 0, "trimY": 10,
"width": 251, "width": 135,
"height": 56, "height": 34,
"rawWidth": 251, "rawWidth": 158,
"rawHeight": 56, "rawHeight": 62,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 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