Commit 4ff64cee authored by haiyoucuv's avatar haiyoucuv

GuideLayer

parent 14d59e9a
......@@ -135,7 +135,7 @@
"__prefab": {
"__id__": 6
},
"_group": 1,
"_group": 16,
"_type": 2,
"_mass": 1,
"_allowSleep": true,
......@@ -173,7 +173,7 @@
"__id__": 8
},
"_material": null,
"_isTrigger": false,
"_isTrigger": true,
"_center": {
"__type__": "cc.Vec3",
"x": 0,
......
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 { HomeScene } from "db://assets/Scripts/Scenes/HomeScene";
import GameMgr from "../GameMgr";
import store from "../store/store";
import { MainGame } from "../Scenes/MainGame/MainGame";
import { LOG_TYPE, sendLog } from "../Utils/WebNet/WebNet";
const {ccclass, property} = _decorator;
......@@ -15,23 +14,25 @@ export default class NoPrizePanel extends Panel {
static skin = "NoPrizePanel";
static group = "NoPrizePanel";
@property(Node)
close: Node = null!;
@property(Node) closeBtn: 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() {
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);
this.again.on(Button.EventType.CLICK, this.clickAgain, this);
clickRank = () => {
this.hidePanel();
changeScene(HomeScene);
}
/**
* 返回首页
*/
onClose = () => {
changeScene(HomeScene);
this.hidePanel();
......@@ -39,8 +40,6 @@ export default class NoPrizePanel extends Panel {
clickAgain = async () => {
sendLog(LOG_TYPE.CLICK, 5);
this.hidePanel();
if (store.homeInfo.leftTimes <= 0) {
changeScene(HomeScene);
......
......@@ -3,8 +3,6 @@ import { _decorator, Button, Label, Node, Sprite } from "cc";
import { changeScene } from "db://assets/Module/UIFast";
import { HomeScene } from "db://assets/Scripts/Scenes/HomeScene";
import { strFormat } from "../Utils/Utils";
import { PrizeScene } from "../Scenes/PrizeScene/PrizeScene";
import { LOG_TYPE, sendLog } from "../Utils/WebNet/WebNet";
const {ccclass, property} = _decorator;
......@@ -14,46 +12,48 @@ export default class PrizePanel extends Panel {
static skin = "PrizePanel";
static group = "PrizePanel";
@property(Node)
close: Node = null!;
@property(Node) closeBtn: 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)
prizeName: Label = null!;
@property(Label) prizeName: Label = null;
@property(Sprite)
img: Sprite = null!;
@property(Sprite) img: Sprite = null;
async start() {
sendLog(LOG_TYPE.EXPOSURE, 4);
onLoad() {
this.closeBtn.on(Button.EventType.CLICK, this.onClose, this);
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);
this.get.on(Button.EventType.CLICK, this.clickGet, this);
async start() {
const {optionName, optionImg} = this.data;
this.prizeName.string = strFormat(
optionName,
20
);
this.prizeName.string = strFormat(optionName, 20);
this.img.spriteFrame = optionImg;
}
clickGet = () => {
clickView = () => {
this.hidePanel();
}
sendLog(LOG_TYPE.CLICK, 4);
clickAgain = () => {
this.hidePanel();
changeScene(HomeScene);
}
clickRank = () => {
this.hidePanel();
changeScene(PrizeScene);
changeScene(HomeScene);
}
/**
* 返回首页
*/
onClose = () => {
changeScene(HomeScene);
this.hidePanel();
......
......@@ -45,7 +45,6 @@ export class MainGame extends Scene {
@property({type: Node, group: "UI"}) guideLayer: Node = null;
_score: number = 0;
set score(value: number) {
this._score = value;
......@@ -109,11 +108,15 @@ export class MainGame extends Scene {
onTriggerEnter(event: ITriggerEvent) {
const {otherCollider, selfCollider} = event;
if (otherCollider.node.name == "光幕") {
const otherName = otherCollider.node.name;
if (otherName == "光幕") {
otherCollider.node.active = false;
const color = randomManColor();
this.changeMainColor(color);
} else if (otherName == "圆环") {
otherCollider.node.active = false;
this.score += 10;
}
}
......@@ -187,7 +190,16 @@ export class MainGame extends Scene {
this.playerConstraint.pivotB = v3(0, constraintY, 0);
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());
}
......@@ -259,7 +271,16 @@ export class MainGame extends Scene {
}
}
maxZ = 0;
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++;
// 检测是否需要生成墙
......
import { _decorator, Component, instantiate, Node, Prefab } from 'cc';
import { _decorator, Component, instantiate, lerp, Node, Prefab } from 'cc';
const {ccclass, property} = _decorator;
......@@ -45,10 +45,17 @@ export class Wall extends Component {
}
ring: Node = null;
createRing() {
this.ring = instantiate(this.ringPrefab);
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 @@
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "fbf9fc8e-721b-496f-bb41-5ef15b63b5c3",
"uuid": "b6ce0806-8608-4249-a153-720d6ed0bd0f",
"files": [
".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 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762",
"uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b",
"files": [
".json",
".png"
......@@ -10,14 +10,14 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a",
"displayName": "开心收下",
"uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a",
"displayName": "again",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "0c83a89d-47af-4c0f-b801-a08652cb6762",
"imageUuidOrDatabaseUri": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b",
"isUuid": true,
"visible": false,
"minfilter": "linear",
......@@ -34,8 +34,8 @@
},
"f9941": {
"importer": "sprite-frame",
"uuid": "0c83a89d-47af-4c0f-b801-a08652cb6762@f9941",
"displayName": "开心收下",
"uuid": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@f9941",
"displayName": "again",
"id": "f9941",
"name": "spriteFrame",
"userData": {
......@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 386,
"height": 85,
"rawWidth": 386,
"rawHeight": 85,
"width": 338,
"height": 101,
"rawWidth": 338,
"rawHeight": 101,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-193,
-42.5,
-169,
-50.5,
0,
193,
-42.5,
169,
-50.5,
0,
-193,
42.5,
-169,
50.5,
0,
193,
42.5,
169,
50.5,
0
],
"indexes": [
......@@ -84,12 +84,12 @@
],
"uv": [
0,
85,
386,
85,
101,
338,
101,
0,
0,
386,
338,
0
],
"nuv": [
......@@ -103,18 +103,18 @@
1
],
"minPos": [
-193,
-42.5,
-169,
-50.5,
0
],
"maxPos": [
193,
42.5,
169,
50.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a",
"imageUuidOrDatabaseUri": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
......@@ -129,6 +129,6 @@
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "0c83a89d-47af-4c0f-b801-a08652cb6762@6c48a"
"redirect": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@6c48a"
}
}
......@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 780,
"height": 526,
"rawWidth": 780,
"rawHeight": 526,
"width": 625,
"height": 1114,
"rawWidth": 625,
"rawHeight": 1114,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-390,
-263,
-312.5,
-557,
0,
390,
-263,
312.5,
-557,
0,
-390,
263,
-312.5,
557,
0,
390,
263,
312.5,
557,
0
],
"indexes": [
......@@ -84,12 +84,12 @@
],
"uv": [
0,
526,
780,
526,
1114,
625,
1114,
0,
0,
780,
625,
0
],
"nuv": [
......@@ -103,13 +103,13 @@
1
],
"minPos": [
-390,
-263,
-312.5,
-557,
0
],
"maxPos": [
390,
263,
312.5,
557,
0
]
},
......
......@@ -2,7 +2,7 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad",
"uuid": "316f091a-9765-45a5-b4ad-96bc41e52976",
"files": [
".json",
".png"
......@@ -10,14 +10,14 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@6c48a",
"displayName": "再试一次",
"uuid": "316f091a-9765-45a5-b4ad-96bc41e52976@6c48a",
"displayName": "rank",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad",
"imageUuidOrDatabaseUri": "316f091a-9765-45a5-b4ad-96bc41e52976",
"isUuid": true,
"visible": false,
"minfilter": "linear",
......@@ -34,8 +34,8 @@
},
"f9941": {
"importer": "sprite-frame",
"uuid": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@f9941",
"displayName": "再试一次",
"uuid": "316f091a-9765-45a5-b4ad-96bc41e52976@f9941",
"displayName": "rank",
"id": "f9941",
"name": "spriteFrame",
"userData": {
......@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 386,
"height": 85,
"rawWidth": 386,
"rawHeight": 85,
"width": 338,
"height": 101,
"rawWidth": 338,
"rawHeight": 101,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-193,
-42.5,
-169,
-50.5,
0,
193,
-42.5,
169,
-50.5,
0,
-193,
42.5,
-169,
50.5,
0,
193,
42.5,
169,
50.5,
0
],
"indexes": [
......@@ -84,12 +84,12 @@
],
"uv": [
0,
85,
386,
85,
101,
338,
101,
0,
0,
386,
338,
0
],
"nuv": [
......@@ -103,18 +103,18 @@
1
],
"minPos": [
-193,
-42.5,
-169,
-50.5,
0
],
"maxPos": [
193,
42.5,
169,
50.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@6c48a",
"imageUuidOrDatabaseUri": "316f091a-9765-45a5-b4ad-96bc41e52976@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
......@@ -129,6 +129,6 @@
"type": "sprite-frame",
"hasAlpha": true,
"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 @@
"ver": "1.0.27",
"importer": "image",
"imported": true,
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d",
"uuid": "9a202596-489e-427a-9fce-ae1ac2345d26",
"files": [
".json",
".png"
......@@ -10,14 +10,14 @@
"subMetas": {
"6c48a": {
"importer": "texture",
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a",
"displayName": "PrizeBg",
"uuid": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a",
"displayName": "again",
"id": "6c48a",
"name": "texture",
"userData": {
"wrapModeS": "clamp-to-edge",
"wrapModeT": "clamp-to-edge",
"imageUuidOrDatabaseUri": "779ee829-426b-463d-8e9d-39f41010bb7d",
"imageUuidOrDatabaseUri": "9a202596-489e-427a-9fce-ae1ac2345d26",
"isUuid": true,
"visible": false,
"minfilter": "linear",
......@@ -34,8 +34,8 @@
},
"f9941": {
"importer": "sprite-frame",
"uuid": "779ee829-426b-463d-8e9d-39f41010bb7d@f9941",
"displayName": "PrizeBg",
"uuid": "9a202596-489e-427a-9fce-ae1ac2345d26@f9941",
"displayName": "again",
"id": "f9941",
"name": "spriteFrame",
"userData": {
......@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 533,
"height": 626,
"rawWidth": 533,
"rawHeight": 626,
"width": 187,
"height": 81,
"rawWidth": 187,
"rawHeight": 81,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-266.5,
-313,
-93.5,
-40.5,
0,
266.5,
-313,
93.5,
-40.5,
0,
-266.5,
313,
-93.5,
40.5,
0,
266.5,
313,
93.5,
40.5,
0
],
"indexes": [
......@@ -84,12 +84,12 @@
],
"uv": [
0,
626,
533,
626,
81,
187,
81,
0,
0,
533,
187,
0
],
"nuv": [
......@@ -103,18 +103,18 @@
1
],
"minPos": [
-266.5,
-313,
-93.5,
-40.5,
0
],
"maxPos": [
266.5,
313,
93.5,
40.5,
0
]
},
"isUuid": true,
"imageUuidOrDatabaseUri": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a",
"imageUuidOrDatabaseUri": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a",
"atlasUuid": ""
},
"ver": "1.0.12",
......@@ -129,6 +129,6 @@
"type": "sprite-frame",
"hasAlpha": true,
"fixAlphaTransparencyArtifacts": false,
"redirect": "779ee829-426b-463d-8e9d-39f41010bb7d@6c48a"
"redirect": "9a202596-489e-427a-9fce-ae1ac2345d26@6c48a"
}
}
......@@ -46,10 +46,10 @@
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 596,
"height": 814,
"rawWidth": 596,
"rawHeight": 814,
"width": 625,
"height": 1170,
"rawWidth": 625,
"rawHeight": 1170,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
......@@ -61,17 +61,17 @@
"meshType": 0,
"vertices": {
"rawPosition": [
-298,
-407,
-312.5,
-585,
0,
298,
-407,
312.5,
-585,
0,
-298,
407,
-312.5,
585,
0,
298,
407,
312.5,
585,
0
],
"indexes": [
......@@ -84,12 +84,12 @@
],
"uv": [
0,
814,
596,
814,
1170,
625,
1170,
0,
0,
596,
625,
0
],
"nuv": [
......@@ -103,13 +103,13 @@
1
],
"minPos": [
-298,
-407,
-312.5,
-585,
0
],
"maxPos": [
298,
407,
312.5,
585,
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