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);
}
}
......@@ -25,20 +25,29 @@
"__id__": 10
},
{
"__id__": 20
"__id__": 16
},
{
"__id__": 22
},
{
"__id__": 32
},
{
"__id__": 42
}
],
"_active": true,
"_components": [
{
"__id__": 30
"__id__": 52
},
{
"__id__": 32
"__id__": 54
}
],
"_prefab": {
"__id__": 34
"__id__": 56
},
"_lpos": {
"__type__": "cc.Vec3",
......@@ -96,7 +105,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 87.22160000000008,
"y": 151.99199999999996,
"z": 0
},
"_lrot": {
......@@ -136,8 +145,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 520,
"height": 351
"width": 625,
"height": 1114
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -178,7 +187,7 @@
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
......@@ -209,9 +218,9 @@
},
"_alignFlags": 17,
"_target": null,
"_left": 77,
"_left": 72,
"_right": 0,
"_top": 549.2783999999999,
"_top": 103.00800000000001,
"_bottom": 409,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -246,7 +255,7 @@
},
{
"__type__": "cc.Node",
"_name": "again",
"_name": "score",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
......@@ -260,21 +269,345 @@
},
{
"__id__": 13
}
],
"_prefab": {
"__id__": 15
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -110.077,
"y": 338.768,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"_contentSize": {
"__type__": "cc.Size",
"width": 34.964996337890625,
"height": 81.585
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "acVcm/uElOPoLbcSK1VtZt"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 39,
"b": 92,
"a": 255
},
"_string": "0",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 64.75,
"_fontSize": 64.75,
"_fontFamily": "Arial",
"_lineHeight": 64.75,
"_overflow": 0,
"_enableWrapText": true,
"_font": {
"__uuid__": "2c64cd9b-a68c-4de0-b137-694dc03e1edf",
"__expectedType__": "cc.TTFFont"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "03rzfZG0VB3J3U9K/Agmw2"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "30efbc7P5Ls5xkig5kB8tJ",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "highest",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 17
},
{
"__id__": 15
"__id__": 19
}
],
"_prefab": {
"__id__": 21
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 103.5,
"y": 338.768,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 16
},
"_enabled": true,
"__prefab": {
"__id__": 18
},
"_contentSize": {
"__type__": "cc.Size",
"width": 34.964996337890625,
"height": 81.585
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d1xNaZ4aNELrh3XBzzaBSJ"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 16
},
"_enabled": true,
"__prefab": {
"__id__": 20
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 39,
"b": 92,
"a": 255
},
"_string": "0",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 64.75,
"_fontSize": 64.75,
"_fontFamily": "Arial",
"_lineHeight": 64.75,
"_overflow": 0,
"_enableWrapText": true,
"_font": {
"__uuid__": "2c64cd9b-a68c-4de0-b137-694dc03e1edf",
"__expectedType__": "cc.TTFFont"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "71PNVfhUdAQ683cDddVuGQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "56E6XTPD9Depr1JvrAskrN",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "again",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 23
},
{
"__id__": 17
"__id__": 25
},
{
"__id__": 27
},
{
"__id__": 29
}
],
"_prefab": {
"__id__": 19
"__id__": 31
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 28.241999999999962,
"y": -150,
"z": 0
},
"_lrot": {
......@@ -306,16 +639,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 22
},
"_enabled": true,
"__prefab": {
"__id__": 12
"__id__": 24
},
"_contentSize": {
"__type__": "cc.Size",
"width": 386,
"height": 85
"width": 338,
"height": 101
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -326,7 +659,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9bYmaTy+1B3rGt+DPMyasw"
"fileId": "4aGeaVqzBLNYfs+ZGdR2t6"
},
{
"__type__": "cc.Sprite",
......@@ -334,11 +667,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 22
},
"_enabled": true,
"__prefab": {
"__id__": 14
"__id__": 26
},
"_customMaterial": null,
"_srcBlendFactor": 2,
......@@ -351,7 +684,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "fab04db3-a010-4ef5-8a0e-a11c45f2b3ad@f9941",
"__uuid__": "6d22ec3f-e338-47d4-bd7f-9c4bd509864b@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
......@@ -371,7 +704,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "92qGPblINMBqojqOK+UhX6"
"fileId": "a0qHQmURJPjYtRnhesbgxc"
},
{
"__type__": "cc.Widget",
......@@ -379,17 +712,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 22
},
"_enabled": true,
"__prefab": {
"__id__": 16
"__id__": 28
},
"_alignFlags": 17,
"_target": null,
"_left": 177,
"_left": 302.5,
"_right": 0,
"_top": 741.258,
"_top": 911.5,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -407,7 +740,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1drXroHPVNwKwRSKD1be6H"
"fileId": "5e3+ZvxKtDI72ovoJViMrX"
},
{
"__type__": "cc.Button",
......@@ -415,11 +748,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 22
},
"_enabled": true,
"__prefab": {
"__id__": 18
"__id__": 30
},
"clickEvents": [],
"_interactable": true,
......@@ -458,14 +791,246 @@
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": {
"__id__": 10
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "72oDNcgaFKbbS7Dm38Lx5G"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "00sN5E2xdO6YuLpaziqjYr",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rank",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 33
},
{
"__id__": 35
},
{
"__id__": 37
},
{
"__id__": 39
}
],
"_prefab": {
"__id__": 41
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -266,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 34
},
"_contentSize": {
"__type__": "cc.Size",
"width": 338,
"height": 101
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8d+lg3bZZFdqGcGPjRFUpN"
"fileId": "abrILF461IHLR9vLSL+vMk"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 36
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "316f091a-9765-45a5-b4ad-96bc41e52976@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1vtn0gJtDMY783oJj91sa"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 38
},
"_alignFlags": 17,
"_target": null,
"_left": 109.5,
"_right": 0,
"_top": 1027.5,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aeo0UcWUZD4IxJ0HttJwip"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 32
},
"_enabled": true,
"__prefab": {
"__id__": 40
},
"clickEvents": [],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4a29p4UDxHaq06kHXiJU1z"
},
{
"__type__": "cc.PrefabInfo",
......@@ -475,7 +1040,7 @@
"asset": {
"__id__": 0
},
"fileId": "13Ai2uSQtOq5onxkoD06e9",
"fileId": "ddAPlQNrpOwYcWrjIyaaaX",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
......@@ -492,25 +1057,25 @@
"_active": true,
"_components": [
{
"__id__": 21
"__id__": 43
},
{
"__id__": 23
"__id__": 45
},
{
"__id__": 25
"__id__": 47
},
{
"__id__": 27
"__id__": 49
}
],
"_prefab": {
"__id__": 29
"__id__": 51
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -182.57119999999998,
"y": -518.508,
"z": 0
},
"_lrot": {
......@@ -542,16 +1107,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
"__id__": 42
},
"_enabled": true,
"__prefab": {
"__id__": 22
"__id__": 44
},
"_contentSize": {
"__type__": "cc.Size",
"width": 80,
"height": 80
"width": 79,
"height": 79
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -570,11 +1135,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
"__id__": 42
},
"_enabled": true,
"__prefab": {
"__id__": 24
"__id__": 46
},
"_customMaterial": null,
"_srcBlendFactor": 2,
......@@ -592,7 +1157,7 @@
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_sizeMode": 0,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
......@@ -615,17 +1180,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
"__id__": 42
},
"_enabled": true,
"__prefab": {
"__id__": 26
"__id__": 48
},
"_alignFlags": 17,
"_target": null,
"_left": 339,
"_left": 335.5,
"_right": 0,
"_top": 954.5712,
"_top": 1291.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -651,11 +1216,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 20
"__id__": 42
},
"_enabled": true,
"__prefab": {
"__id__": 28
"__id__": 50
},
"clickEvents": [],
"_interactable": true,
......@@ -724,7 +1289,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 31
"__id__": 53
},
"_contentSize": {
"__type__": "cc.Size",
......@@ -752,19 +1317,28 @@
},
"_enabled": true,
"__prefab": {
"__id__": 33
"__id__": 55
},
"close": {
"__id__": 20
"closeBtn": {
"__id__": 42
},
"again": {
"__id__": 10
"againBtn": {
"__id__": 22
},
"rankBtn": {
"__id__": 32
},
"scoreLabel": {
"__id__": 13
},
"highestLabel": {
"__id__": 19
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1rImH99pCppGrhh2detWe"
"fileId": "d3z0HY4ZZLnrnc1sPI5+GU"
},
{
"__type__": "cc.PrefabInfo",
......
......@@ -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"
}
}
......@@ -25,26 +25,41 @@
"__id__": 10
},
{
"__id__": 28
"__id__": 18
},
{
"__id__": 36
},
{
"__id__": 46
"__id__": 44
},
{
"__id__": 50
},
{
"__id__": 56
},
{
"__id__": 66
},
{
"__id__": 76
},
{
"__id__": 86
}
],
"_active": true,
"_components": [
{
"__id__": 56
"__id__": 96
},
{
"__id__": 58
"__id__": 98
}
],
"_prefab": {
"__id__": 60
"__id__": 100
},
"_lpos": {
"__type__": "cc.Vec3",
......@@ -77,7 +92,7 @@
},
{
"__type__": "cc.Node",
"_name": "",
"_name": "light",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
......@@ -102,7 +117,7 @@
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 82.375,
"y": 58.12699999999995,
"z": 0
},
"_lrot": {
......@@ -142,8 +157,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
"width": 533,
"height": 626
"width": 750,
"height": 1175
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -154,7 +169,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "40Ej24KPVMYaVFkEsbvNOO"
"fileId": "4bHWrROUNEdojJ60lJlsYu"
},
{
"__type__": "cc.Sprite",
......@@ -179,7 +194,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "779ee829-426b-463d-8e9d-39f41010bb7d@f9941",
"__uuid__": "58719ea8-7673-4345-bc5b-54e4ad5f03ea@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
......@@ -199,7 +214,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73pxpMjo5P4Iu+kCTdGTnN"
"fileId": "52DWzAZuJOAK4z3ZADH4Nf"
},
{
"__type__": "cc.Widget",
......@@ -215,9 +230,184 @@
},
"_alignFlags": 17,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 166.37300000000005,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "b4FXKFYNZPAIj8E9jfp2H9"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "2eW1NC+J5BEZXi3Gv9wNKd",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "底",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 11
},
{
"__id__": 13
},
{
"__id__": 15
}
],
"_prefab": {
"__id__": 17
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 151.99199999999996,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 12
},
"_contentSize": {
"__type__": "cc.Size",
"width": 625,
"height": 1170
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "40Ej24KPVMYaVFkEsbvNOO"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 14
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "5addc03e-b7a7-470f-a91c-171d46c2e2ae@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "73pxpMjo5P4Iu+kCTdGTnN"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
},
"_enabled": true,
"__prefab": {
"__id__": 16
},
"_alignFlags": 17,
"_target": null,
"_left": 72,
"_right": 0,
"_top": 416.625,
"_top": 75.00800000000001,
"_bottom": 409,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -260,31 +450,31 @@
},
"_children": [
{
"__id__": 11
"__id__": 19
}
],
"_active": true,
"_components": [
{
"__id__": 19
"__id__": 27
},
{
"__id__": 21
"__id__": 29
},
{
"__id__": 23
"__id__": 31
},
{
"__id__": 25
"__id__": 33
}
],
"_prefab": {
"__id__": 27
"__id__": 35
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 151.22799999999995,
"y": 80.99199999999996,
"z": 0
},
"_lrot": {
......@@ -316,23 +506,23 @@
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 10
"__id__": 18
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 12
"__id__": 20
},
{
"__id__": 14
"__id__": 22
},
{
"__id__": 16
"__id__": 24
}
],
"_prefab": {
"__id__": 18
"__id__": 26
},
"_lpos": {
"__type__": "cc.Vec3",
......@@ -369,16 +559,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
"__id__": 19
},
"_enabled": true,
"__prefab": {
"__id__": 13
"__id__": 21
},
"_contentSize": {
"__type__": "cc.Size",
"width": 220,
"height": 220
"width": 210,
"height": 210
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -397,11 +587,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
"__id__": 19
},
"_enabled": true,
"__prefab": {
"__id__": 15
"__id__": 23
},
"_customMaterial": null,
"_srcBlendFactor": 2,
......@@ -414,7 +604,7 @@
"a": 255
},
"_spriteFrame": {
"__uuid__": "547630f4-a0e0-4134-8427-9c3c53863e68@f9941",
"__uuid__": "c73c10a1-3124-4e8f-863e-868d4febb1d2@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
......@@ -442,11 +632,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 11
"__id__": 19
},
"_enabled": true,
"__prefab": {
"__id__": 17
"__id__": 25
},
"_alignFlags": 45,
"_target": null,
......@@ -491,16 +681,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 18
},
"_enabled": true,
"__prefab": {
"__id__": 20
"__id__": 28
},
"_contentSize": {
"__type__": "cc.Size",
"width": 220,
"height": 220
"width": 210,
"height": 210
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -519,17 +709,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 18
},
"_enabled": true,
"__prefab": {
"__id__": 22
"__id__": 30
},
"_alignFlags": 17,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 550.772,
"_top": 626.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -555,11 +745,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 18
},
"_enabled": true,
"__prefab": {
"__id__": 24
"__id__": 32
},
"_type": 3,
"_inverted": false,
......@@ -577,11 +767,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 10
"__id__": 18
},
"_enabled": true,
"__prefab": {
"__id__": 26
"__id__": 34
},
"_customMaterial": null,
"_srcBlendFactor": 2,
......@@ -641,22 +831,22 @@
"_active": true,
"_components": [
{
"__id__": 29
"__id__": 37
},
{
"__id__": 31
"__id__": 39
},
{
"__id__": 33
"__id__": 41
}
],
"_prefab": {
"__id__": 35
"__id__": 43
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": 1.879999999999999,
"y": -60.11199999999994,
"z": 0
},
"_lrot": {
......@@ -688,16 +878,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 28
"__id__": 36
},
"_enabled": true,
"__prefab": {
"__id__": 30
"__id__": 38
},
"_contentSize": {
"__type__": "cc.Size",
"width": 96,
"height": 30.240000000000002
"width": 131.26914978027344,
"height": 34.208999999999996
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -716,29 +906,29 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 28
"__id__": 36
},
"_enabled": true,
"__prefab": {
"__id__": 32
"__id__": 40
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"r": 4,
"g": 46,
"b": 98,
"a": 255
},
"_string": "奖品名称",
"_string": "prizeName",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 24,
"_fontSize": 24,
"_actualFontSize": 27.15,
"_fontSize": 27.15,
"_fontFamily": "Arial",
"_lineHeight": 24,
"_lineHeight": 27.15,
"_overflow": 0,
"_enableWrapText": true,
"_font": null,
......@@ -784,17 +974,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 28
"__id__": 36
},
"_enabled": true,
"__prefab": {
"__id__": 34
"__id__": 42
},
"_alignFlags": 17,
"_target": null,
"_left": 0,
"_right": 0,
"_top": 795,
"_top": 855.0074999999999,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -829,7 +1019,7 @@
},
{
"__type__": "cc.Node",
"_name": "get",
"_name": "score",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
......@@ -839,25 +1029,19 @@
"_active": true,
"_components": [
{
"__id__": 37
},
{
"__id__": 39
},
{
"__id__": 41
"__id__": 45
},
{
"__id__": 43
"__id__": 47
}
],
"_prefab": {
"__id__": 45
"__id__": 49
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -91.63800000000003,
"x": -110.077,
"y": 338.768,
"z": 0
},
"_lrot": {
......@@ -889,16 +1073,16 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
"__id__": 44
},
"_enabled": true,
"__prefab": {
"__id__": 38
"__id__": 46
},
"_contentSize": {
"__type__": "cc.Size",
"width": 386,
"height": 85
"width": 34.964996337890625,
"height": 81.585
},
"_anchorPoint": {
"__type__": "cc.Vec2",
......@@ -909,33 +1093,597 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9bYmaTy+1B3rGt+DPMyasw"
"fileId": "acVcm/uElOPoLbcSK1VtZt"
},
{
"__type__": "cc.Sprite",
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
"__id__": 44
},
"_enabled": true,
"__prefab": {
"__id__": 40
"__id__": 48
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"r": 0,
"g": 39,
"b": 92,
"a": 255
},
"_spriteFrame": {
"__uuid__": "0c83a89d-47af-4c0f-b801-a08652cb6762@f9941",
"__expectedType__": "cc.SpriteFrame"
"_string": "0",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 64.75,
"_fontSize": 64.75,
"_fontFamily": "Arial",
"_lineHeight": 64.75,
"_overflow": 0,
"_enableWrapText": true,
"_font": {
"__uuid__": "2c64cd9b-a68c-4de0-b137-694dc03e1edf",
"__expectedType__": "cc.TTFFont"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "03rzfZG0VB3J3U9K/Agmw2"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "30efbc7P5Ls5xkig5kB8tJ",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "highest",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 51
},
{
"__id__": 53
}
],
"_prefab": {
"__id__": 55
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 103.5,
"y": 338.768,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 50
},
"_enabled": true,
"__prefab": {
"__id__": 52
},
"_contentSize": {
"__type__": "cc.Size",
"width": 34.964996337890625,
"height": 81.585
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "d1xNaZ4aNELrh3XBzzaBSJ"
},
{
"__type__": "cc.Label",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 50
},
"_enabled": true,
"__prefab": {
"__id__": 54
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 39,
"b": 92,
"a": 255
},
"_string": "0",
"_horizontalAlign": 1,
"_verticalAlign": 1,
"_actualFontSize": 64.75,
"_fontSize": 64.75,
"_fontFamily": "Arial",
"_lineHeight": 64.75,
"_overflow": 0,
"_enableWrapText": true,
"_font": {
"__uuid__": "2c64cd9b-a68c-4de0-b137-694dc03e1edf",
"__expectedType__": "cc.TTFFont"
},
"_isSystemFontUsed": false,
"_spacingX": 0,
"_isItalic": false,
"_isBold": false,
"_isUnderline": false,
"_underlineHeight": 2,
"_cacheMode": 0,
"_enableOutline": false,
"_outlineColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_outlineWidth": 2,
"_enableShadow": false,
"_shadowColor": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_shadowOffset": {
"__type__": "cc.Vec2",
"x": 2,
"y": 2
},
"_shadowBlur": 2,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "71PNVfhUdAQ683cDddVuGQ"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "56E6XTPD9Depr1JvrAskrN",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "view",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 57
},
{
"__id__": 59
},
{
"__id__": 61
},
{
"__id__": 63
}
],
"_prefab": {
"__id__": 65
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -182.00800000000004,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 56
},
"_enabled": true,
"__prefab": {
"__id__": 58
},
"_contentSize": {
"__type__": "cc.Size",
"width": 385,
"height": 134
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "9bYmaTy+1B3rGt+DPMyasw"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 56
},
"_enabled": true,
"__prefab": {
"__id__": 60
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "719c33bf-8621-4ddb-9453-c6eebe73d0ce@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "92qGPblINMBqojqOK+UhX6"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 56
},
"_enabled": true,
"__prefab": {
"__id__": 62
},
"_alignFlags": 17,
"_target": null,
"_left": 52.5,
"_right": 0,
"_top": 927.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1drXroHPVNwKwRSKD1be6H"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 56
},
"_enabled": true,
"__prefab": {
"__id__": 64
},
"clickEvents": [],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8d+lg3bZZFdqGcGPjRFUpN"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "13Ai2uSQtOq5onxkoD06e9",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "again",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 67
},
{
"__id__": 69
},
{
"__id__": 71
},
{
"__id__": 73
}
],
"_prefab": {
"__id__": 75
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 96.5,
"y": -294.50800000000004,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 66
},
"_enabled": true,
"__prefab": {
"__id__": 68
},
"_contentSize": {
"__type__": "cc.Size",
"width": 187,
"height": 81
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4aGeaVqzBLNYfs+ZGdR2t6"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 66
},
"_enabled": true,
"__prefab": {
"__id__": 70
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "9a202596-489e-427a-9fce-ae1ac2345d26@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
......@@ -954,7 +1702,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "92qGPblINMBqojqOK+UhX6"
"fileId": "a0qHQmURJPjYtRnhesbgxc"
},
{
"__type__": "cc.Widget",
......@@ -962,17 +1710,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
"__id__": 66
},
"_enabled": true,
"__prefab": {
"__id__": 42
"__id__": 72
},
"_alignFlags": 17,
"_alignFlags": 9,
"_target": null,
"_left": 52.5,
"_left": 378,
"_right": 0,
"_top": 861.138,
"_top": 1066.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -990,7 +1738,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "1drXroHPVNwKwRSKD1be6H"
"fileId": "5e3+ZvxKtDI72ovoJViMrX"
},
{
"__type__": "cc.Button",
......@@ -998,11 +1746,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 36
"__id__": 66
},
"_enabled": true,
"__prefab": {
"__id__": 44
"__id__": 74
},
"clickEvents": [],
"_interactable": true,
......@@ -1046,7 +1794,7 @@
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "8d+lg3bZZFdqGcGPjRFUpN"
"fileId": "72oDNcgaFKbbS7Dm38Lx5G"
},
{
"__type__": "cc.PrefabInfo",
......@@ -1056,7 +1804,241 @@
"asset": {
"__id__": 0
},
"fileId": "13Ai2uSQtOq5onxkoD06e9",
"fileId": "00sN5E2xdO6YuLpaziqjYr",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
},
{
"__type__": "cc.Node",
"_name": "rank",
"_objFlags": 0,
"__editorExtras__": {},
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 77
},
{
"__id__": 79
},
{
"__id__": 81
},
{
"__id__": 83
}
],
"_prefab": {
"__id__": 85
},
"_lpos": {
"__type__": "cc.Vec3",
"x": -96.5,
"y": -294.50800000000004,
"z": 0
},
"_lrot": {
"__type__": "cc.Quat",
"x": 0,
"y": 0,
"z": 0,
"w": 1
},
"_lscale": {
"__type__": "cc.Vec3",
"x": 1,
"y": 1,
"z": 1
},
"_mobility": 0,
"_layer": 33554432,
"_euler": {
"__type__": "cc.Vec3",
"x": 0,
"y": 0,
"z": 0
},
"_id": ""
},
{
"__type__": "cc.UITransform",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 76
},
"_enabled": true,
"__prefab": {
"__id__": 78
},
"_contentSize": {
"__type__": "cc.Size",
"width": 187,
"height": 81
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "abrILF461IHLR9vLSL+vMk"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 76
},
"_enabled": true,
"__prefab": {
"__id__": 80
},
"_customMaterial": null,
"_srcBlendFactor": 2,
"_dstBlendFactor": 4,
"_color": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_spriteFrame": {
"__uuid__": "90aa66e8-a9a1-485a-8aa3-431357ea6a31@f9941",
"__expectedType__": "cc.SpriteFrame"
},
"_type": 0,
"_fillType": 0,
"_sizeMode": 1,
"_fillCenter": {
"__type__": "cc.Vec2",
"x": 0,
"y": 0
},
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
"_useGrayscale": false,
"_atlas": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "e1vtn0gJtDMY783oJj91sa"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 76
},
"_enabled": true,
"__prefab": {
"__id__": 82
},
"_alignFlags": 9,
"_target": null,
"_left": 185,
"_right": 0,
"_top": 1066.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 0,
"_originalHeight": 0,
"_alignMode": 2,
"_lockFlags": 0,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "aeo0UcWUZD4IxJ0HttJwip"
},
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 76
},
"_enabled": true,
"__prefab": {
"__id__": 84
},
"clickEvents": [],
"_interactable": true,
"_transition": 3,
"_normalColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_hoverColor": {
"__type__": "cc.Color",
"r": 211,
"g": 211,
"b": 211,
"a": 255
},
"_pressedColor": {
"__type__": "cc.Color",
"r": 255,
"g": 255,
"b": 255,
"a": 255
},
"_disabledColor": {
"__type__": "cc.Color",
"r": 124,
"g": 124,
"b": 124,
"a": 255
},
"_normalSprite": null,
"_hoverSprite": null,
"_pressedSprite": null,
"_disabledSprite": null,
"_duration": 0.05,
"_zoomScale": 0.9,
"_target": null,
"_id": ""
},
{
"__type__": "cc.CompPrefabInfo",
"fileId": "4a29p4UDxHaq06kHXiJU1z"
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "ddAPlQNrpOwYcWrjIyaaaX",
"instance": null,
"targetOverrides": null,
"nestedPrefabInstanceRoots": null
......@@ -1073,25 +2055,25 @@
"_active": true,
"_components": [
{
"__id__": 47
"__id__": 87
},
{
"__id__": 49
"__id__": 89
},
{
"__id__": 51
"__id__": 91
},
{
"__id__": 53
"__id__": 93
}
],
"_prefab": {
"__id__": 55
"__id__": 95
},
"_lpos": {
"__type__": "cc.Vec3",
"x": 0,
"y": -319.74,
"y": -518.508,
"z": 0
},
"_lrot": {
......@@ -1123,11 +2105,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 46
"__id__": 86
},
"_enabled": true,
"__prefab": {
"__id__": 48
"__id__": 88
},
"_contentSize": {
"__type__": "cc.Size",
......@@ -1151,11 +2133,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 46
"__id__": 86
},
"_enabled": true,
"__prefab": {
"__id__": 50
"__id__": 90
},
"_customMaterial": null,
"_srcBlendFactor": 2,
......@@ -1196,17 +2178,17 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 46
"__id__": 86
},
"_enabled": true,
"__prefab": {
"__id__": 52
"__id__": 92
},
"_alignFlags": 17,
"_target": null,
"_left": 339,
"_left": 335.5,
"_right": 0,
"_top": 1092.24,
"_top": 1291.008,
"_bottom": 0,
"_horizontalCenter": 0,
"_verticalCenter": 0,
......@@ -1232,11 +2214,11 @@
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 46
"__id__": 86
},
"_enabled": true,
"__prefab": {
"__id__": 54
"__id__": 94
},
"clickEvents": [],
"_interactable": true,
......@@ -1305,7 +2287,7 @@
},
"_enabled": true,
"__prefab": {
"__id__": 57
"__id__": 97
},
"_contentSize": {
"__type__": "cc.Size",
......@@ -1333,19 +2315,31 @@
},
"_enabled": true,
"__prefab": {
"__id__": 59
"__id__": 99
},
"close": {
"__id__": 46
"closeBtn": {
"__id__": 86
},
"get": {
"__id__": 36
"againBtn": {
"__id__": 66
},
"viewBtn": {
"__id__": 56
},
"rankBtn": {
"__id__": 76
},
"scoreLabel": {
"__id__": 47
},
"highestLabel": {
"__id__": 53
},
"prizeName": {
"__id__": 31
"__id__": 39
},
"img": {
"__id__": 14
"__id__": 22
},
"_id": ""
},
......
{
"__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