Commit 4ff64cee authored by haiyoucuv's avatar haiyoucuv

GuideLayer

parent 14d59e9a
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
"__prefab": { "__prefab": {
"__id__": 6 "__id__": 6
}, },
"_group": 1, "_group": 16,
"_type": 2, "_type": 2,
"_mass": 1, "_mass": 1,
"_allowSleep": true, "_allowSleep": true,
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
"__id__": 8 "__id__": 8
}, },
"_material": null, "_material": null,
"_isTrigger": false, "_isTrigger": true,
"_center": { "_center": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": 0, "x": 0,
......
import Panel from "../../Module/Panel"; import Panel from "../../Module/Panel";
import { _decorator, Button, Node } from "cc"; import { _decorator, Button, Label, Node } from "cc";
import { changeScene, showToast } from "db://assets/Module/UIFast"; import { changeScene, showToast } from "db://assets/Module/UIFast";
import { HomeScene } from "db://assets/Scripts/Scenes/HomeScene"; import { HomeScene } from "db://assets/Scripts/Scenes/HomeScene";
import GameMgr from "../GameMgr"; import GameMgr from "../GameMgr";
import store from "../store/store"; import store from "../store/store";
import { MainGame } from "../Scenes/MainGame/MainGame"; import { MainGame } from "../Scenes/MainGame/MainGame";
import { LOG_TYPE, sendLog } from "../Utils/WebNet/WebNet";
const {ccclass, property} = _decorator; const {ccclass, property} = _decorator;
...@@ -15,23 +14,25 @@ export default class NoPrizePanel extends Panel { ...@@ -15,23 +14,25 @@ export default class NoPrizePanel extends Panel {
static skin = "NoPrizePanel"; static skin = "NoPrizePanel";
static group = "NoPrizePanel"; static group = "NoPrizePanel";
@property(Node) @property(Node) closeBtn: Node = null;
close: Node = null!; @property(Node) againBtn: Node = null;
@property(Node) rankBtn: Node = null;
@property(Label) scoreLabel: Label = null;
@property(Label) highestLabel: Label = null;
@property(Node)
again: Node = null!;
async start() { async start() {
sendLog(LOG_TYPE.EXPOSURE, 5); this.closeBtn.on(Button.EventType.CLICK, this.onClose, this);
this.againBtn.on(Button.EventType.CLICK, this.clickAgain, this);
this.rankBtn.on(Button.EventType.CLICK, this.clickRank, this);
}
this.close.on(Button.EventType.CLICK, this.onClose, this); clickRank = () => {
this.again.on(Button.EventType.CLICK, this.clickAgain, this); this.hidePanel();
changeScene(HomeScene);
} }
/**
* 返回首页
*/
onClose = () => { onClose = () => {
changeScene(HomeScene); changeScene(HomeScene);
this.hidePanel(); this.hidePanel();
...@@ -39,8 +40,6 @@ export default class NoPrizePanel extends Panel { ...@@ -39,8 +40,6 @@ export default class NoPrizePanel extends Panel {
clickAgain = async () => { clickAgain = async () => {
sendLog(LOG_TYPE.CLICK, 5);
this.hidePanel(); this.hidePanel();
if (store.homeInfo.leftTimes <= 0) { if (store.homeInfo.leftTimes <= 0) {
changeScene(HomeScene); changeScene(HomeScene);
......
...@@ -3,8 +3,6 @@ import { _decorator, Button, Label, Node, Sprite } from "cc"; ...@@ -3,8 +3,6 @@ import { _decorator, Button, Label, Node, Sprite } from "cc";
import { changeScene } from "db://assets/Module/UIFast"; import { changeScene } from "db://assets/Module/UIFast";
import { HomeScene } from "db://assets/Scripts/Scenes/HomeScene"; import { HomeScene } from "db://assets/Scripts/Scenes/HomeScene";
import { strFormat } from "../Utils/Utils"; import { strFormat } from "../Utils/Utils";
import { PrizeScene } from "../Scenes/PrizeScene/PrizeScene";
import { LOG_TYPE, sendLog } from "../Utils/WebNet/WebNet";
const {ccclass, property} = _decorator; const {ccclass, property} = _decorator;
...@@ -14,46 +12,48 @@ export default class PrizePanel extends Panel { ...@@ -14,46 +12,48 @@ export default class PrizePanel extends Panel {
static skin = "PrizePanel"; static skin = "PrizePanel";
static group = "PrizePanel"; static group = "PrizePanel";
@property(Node) @property(Node) closeBtn: Node = null;
close: Node = null!; @property(Node) againBtn: Node = null;
@property(Node) viewBtn: Node = null;
@property(Node) rankBtn: Node = null;
@property(Label) scoreLabel: Label = null;
@property(Label) highestLabel: Label = null;
@property(Node)
get: Node = null!;
@property(Label) @property(Label) prizeName: Label = null;
prizeName: Label = null!;
@property(Sprite) @property(Sprite) img: Sprite = null;
img: Sprite = null!;
async start() { onLoad() {
this.closeBtn.on(Button.EventType.CLICK, this.onClose, this);
sendLog(LOG_TYPE.EXPOSURE, 4); this.viewBtn.on(Button.EventType.CLICK, this.clickView, this);
this.againBtn.on(Button.EventType.CLICK, this.clickAgain, this);
this.rankBtn.on(Button.EventType.CLICK, this.clickRank, this);
}
this.close.on(Button.EventType.CLICK, this.onClose, this); async start() {
this.get.on(Button.EventType.CLICK, this.clickGet, this);
const {optionName, optionImg} = this.data; const {optionName, optionImg} = this.data;
this.prizeName.string = strFormat( this.prizeName.string = strFormat(optionName, 20);
optionName,
20
);
this.img.spriteFrame = optionImg; this.img.spriteFrame = optionImg;
} }
clickGet = () => { clickView = () => {
this.hidePanel();
}
sendLog(LOG_TYPE.CLICK, 4); clickAgain = () => {
this.hidePanel();
changeScene(HomeScene);
}
clickRank = () => {
this.hidePanel(); this.hidePanel();
changeScene(PrizeScene); changeScene(HomeScene);
} }
/**
* 返回首页
*/
onClose = () => { onClose = () => {
changeScene(HomeScene); changeScene(HomeScene);
this.hidePanel(); this.hidePanel();
......
...@@ -45,7 +45,6 @@ export class MainGame extends Scene { ...@@ -45,7 +45,6 @@ export class MainGame extends Scene {
@property({type: Node, group: "UI"}) guideLayer: Node = null; @property({type: Node, group: "UI"}) guideLayer: Node = null;
_score: number = 0; _score: number = 0;
set score(value: number) { set score(value: number) {
this._score = value; this._score = value;
...@@ -109,11 +108,15 @@ export class MainGame extends Scene { ...@@ -109,11 +108,15 @@ export class MainGame extends Scene {
onTriggerEnter(event: ITriggerEvent) { onTriggerEnter(event: ITriggerEvent) {
const {otherCollider, selfCollider} = event; const {otherCollider, selfCollider} = event;
if (otherCollider.node.name == "光幕") { const otherName = otherCollider.node.name;
if (otherName == "光幕") {
otherCollider.node.active = false;
const color = randomManColor(); const color = randomManColor();
this.changeMainColor(color); this.changeMainColor(color);
} else if (otherName == "圆环") {
otherCollider.node.active = false;
this.score += 10;
} }
} }
...@@ -187,7 +190,16 @@ export class MainGame extends Scene { ...@@ -187,7 +190,16 @@ export class MainGame extends Scene {
this.playerConstraint.pivotB = v3(0, constraintY, 0); this.playerConstraint.pivotB = v3(0, constraintY, 0);
this.playerConstraint.enabled = true; this.playerConstraint.enabled = true;
this.playerBody.setLinearVelocity(v3()); const velocityMultiplier = 0.1;
const linear = v3();
this.playerBody.getLinearVelocity(linear);
linear.multiplyScalar(velocityMultiplier);
this.playerBody.setLinearVelocity(linear);
const angular = v3();
this.playerBody.getAngularVelocity(angular);
angular.multiplyScalar(velocityMultiplier);
this.playerBody.setAngularVelocity(v3()); this.playerBody.setAngularVelocity(v3());
} }
...@@ -259,7 +271,16 @@ export class MainGame extends Scene { ...@@ -259,7 +271,16 @@ export class MainGame extends Scene {
} }
} }
maxZ = 0;
update(dt: number) { update(dt: number) {
const pPos = this.player.position;
const pz = Math.abs(Math.round(pPos.z));
if (pz > this.maxZ) {
this.score += pz - this.maxZ;
this.maxZ = pz;
}
this.checkFrame++; this.checkFrame++;
// 检测是否需要生成墙 // 检测是否需要生成墙
......
import { _decorator, Component, instantiate, Node, Prefab } from 'cc'; import { _decorator, Component, instantiate, lerp, Node, Prefab } from 'cc';
const {ccclass, property} = _decorator; const {ccclass, property} = _decorator;
...@@ -45,10 +45,17 @@ export class Wall extends Component { ...@@ -45,10 +45,17 @@ export class Wall extends Component {
} }
ring: Node = null; ring: Node = null;
createRing() { createRing() {
this.ring = instantiate(this.ringPrefab); this.ring = instantiate(this.ringPrefab);
this.node.addChild(this.ring); this.node.addChild(this.ring);
this.ring.setScale(this.dH, this.dH, this.dH);
const scale = lerp(this.dH * 0.4, this.dH * 0.75, Math.random());
this.ring.setScale(scale, scale);
const dyHalf = (this.dH - scale) / 2;
const y = lerp(-dyHalf, dyHalf, Math.random());
this.ring.setPosition(0, y);
} }
} }
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"ver": "1.1.50", "ver": "1.1.50",
"importer": "prefab", "importer": "prefab",
"imported": true, "imported": true,
"uuid": "fbf9fc8e-721b-496f-bb41-5ef15b63b5c3", "uuid": "b6ce0806-8608-4249-a153-720d6ed0bd0f",
"files": [ "files": [
".json" ".json"
], ],
......
{"ver":"1.0.8","importer":"auto-atlas","imported":true,"uuid":"46b898ac-ad0a-4679-813d-992cf2b863f6","files":[".json"],"subMetas":{},"userData":{"maxWidth":2048,"maxHeight":2048,"padding":2,"allowRotation":true,"forceSquared":false,"powerOfTwo":false,"algorithm":"MaxRects","format":"png","quality":80,"contourBleed":true,"paddingBleed":true,"filterUnused":false,"removeTextureInBundle":false,"removeImageInBundle":false,"removeSpriteAtlasInBundle":false,"compressSettings":{},"textureSetting":{"wrapModeS":"repeat","wrapModeT":"repeat","minfilter":"linear","magfilter":"linear","mipfilter":"none","anisotropy":0}}}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"ver": "1.0.27", "ver": "1.0.27",
"importer": "image", "importer": "image",
"imported": true, "imported": true,
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762", "uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b",
"files": [ "files": [
".json", ".json",
".png" ".png"
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
"subMetas": { "subMetas": {
"6c48a": { "6c48a": {
"importer": "texture", "importer": "texture",
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a", "uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a",
"displayName": "开心收下", "displayName": "again",
"id": "6c48a", "id": "6c48a",
"name": "texture", "name": "texture",
"userData": { "userData": {
"wrapModeS": "clamp-to-edge", "wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge", "wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0c83a89d-47af-4c0f-b801-a08652cb6762", "imageUuidOrDatabaseUri": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b",
"isUuid": true, "isUuid": true,
"visible": false, "visible": false,
"minfilter": "linear", "minfilter": "linear",
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
}, },
"f9941": { "f9941": {
"importer": "sprite-frame", "importer": "sprite-frame",
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762@f9941", "uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@f9941",
"displayName": "开心收下", "displayName": "again",
"id": "f9941", "id": "f9941",
"name": "spriteFrame", "name": "spriteFrame",
"userData": { "userData": {
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 386, "width": 338,
"height": 85, "height": 101,
"rawWidth": 386, "rawWidth": 338,
"rawHeight": 85, "rawHeight": 101,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-193, -169,
-42.5, -50.5,
0, 0,
193, 169,
-42.5, -50.5,
0, 0,
-193, -169,
42.5, 50.5,
0, 0,
193, 169,
42.5, 50.5,
0 0
], ],
"indexes": [ "indexes": [
...@@ -84,12 +84,12 @@ ...@@ -84,12 +84,12 @@
], ],
"uv": [ "uv": [
0, 0,
85, 101,
386, 338,
85, 101,
0, 0,
0, 0,
386, 338,
0 0
], ],
"nuv": [ "nuv": [
...@@ -103,18 +103,18 @@ ...@@ -103,18 +103,18 @@
1 1
], ],
"minPos": [ "minPos": [
-193, -169,
-42.5, -50.5,
0 0
], ],
"maxPos": [ "maxPos": [
193, 169,
42.5, 50.5,
0 0
] ]
}, },
"isUuid": true, "isUuid": true,
"imageUuidOrDatabaseUri": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a", "imageUuidOrDatabaseUri": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a",
"atlasUuid": "" "atlasUuid": ""
}, },
"ver": "1.0.12", "ver": "1.0.12",
...@@ -129,6 +129,6 @@ ...@@ -129,6 +129,6 @@
"type": "sprite-frame", "type": "sprite-frame",
"hasAlpha": true, "hasAlpha": true,
"fixAlphaTransparencyArtifacts": false, "fixAlphaTransparencyArtifacts": false,
"redirect": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a" "redirect": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a"
} }
} }
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 780, "width": 625,
"height": 526, "height": 1114,
"rawWidth": 780, "rawWidth": 625,
"rawHeight": 526, "rawHeight": 1114,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-390, -312.5,
-263, -557,
0, 0,
390, 312.5,
-263, -557,
0, 0,
-390, -312.5,
263, 557,
0, 0,
390, 312.5,
263, 557,
0 0
], ],
"indexes": [ "indexes": [
...@@ -84,12 +84,12 @@ ...@@ -84,12 +84,12 @@
], ],
"uv": [ "uv": [
0, 0,
526, 1114,
780, 625,
526, 1114,
0, 0,
0, 0,
780, 625,
0 0
], ],
"nuv": [ "nuv": [
...@@ -103,13 +103,13 @@ ...@@ -103,13 +103,13 @@
1 1
], ],
"minPos": [ "minPos": [
-390, -312.5,
-263, -557,
0 0
], ],
"maxPos": [ "maxPos": [
390, 312.5,
263, 557,
0 0
] ]
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"ver": "1.0.27", "ver": "1.0.27",
"importer": "image", "importer": "image",
"imported": true, "imported": true,
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad", "uuid": "316f091a-9765-45a5-b4ad-96bc41e52976",
"files": [ "files": [
".json", ".json",
".png" ".png"
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
"subMetas": { "subMetas": {
"6c48a": { "6c48a": {
"importer": "texture", "importer": "texture",
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@6c48a", "uuid": "316f091a-9765-45a5-b4ad-96bc41e52976@6c48a",
"displayName": "再试一次", "displayName": "rank",
"id": "6c48a", "id": "6c48a",
"name": "texture", "name": "texture",
"userData": { "userData": {
"wrapModeS": "clamp-to-edge", "wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge", "wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad", "imageUuidOrDatabaseUri": "316f091a-9765-45a5-b4ad-96bc41e52976",
"isUuid": true, "isUuid": true,
"visible": false, "visible": false,
"minfilter": "linear", "minfilter": "linear",
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
}, },
"f9941": { "f9941": {
"importer": "sprite-frame", "importer": "sprite-frame",
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@f9941", "uuid": "316f091a-9765-45a5-b4ad-96bc41e52976@f9941",
"displayName": "再试一次", "displayName": "rank",
"id": "f9941", "id": "f9941",
"name": "spriteFrame", "name": "spriteFrame",
"userData": { "userData": {
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 386, "width": 338,
"height": 85, "height": 101,
"rawWidth": 386, "rawWidth": 338,
"rawHeight": 85, "rawHeight": 101,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-193, -169,
-42.5, -50.5,
0, 0,
193, 169,
-42.5, -50.5,
0, 0,
-193, -169,
42.5, 50.5,
0, 0,
193, 169,
42.5, 50.5,
0 0
], ],
"indexes": [ "indexes": [
...@@ -84,12 +84,12 @@ ...@@ -84,12 +84,12 @@
], ],
"uv": [ "uv": [
0, 0,
85, 101,
386, 338,
85, 101,
0, 0,
0, 0,
386, 338,
0 0
], ],
"nuv": [ "nuv": [
...@@ -103,18 +103,18 @@ ...@@ -103,18 +103,18 @@
1 1
], ],
"minPos": [ "minPos": [
-193, -169,
-42.5, -50.5,
0 0
], ],
"maxPos": [ "maxPos": [
193, 169,
42.5, 50.5,
0 0
] ]
}, },
"isUuid": true, "isUuid": true,
"imageUuidOrDatabaseUri": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@6c48a", "imageUuidOrDatabaseUri": "316f091a-9765-45a5-b4ad-96bc41e52976@6c48a",
"atlasUuid": "" "atlasUuid": ""
}, },
"ver": "1.0.12", "ver": "1.0.12",
...@@ -129,6 +129,6 @@ ...@@ -129,6 +129,6 @@
"type": "sprite-frame", "type": "sprite-frame",
"hasAlpha": true, "hasAlpha": true,
"fixAlphaTransparencyArtifacts": false, "fixAlphaTransparencyArtifacts": false,
"redirect": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@6c48a" "redirect": "316f091a-9765-45a5-b4ad-96bc41e52976@6c48a"
} }
} }
{
"__type__": "cc.SpriteAtlas"
}
{
"ver": "1.0.8",
"importer": "auto-atlas",
"imported": true,
"uuid": "7aa7e64f-1229-4ae1-a166-42114c95253a",
"files": [
".json"
],
"subMetas": {},
"userData": {
"maxWidth": 2048,
"maxHeight": 2048,
"padding": 2,
"allowRotation": true,
"forceSquared": false,
"powerOfTwo": false,
"algorithm": "MaxRects",
"format": "png",
"quality": 80,
"contourBleed": true,
"paddingBleed": true,
"filterUnused": false,
"removeTextureInBundle": false,
"removeImageInBundle": false,
"removeSpriteAtlasInBundle": false,
"compressSettings": {},
"textureSetting": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
}
}
}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"ver": "1.0.27", "ver": "1.0.27",
"importer": "image", "importer": "image",
"imported": true, "imported": true,
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d", "uuid": "9a202596-489e-427a-9fce-ae1ac2345d26",
"files": [ "files": [
".json", ".json",
".png" ".png"
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
"subMetas": { "subMetas": {
"6c48a": { "6c48a": {
"importer": "texture", "importer": "texture",
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a", "uuid": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a",
"displayName": "PrizeBg", "displayName": "again",
"id": "6c48a", "id": "6c48a",
"name": "texture", "name": "texture",
"userData": { "userData": {
"wrapModeS": "clamp-to-edge", "wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge", "wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "779ee829-426b-463d-8e9d-39f41010bb7d", "imageUuidOrDatabaseUri": "9a202596-489e-427a-9fce-ae1ac2345d26",
"isUuid": true, "isUuid": true,
"visible": false, "visible": false,
"minfilter": "linear", "minfilter": "linear",
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
}, },
"f9941": { "f9941": {
"importer": "sprite-frame", "importer": "sprite-frame",
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d@f9941", "uuid": "9a202596-489e-427a-9fce-ae1ac2345d26@f9941",
"displayName": "PrizeBg", "displayName": "again",
"id": "f9941", "id": "f9941",
"name": "spriteFrame", "name": "spriteFrame",
"userData": { "userData": {
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 533, "width": 187,
"height": 626, "height": 81,
"rawWidth": 533, "rawWidth": 187,
"rawHeight": 626, "rawHeight": 81,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-266.5, -93.5,
-313, -40.5,
0, 0,
266.5, 93.5,
-313, -40.5,
0, 0,
-266.5, -93.5,
313, 40.5,
0, 0,
266.5, 93.5,
313, 40.5,
0 0
], ],
"indexes": [ "indexes": [
...@@ -84,12 +84,12 @@ ...@@ -84,12 +84,12 @@
], ],
"uv": [ "uv": [
0, 0,
626, 81,
533, 187,
626, 81,
0, 0,
0, 0,
533, 187,
0 0
], ],
"nuv": [ "nuv": [
...@@ -103,18 +103,18 @@ ...@@ -103,18 +103,18 @@
1 1
], ],
"minPos": [ "minPos": [
-266.5, -93.5,
-313, -40.5,
0 0
], ],
"maxPos": [ "maxPos": [
266.5, 93.5,
313, 40.5,
0 0
] ]
}, },
"isUuid": true, "isUuid": true,
"imageUuidOrDatabaseUri": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a", "imageUuidOrDatabaseUri": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a",
"atlasUuid": "" "atlasUuid": ""
}, },
"ver": "1.0.12", "ver": "1.0.12",
...@@ -129,6 +129,6 @@ ...@@ -129,6 +129,6 @@
"type": "sprite-frame", "type": "sprite-frame",
"hasAlpha": true, "hasAlpha": true,
"fixAlphaTransparencyArtifacts": false, "fixAlphaTransparencyArtifacts": false,
"redirect": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a" "redirect": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a"
} }
} }
...@@ -46,10 +46,10 @@ ...@@ -46,10 +46,10 @@
"offsetY": 0, "offsetY": 0,
"trimX": 0, "trimX": 0,
"trimY": 0, "trimY": 0,
"width": 596, "width": 625,
"height": 814, "height": 1170,
"rawWidth": 596, "rawWidth": 625,
"rawHeight": 814, "rawHeight": 1170,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 0, "borderLeft": 0,
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
"meshType": 0, "meshType": 0,
"vertices": { "vertices": {
"rawPosition": [ "rawPosition": [
-298, -312.5,
-407, -585,
0, 0,
298, 312.5,
-407, -585,
0, 0,
-298, -312.5,
407, 585,
0, 0,
298, 312.5,
407, 585,
0 0
], ],
"indexes": [ "indexes": [
...@@ -84,12 +84,12 @@ ...@@ -84,12 +84,12 @@
], ],
"uv": [ "uv": [
0, 0,
814, 1170,
596, 625,
814, 1170,
0, 0,
0, 0,
596, 625,
0 0
], ],
"nuv": [ "nuv": [
...@@ -103,13 +103,13 @@ ...@@ -103,13 +103,13 @@
1 1
], ],
"minPos": [ "minPos": [
-298, -312.5,
-407, -585,
0 0
], ],
"maxPos": [ "maxPos": [
298, 312.5,
407, 585,
0 0
] ]
}, },
......
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "58719ea8-7673-4345-bc5b-54e4ad5f03ea",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "58719ea8-7673-4345-bc5b-54e4ad5f03ea@6c48a",
"displayName": "light",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "58719ea8-7673-4345-bc5b-54e4ad5f03ea",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "58719ea8-7673-4345-bc5b-54e4ad5f03ea@f9941",
"displayName": "light",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 750,
"height": 1175,
"rawWidth": 750,
"rawHeight": 1175,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-375,
-587.5,
0,
375,
-587.5,
0,
-375,
587.5,
0,
375,
587.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
1175,
750,
1175,
0,
0,
750,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-375,
-587.5,
0
],
"maxPos": [
375,
587.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "58719ea8-7673-4345-bc5b-54e4ad5f03ea@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "58719ea8-7673-4345-bc5b-54e4ad5f03ea@6c48a"
}
}
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "c73c10a1-3124-4e8f-863e-868d4febb1d2",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "c73c10a1-3124-4e8f-863e-868d4febb1d2@6c48a",
"displayName": "prizeMask",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "c73c10a1-3124-4e8f-863e-868d4febb1d2",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "c73c10a1-3124-4e8f-863e-868d4febb1d2@f9941",
"displayName": "prizeMask",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 211,
"height": 211,
"rawWidth": 211,
"rawHeight": 211,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-105.5,
-105.5,
0,
105.5,
-105.5,
0,
-105.5,
105.5,
0,
105.5,
105.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
211,
211,
211,
0,
0,
211,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-105.5,
-105.5,
0
],
"maxPos": [
105.5,
105.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "c73c10a1-3124-4e8f-863e-868d4febb1d2@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "c73c10a1-3124-4e8f-863e-868d4febb1d2@6c48a"
}
}
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "90aa66e8-a9a1-485a-8aa3-431357ea6a31",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "90aa66e8-a9a1-485a-8aa3-431357ea6a31@6c48a",
"displayName": "rank",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "90aa66e8-a9a1-485a-8aa3-431357ea6a31",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "90aa66e8-a9a1-485a-8aa3-431357ea6a31@f9941",
"displayName": "rank",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 187,
"height": 81,
"rawWidth": 187,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-93.5,
-40.5,
0,
93.5,
-40.5,
0,
-93.5,
40.5,
0,
93.5,
40.5,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
81,
187,
81,
0,
0,
187,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-93.5,
-40.5,
0
],
"maxPos": [
93.5,
40.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "90aa66e8-a9a1-485a-8aa3-431357ea6a31@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "90aa66e8-a9a1-485a-8aa3-431357ea6a31@6c48a"
}
}
{
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "719c33bf-8621-4ddb-9453-c6eebe73d0ce",
"files": [
".json",
".png"
],
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "719c33bf-8621-4ddb-9453-c6eebe73d0ce@6c48a",
"displayName": "view",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "719c33bf-8621-4ddb-9453-c6eebe73d0ce",
"isUuid": true,
"visible": false,
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"f9941": {
"importer": "sprite-frame",
"uuid": "719c33bf-8621-4ddb-9453-c6eebe73d0ce@f9941",
"displayName": "view",
"id": "f9941",
"name": "spriteFrame",
"userData": {
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 385,
"height": 134,
"rawWidth": 385,
"rawHeight": 134,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"packable": true,
"pixelsToUnit": 100,
"pivotX": 0.5,
"pivotY": 0.5,
"meshType": 0,
"vertices": {
"rawPosition": [
-192.5,
-67,
0,
192.5,
-67,
0,
-192.5,
67,
0,
192.5,
67,
0
],
"indexes": [
0,
1,
2,
2,
1,
3
],
"uv": [
0,
134,
385,
134,
0,
0,
385,
0
],
"nuv": [
0,
0,
1,
0,
0,
1,
1,
1
],
"minPos": [
-192.5,
-67,
0
],
"maxPos": [
192.5,
67,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "719c33bf-8621-4ddb-9453-c6eebe73d0ce@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "719c33bf-8621-4ddb-9453-c6eebe73d0ce@6c48a"
}
}
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1ab124b8-f8b9-4835-b9f4-3d649bb94c01",
"files": [],
"subMetas": {},
"userData": {}
}
{
"ver": "1.0.1",
"importer": "ttf-font",
"imported": true,
"uuid": "2c64cd9b-a68c-4de0-b137-694dc03e1edf",
"files": [
".json",
"CKTKingkongNum.ttf"
],
"subMetas": {},
"userData": {}
}
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