diff --git a/assets/BezierCurveAnimation.ts b/assets/BezierCurveAnimation.ts index f312a73..eb9f1e6 100644 --- a/assets/BezierCurveAnimation.ts +++ b/assets/BezierCurveAnimation.ts @@ -65,7 +65,7 @@ export class BezierCurveAnimation extends Component { /** 更新事件 */ @property({ displayName: '更新事件', - tooltip: '(总曲线Y_yN, 当前缓动下标_indexN, 当前缓动曲线Y_yN)', + tooltip: '(当前缓动曲线Y_yN, 当前缓动下标_indexN)', type: [cc.EventHandler] }) updateEventAS: cc.EventHandler[] = []; @@ -92,11 +92,28 @@ export class BezierCurveAnimation extends Component { * @param endIndexN_ 缓动结束下标 * @returns */ - startTween(startIndexN_?: number, endIndexN_ = (startIndexN_ ?? 0) + 1): cc.Tween { + startTween(startIndexN_?: number): cc.Tween; + startTween(tweenNS_?: number[]): cc.Tween; + startTween(args_?: number | number[]): cc.Tween { + /** 缓动队列 */ let tweenUnitAs = this.tweenUnitAS; - if (startIndexN_ !== undefined) { - tweenUnitAs = tweenUnitAs.slice(startIndexN_, endIndexN_); + + // 获取缓动队列 + if (args_ !== undefined) { + if (typeof args_ === 'number') { + tweenUnitAs = tweenUnitAs.slice(args_, 1); + } else { + tweenUnitAs = []; + args_.forEach((vN) => { + tweenUnitAs.push(this.tweenUnitAS[vN]); + }); + } + tweenUnitAs = tweenUnitAs.filter((v) => Boolean(v)); } + if (!tweenUnitAs.length) { + return; + } + /** 总时间(秒) */ let totalTimeSN = tweenUnitAs.reduce((preValue, currValue) => preValue + currValue.timeSN, 0); /** 时间占比 */ @@ -147,13 +164,12 @@ export class BezierCurveAnimation extends Component { let posN = (ratioN - lastTimeRatioN) / timeRangeN; /** 曲线位置 */ let yN = curveFS[tweenIndexN](posN); - let y2N = yN * timeRangeN + lastTimeRatioN; // 缓动切换事件触发 if (lastTweenIndexN !== tweenIndexN) { this.emit('tweenSwitchEventAS', lastTweenIndexN); } // 更新事件触发 - this.emit('updateEventAS', y2N, tweenIndexN, yN); + this.emit('updateEventAS', yN, tweenIndexN); // 更新缓动下标 lastTweenIndexN = tweenIndexN; } diff --git a/assets/RollingLottery.ts b/assets/RollingLottery.ts index 9a2026d..2d16990 100644 --- a/assets/RollingLottery.ts +++ b/assets/RollingLottery.ts @@ -51,8 +51,6 @@ export class RollingLottery extends Component { private _selfRect = cc.rect(); /** 上次曲线 Y */ private _lastCurveYN = 0; - /** 当前缓动下标 */ - private _currTweenIndexN = 0; /** 当前滚动配置 */ private _scrollConfig: RollingLotteryScrollConfig; /** 父节点中心点矩形 */ @@ -459,11 +457,11 @@ export class RollingLottery extends Component { // 更新移动距离 this._updateMoveDist(indexN_); // 开始滚动 - this._currTweenIndexN = this._scrollConfig.tweenIndexN; - this.curveComp.startTween(this._currTweenIndexN); + this.curveComp.startTween(this._scrollConfig.tweenIndexNS); } /* ------------------------------- 自定义事件 ------------------------------- */ - private _eventUpdate(yN_: number, indexN_: number, y2N_: number): void { + private _eventUpdate(yN_: number, indexN_: number): void { + cc.log(yN_, yN_); if (this.dire === RollingLotteryDirection.HORIZONTAL) { cc.error('未实现'); // ... @@ -476,14 +474,8 @@ export class RollingLottery extends Component { private _eventEnd(): void { this._scrollB = false; - - // 继续缓动 - if (this._scrollConfig.nextPlayB && ++this._currTweenIndexN < this.curveComp.tweenUnitAS.length) { - this.curveComp.startTween(this._currTweenIndexN); - } else { - this.scrollEndEvent.emit([]); - this._scrollConfig.endCBF?.(); - } + this.scrollEndEvent.emit([]); + this._scrollConfig.endCBF?.(); } /* ------------------------------- 节点事件 ------------------------------- */ private _nodeChildAdded(): void { @@ -499,10 +491,8 @@ class RollingLotteryScrollConfig { constructor(init_?: RollingLotteryScrollConfig) { Object.assign(this, init_); } - /** 指定缓动单元下标 */ - tweenIndexN? = 0; - /** 继续下个缓动单元播放 */ - nextPlayB? = false; + /** 缓动队列 */ + tweenIndexNS?: number[]; /** 结束回调 */ endCBF?: () => void; } diff --git a/assets/main.scene b/assets/main.scene index 23adc6b..feb94af 100644 --- a/assets/main.scene +++ b/assets/main.scene @@ -26,7 +26,7 @@ "_prefab": null, "autoReleaseAssets": false, "_globals": { - "__id__": 173 + "__id__": 98 }, "_id": "4c7c011d-1dee-494d-b761-aa723a3a84c7" }, @@ -130,24 +130,21 @@ }, { "__id__": 11 - }, - { - "__id__": 84 } ], "_active": true, "_components": [ { - "__id__": 169 + "__id__": 94 }, { - "__id__": 170 + "__id__": 95 }, { - "__id__": 171 + "__id__": 96 }, { - "__id__": 172 + "__id__": 97 } ], "_prefab": null, @@ -403,7 +400,7 @@ }, { "__type__": "cc.Node", - "_name": "滚动根节点", + "_name": "layout", "_objFlags": 0, "_parent": { "__id__": 4 @@ -412,2456 +409,44 @@ { "__id__": 12 }, - { - "__id__": 22 - }, - { - "__id__": 32 - }, - { - "__id__": 42 - }, - { - "__id__": 52 - }, - { - "__id__": 62 - } - ], - "_active": true, - "_components": [ - { - "__id__": 72 - }, - { - "__id__": 73 - }, - { - "__id__": 74 - }, - { - "__id__": 75 - }, - { - "__id__": 80 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "c5lhbiOehMnaU/hvAEhnUo" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-001", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 13 - }, - { - "__id__": 18 - } - ], - "_active": true, - "_components": [ { "__id__": 21 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 455, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "a1b81a67JFbqhMTV7RD+Fb" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 12 - }, - "_children": [ - { - "__id__": 14 - } - ], - "_active": true, - "_components": [ - { - "__id__": 17 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "9ebt5yUy5OzZzw2ApyM+u2" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 13 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 15 - }, - { - "__id__": 16 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "89tWEAnVpN2oAyknTjPP/V" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 14 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "691ozIMdNFD5L14dT2K/m0" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 14 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "f1DnHI0DlDVYQU/5j5GvEN" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 13 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "33nnQNTNpNO5msN0k1gxvo" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 12 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 19 - }, - { - "__id__": 20 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "d3qLfK6QxLIJibwvNpHx1h" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 18 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "66vIVIJSFKVom91agIYDGz" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 18 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "fdSx3MCy5P2b1w9huGidjx" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 12 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "88lintlTlLnLi4FBnffTbC" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-002", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 23 - }, - { - "__id__": 28 - } - ], - "_active": true, - "_components": [ - { - "__id__": 31 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 273, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "b4Il5YK0xHfYvgCeUTYTMa" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 22 - }, - "_children": [ - { - "__id__": 24 - } - ], - "_active": true, - "_components": [ - { - "__id__": 27 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "acg1LLOzVMiYwVxei1T2dj" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 23 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 25 - }, - { - "__id__": 26 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "8ajDZq4MxDOYVz3tTwq+Zk" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "53+2ZtEvFJSr6FhEEH2zdu" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "66SFEBe4BKjLHYoHZ736fH" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "75fD4kYTlBLJ4LAdIc2tTO" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 22 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 29 }, { "__id__": 30 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "40L2RnYPNMdpc7Cl6d0Uj+" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 28 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "e0H3N1dj9D7pjdeqxsJEMS" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 28 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "1fYcv5Fm1EZa0N0+aNg32p" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 22 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "c8GVLJjEVPnZ7ShWh0EoU+" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-003", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 33 }, - { - "__id__": 38 - } - ], - "_active": true, - "_components": [ - { - "__id__": 41 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 91, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "4dilZGKYdNrqkAlCGyRSu2" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 32 - }, - "_children": [ - { - "__id__": 34 - } - ], - "_active": true, - "_components": [ - { - "__id__": 37 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "87PUvY4wpOP6zhUiKBYO0p" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 33 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 35 - }, - { - "__id__": 36 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "d3mkzteWxNJ6KMdm+c3dQV" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 34 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "8b92xr8+BF44MtGavSwm1i" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 34 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "870M0B/uhN0Ig721hYqfIv" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 33 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "65hnE8oVFIyaD59CK5Q40d" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 32 - }, - "_children": [], - "_active": true, - "_components": [ { "__id__": 39 }, - { - "__id__": 40 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "8fp4d1NtVJPawY+MPukwaw" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 38 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "897meJ0I9OZ4wZq1x85mDf" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 38 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "c6NhWszRdC0oL11b9OCVY7" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "c1jaRhC7hCqqZvUhDsiJIV" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-004", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 43 - }, { "__id__": 48 - } - ], - "_active": true, - "_components": [ - { - "__id__": 51 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -91, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "77ePfOMbNMK4LZJgtUCS/x" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 42 - }, - "_children": [ - { - "__id__": 44 - } - ], - "_active": true, - "_components": [ - { - "__id__": 47 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "80oXAvGqJPRqNO4pv54UGB" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 43 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 45 }, - { - "__id__": 46 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "c840NFeApB6okL22489mw2" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "0b+mPtK/FLz5qoeu5eNg5u" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "4dQhAmlr9Gh6vB8tUJxxf4" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "2fTNSYLHZO56ykbWTt8SOC" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 42 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 49 - }, - { - "__id__": 50 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "fea47B621CMYHMTXgh67Jy" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 48 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "8d0lYhPvNJ34rdMAB6dor4" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 48 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "3dGCF0IZtNXqvYfEDeG59k" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 42 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "3fZHM2ig9LrZVp59U9X3um" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-005", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 53 - }, - { - "__id__": 58 - } - ], - "_active": true, - "_components": [ - { - "__id__": 61 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -273, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "d1kZjwlalHu4jT+/wjks4F" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 52 - }, - "_children": [ - { - "__id__": 54 - } - ], - "_active": true, - "_components": [ { "__id__": 57 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "21Fl/RE+tB5IsV1g/F/kfC" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 53 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 55 - }, - { - "__id__": 56 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "a76xByXslHYKnhWkhpy2b/" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 54 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "100ZOYEMJG87v+dSU/KlF9" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 54 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "0bcLZ26+pGR7IUa7VX2UEk" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 53 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "5e4LUh64VF1rGLy/jsShnI" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 52 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 59 - }, - { - "__id__": 60 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "b200h4EPdLpYrDMhoMLK/F" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 58 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "63eaSQOg1Is6aFkLcTEaJ1" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 58 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "bbYCeo+yZOFJPLTY3aMM07" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 52 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "2atJ5C1btAToMKT+RAhpeq" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-006", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [ - { - "__id__": 63 - }, - { - "__id__": 68 - } - ], - "_active": true, - "_components": [ - { - "__id__": 71 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -455, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "a2amkMMN1BaInRNU3S78/O" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 62 - }, - "_children": [ - { - "__id__": 64 - } - ], - "_active": true, - "_components": [ - { - "__id__": 67 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "2f0UXB+lZHRLTMXUKNZxbO" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 63 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 65 }, { "__id__": 66 + }, + { + "__id__": 75 } ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "f1pkg/wvVLAYkmw9h6TMp/" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "d8gM0uwpFIwZD4YttEIlx5" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "17RW82xJZJ87l9RzMQateV" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 63 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "461z2QLSFNuYeSGqc8HvJ9" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 62 - }, - "_children": [], "_active": true, "_components": [ { - "__id__": 69 + "__id__": 84 }, - { - "__id__": 70 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "c7Y5Kwz1BGK5g0NQ1F4svS" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "0fgtBhQiJAtrNaOUTEgfeA" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 68 - }, - "_enabled": true, - "__prefab": null, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "78JOuYVY5KhZzpfx6M4EGP" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 62 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "7fyVgb4CRG3aR3gDkgUIaj" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 1624, - "height": 750 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "39jwk8HVdKn4blizSHrfad" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": false, - "__prefab": null, - "_resizeMode": 1, - "_layoutType": 2, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 0, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 0, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "d40XwVGq1DwIz0xlT99g1g" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": null, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 100, - "_originalHeight": 156.49699999999999, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "0bqbr6xnlJVoT79V26gdFl" - }, - { - "__type__": "5f284q69xZO15DWtryldzHl", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": null, - "tweenUnitAS": [ - { - "__id__": 76 - }, - { - "__id__": 77 - }, - { - "__id__": 78 - }, - { - "__id__": 79 - } - ], - "tweenSwitchEventAS": [], - "updateEventAS": [], - "endEventAS": [], - "_id": "1eySNMLFhI5bp4KDy+9ImH" - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": true, - "easing": 41, - "controlPointV3S": [ - { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.723, - "y": 0.555, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.9705, - "y": 1.0455, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 1, - "y": 1.0025, - "z": 0 - } - ], - "timeSN": 5 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": true, - "easing": 0, - "controlPointV3S": [ - { - "__type__": "cc.Vec3", - "x": 0, - "y": 1.0025, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.136, - "y": 0.993, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.79, - "y": 1, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 0 - } - ], - "timeSN": 2 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], - "timeSN": 1 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], - "timeSN": 5 - }, - { - "__type__": "b1f62Y9bmdIM5sNvTecZgMd", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "__prefab": null, - "dire": 0, - "itemUpdateEvent": { - "__id__": 81 - }, - "centerNodeEvent": { - "__id__": 82 - }, - "scrollEndEvent": { - "__id__": 83 - }, - "_id": "d5bmf1eCpOP60Xg8XWBsxd" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 4 - }, - "component": "", - "_componentId": "c6550RvRXBJCp7yhDZhJZ5N", - "handler": "eventItemUpdate", - "customEventData": "" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 4 - }, - "component": "", - "_componentId": "c6550RvRXBJCp7yhDZhJZ5N", - "handler": "centerNodeEvent", - "customEventData": "" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 4 - }, - "component": "", - "_componentId": "c6550RvRXBJCp7yhDZhJZ5N", - "handler": "scrollEndEvent", - "customEventData": "" - }, - { - "__type__": "cc.Node", - "_name": "layout", - "_objFlags": 0, - "_parent": { - "__id__": 4 - }, - "_children": [ { "__id__": 85 }, { - "__id__": 94 + "__id__": 86 }, { - "__id__": 103 + "__id__": 87 }, { - "__id__": 112 - }, - { - "__id__": 121 - }, - { - "__id__": 130 - }, - { - "__id__": 139 - }, - { - "__id__": 148 - } - ], - "_active": false, - "_components": [ - { - "__id__": 157 - }, - { - "__id__": 158 - }, - { - "__id__": 159 - }, - { - "__id__": 160 - }, - { - "__id__": 165 + "__id__": 90 } ], "_prefab": null, @@ -2898,23 +483,23 @@ "_name": "0", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 86 + "__id__": 13 }, { - "__id__": 89 + "__id__": 16 } ], "_active": true, "_components": [ { - "__id__": 92 + "__id__": 19 }, { - "__id__": 93 + "__id__": 20 } ], "_prefab": null, @@ -2951,16 +536,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 85 + "__id__": 12 }, "_children": [], "_active": true, "_components": [ { - "__id__": 87 + "__id__": 14 }, { - "__id__": 88 + "__id__": 15 } ], "_prefab": null, @@ -2997,7 +582,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 86 + "__id__": 13 }, "_enabled": true, "__prefab": null, @@ -3018,7 +603,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 86 + "__id__": 13 }, "_enabled": true, "__prefab": null, @@ -3057,16 +642,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 85 + "__id__": 12 }, "_children": [], "_active": true, "_components": [ { - "__id__": 90 + "__id__": 17 }, { - "__id__": 91 + "__id__": 18 } ], "_prefab": null, @@ -3103,7 +688,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 89 + "__id__": 16 }, "_enabled": true, "__prefab": null, @@ -3124,7 +709,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 89 + "__id__": 16 }, "_enabled": true, "__prefab": null, @@ -3162,7 +747,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 85 + "__id__": 12 }, "_enabled": true, "__prefab": null, @@ -3183,7 +768,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 85 + "__id__": 12 }, "_enabled": true, "__prefab": null, @@ -3222,23 +807,23 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 95 + "__id__": 22 }, { - "__id__": 98 + "__id__": 25 } ], "_active": true, "_components": [ { - "__id__": 101 + "__id__": 28 }, { - "__id__": 102 + "__id__": 29 } ], "_prefab": null, @@ -3275,16 +860,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 94 + "__id__": 21 }, "_children": [], "_active": true, "_components": [ { - "__id__": 96 + "__id__": 23 }, { - "__id__": 97 + "__id__": 24 } ], "_prefab": null, @@ -3321,7 +906,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 95 + "__id__": 22 }, "_enabled": true, "__prefab": null, @@ -3342,7 +927,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 95 + "__id__": 22 }, "_enabled": true, "__prefab": null, @@ -3381,16 +966,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 94 + "__id__": 21 }, "_children": [], "_active": true, "_components": [ { - "__id__": 99 + "__id__": 26 }, { - "__id__": 100 + "__id__": 27 } ], "_prefab": null, @@ -3427,7 +1012,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 98 + "__id__": 25 }, "_enabled": true, "__prefab": null, @@ -3448,7 +1033,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 98 + "__id__": 25 }, "_enabled": true, "__prefab": null, @@ -3486,7 +1071,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 94 + "__id__": 21 }, "_enabled": true, "__prefab": null, @@ -3507,7 +1092,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 94 + "__id__": 21 }, "_enabled": true, "__prefab": null, @@ -3546,23 +1131,23 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 104 + "__id__": 31 }, { - "__id__": 107 + "__id__": 34 } ], "_active": true, "_components": [ { - "__id__": 110 + "__id__": 37 }, { - "__id__": 111 + "__id__": 38 } ], "_prefab": null, @@ -3599,16 +1184,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 103 + "__id__": 30 }, "_children": [], "_active": true, "_components": [ { - "__id__": 105 + "__id__": 32 }, { - "__id__": 106 + "__id__": 33 } ], "_prefab": null, @@ -3645,7 +1230,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 104 + "__id__": 31 }, "_enabled": true, "__prefab": null, @@ -3666,7 +1251,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 104 + "__id__": 31 }, "_enabled": true, "__prefab": null, @@ -3705,16 +1290,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 103 + "__id__": 30 }, "_children": [], "_active": true, "_components": [ { - "__id__": 108 + "__id__": 35 }, { - "__id__": 109 + "__id__": 36 } ], "_prefab": null, @@ -3751,7 +1336,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 107 + "__id__": 34 }, "_enabled": true, "__prefab": null, @@ -3772,7 +1357,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 107 + "__id__": 34 }, "_enabled": true, "__prefab": null, @@ -3810,7 +1395,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 103 + "__id__": 30 }, "_enabled": true, "__prefab": null, @@ -3831,7 +1416,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 103 + "__id__": 30 }, "_enabled": true, "__prefab": null, @@ -3870,23 +1455,23 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 113 + "__id__": 40 }, { - "__id__": 116 + "__id__": 43 } ], "_active": true, "_components": [ { - "__id__": 119 + "__id__": 46 }, { - "__id__": 120 + "__id__": 47 } ], "_prefab": null, @@ -3923,16 +1508,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 112 + "__id__": 39 }, "_children": [], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 41 }, { - "__id__": 115 + "__id__": 42 } ], "_prefab": null, @@ -3969,7 +1554,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 113 + "__id__": 40 }, "_enabled": true, "__prefab": null, @@ -3990,7 +1575,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 113 + "__id__": 40 }, "_enabled": true, "__prefab": null, @@ -4029,16 +1614,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 112 + "__id__": 39 }, "_children": [], "_active": true, "_components": [ { - "__id__": 117 + "__id__": 44 }, { - "__id__": 118 + "__id__": 45 } ], "_prefab": null, @@ -4075,7 +1660,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 116 + "__id__": 43 }, "_enabled": true, "__prefab": null, @@ -4096,7 +1681,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 116 + "__id__": 43 }, "_enabled": true, "__prefab": null, @@ -4134,7 +1719,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 112 + "__id__": 39 }, "_enabled": true, "__prefab": null, @@ -4155,7 +1740,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 112 + "__id__": 39 }, "_enabled": true, "__prefab": null, @@ -4194,23 +1779,23 @@ "_name": "4", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 122 + "__id__": 49 }, { - "__id__": 125 + "__id__": 52 } ], "_active": true, "_components": [ { - "__id__": 128 + "__id__": 55 }, { - "__id__": 129 + "__id__": 56 } ], "_prefab": null, @@ -4247,16 +1832,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 121 + "__id__": 48 }, "_children": [], "_active": true, "_components": [ { - "__id__": 123 + "__id__": 50 }, { - "__id__": 124 + "__id__": 51 } ], "_prefab": null, @@ -4293,7 +1878,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 122 + "__id__": 49 }, "_enabled": true, "__prefab": null, @@ -4314,7 +1899,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 122 + "__id__": 49 }, "_enabled": true, "__prefab": null, @@ -4353,16 +1938,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 121 + "__id__": 48 }, "_children": [], "_active": true, "_components": [ { - "__id__": 126 + "__id__": 53 }, { - "__id__": 127 + "__id__": 54 } ], "_prefab": null, @@ -4399,7 +1984,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 125 + "__id__": 52 }, "_enabled": true, "__prefab": null, @@ -4420,7 +2005,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 125 + "__id__": 52 }, "_enabled": true, "__prefab": null, @@ -4458,7 +2043,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 121 + "__id__": 48 }, "_enabled": true, "__prefab": null, @@ -4479,7 +2064,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 121 + "__id__": 48 }, "_enabled": true, "__prefab": null, @@ -4518,23 +2103,23 @@ "_name": "5", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 131 + "__id__": 58 }, { - "__id__": 134 + "__id__": 61 } ], "_active": true, "_components": [ { - "__id__": 137 + "__id__": 64 }, { - "__id__": 138 + "__id__": 65 } ], "_prefab": null, @@ -4571,16 +2156,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 130 + "__id__": 57 }, "_children": [], "_active": true, "_components": [ { - "__id__": 132 + "__id__": 59 }, { - "__id__": 133 + "__id__": 60 } ], "_prefab": null, @@ -4617,7 +2202,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 131 + "__id__": 58 }, "_enabled": true, "__prefab": null, @@ -4638,7 +2223,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 131 + "__id__": 58 }, "_enabled": true, "__prefab": null, @@ -4677,16 +2262,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 130 + "__id__": 57 }, "_children": [], "_active": true, "_components": [ { - "__id__": 135 + "__id__": 62 }, { - "__id__": 136 + "__id__": 63 } ], "_prefab": null, @@ -4723,7 +2308,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 134 + "__id__": 61 }, "_enabled": true, "__prefab": null, @@ -4744,7 +2329,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 134 + "__id__": 61 }, "_enabled": true, "__prefab": null, @@ -4782,7 +2367,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 130 + "__id__": 57 }, "_enabled": true, "__prefab": null, @@ -4803,7 +2388,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 130 + "__id__": 57 }, "_enabled": true, "__prefab": null, @@ -4842,23 +2427,23 @@ "_name": "6", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 140 + "__id__": 67 }, { - "__id__": 143 + "__id__": 70 } ], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 73 }, { - "__id__": 147 + "__id__": 74 } ], "_prefab": null, @@ -4895,16 +2480,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 139 + "__id__": 66 }, "_children": [], "_active": true, "_components": [ { - "__id__": 141 + "__id__": 68 }, { - "__id__": 142 + "__id__": 69 } ], "_prefab": null, @@ -4941,7 +2526,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 140 + "__id__": 67 }, "_enabled": true, "__prefab": null, @@ -4962,7 +2547,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 140 + "__id__": 67 }, "_enabled": true, "__prefab": null, @@ -5001,16 +2586,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 139 + "__id__": 66 }, "_children": [], "_active": true, "_components": [ { - "__id__": 144 + "__id__": 71 }, { - "__id__": 145 + "__id__": 72 } ], "_prefab": null, @@ -5047,7 +2632,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 143 + "__id__": 70 }, "_enabled": true, "__prefab": null, @@ -5068,7 +2653,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 143 + "__id__": 70 }, "_enabled": true, "__prefab": null, @@ -5106,7 +2691,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 139 + "__id__": 66 }, "_enabled": true, "__prefab": null, @@ -5127,7 +2712,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 139 + "__id__": 66 }, "_enabled": true, "__prefab": null, @@ -5166,23 +2751,23 @@ "_name": "7", "_objFlags": 0, "_parent": { - "__id__": 84 + "__id__": 11 }, "_children": [ { - "__id__": 149 + "__id__": 76 }, { - "__id__": 152 + "__id__": 79 } ], "_active": true, "_components": [ { - "__id__": 155 + "__id__": 82 }, { - "__id__": 156 + "__id__": 83 } ], "_prefab": null, @@ -5219,16 +2804,16 @@ "_name": "SpriteSplash", "_objFlags": 0, "_parent": { - "__id__": 148 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 150 + "__id__": 77 }, { - "__id__": 151 + "__id__": 78 } ], "_prefab": null, @@ -5265,7 +2850,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 149 + "__id__": 76 }, "_enabled": true, "__prefab": null, @@ -5286,7 +2871,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 149 + "__id__": 76 }, "_enabled": true, "__prefab": null, @@ -5325,16 +2910,16 @@ "_name": "Label", "_objFlags": 0, "_parent": { - "__id__": 148 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 153 + "__id__": 80 }, { - "__id__": 154 + "__id__": 81 } ], "_prefab": null, @@ -5371,7 +2956,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 152 + "__id__": 79 }, "_enabled": true, "__prefab": null, @@ -5392,7 +2977,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 152 + "__id__": 79 }, "_enabled": true, "__prefab": null, @@ -5430,7 +3015,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 148 + "__id__": 75 }, "_enabled": true, "__prefab": null, @@ -5451,7 +3036,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 148 + "__id__": 75 }, "_enabled": true, "__prefab": null, @@ -5490,7 +3075,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 84 + "__id__": 11 }, "_enabled": true, "__prefab": null, @@ -5511,7 +3096,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 84 + "__id__": 11 }, "_enabled": false, "__prefab": null, @@ -5542,7 +3127,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 84 + "__id__": 11 }, "_enabled": true, "__prefab": null, @@ -5569,22 +3154,16 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 84 + "__id__": 11 }, "_enabled": true, "__prefab": null, "tweenUnitAS": [ { - "__id__": 161 + "__id__": 88 }, { - "__id__": 162 - }, - { - "__id__": 163 - }, - { - "__id__": 164 + "__id__": 89 } ], "tweenSwitchEventAS": [], @@ -5618,11 +3197,11 @@ { "__type__": "cc.Vec3", "x": 1, - "y": 1.0025, + "y": 1.005, "z": 0 } ], - "timeSN": 5 + "timeSN": 3 }, { "__type__": "BezierCurveAnimationTweenUnit", @@ -5631,20 +3210,8 @@ "controlPointV3S": [ { "__type__": "cc.Vec3", - "x": 0, - "y": 1.0025, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.136, - "y": 0.993, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.79, - "y": 1, + "x": 1, + "y": 1.005, "z": 0 }, { @@ -5654,40 +3221,26 @@ "z": 0 } ], - "timeSN": 2 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], "timeSN": 1 }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], - "timeSN": 5 - }, { "__type__": "b1f62Y9bmdIM5sNvTecZgMd", "_name": "", "_objFlags": 0, "node": { - "__id__": 84 + "__id__": 11 }, "_enabled": true, "__prefab": null, "dire": 0, "itemUpdateEvent": { - "__id__": 166 + "__id__": 91 }, "centerNodeEvent": { - "__id__": 167 + "__id__": 92 }, "scrollEndEvent": { - "__id__": 168 + "__id__": 93 }, "_id": "6d+rTEEL9OZoMInU6l+PWp" }, @@ -5708,7 +3261,7 @@ }, "component": "", "_componentId": "c6550RvRXBJCp7yhDZhJZ5N", - "handler": "centerNodeEvent", + "handler": "eventCenterNode", "customEventData": "" }, { @@ -5718,7 +3271,7 @@ }, "component": "", "_componentId": "c6550RvRXBJCp7yhDZhJZ5N", - "handler": "scrollEndEvent", + "handler": "eventScrollEnd", "customEventData": "" }, { @@ -5800,16 +3353,16 @@ { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 174 + "__id__": 99 }, "shadows": { - "__id__": 175 + "__id__": 100 }, "_skybox": { - "__id__": 176 + "__id__": 101 }, "fog": { - "__id__": 177 + "__id__": 102 } }, { diff --git a/assets/main.ts b/assets/main.ts index 24cf451..95f524f 100644 --- a/assets/main.ts +++ b/assets/main.ts @@ -8,17 +8,19 @@ export class main extends Component { /* ------------------------------- segmentation ------------------------------- */ start() { let comp = this.node.getComponentInChildren(RollingLottery); + // comp.loop(1500); // let indexN = 0; // this.node.on( // cc.Node.EventType.TOUCH_END, // () => { - // comp['_scrollChild'](cc.v3(0, -50)); + // comp.scroll(0, {}); // }, // this // ); + comp.scroll(10, {}); - comp.reset(); - comp.loop(-1500); + // comp.reset(); + // comp.loop(-1500); // setTimeout(() => { // comp.scroll(-10, { // tweenIndexN: 3, @@ -35,11 +37,11 @@ export class main extends Component { node_.getComponentInChildren(cc.Label).string = indexN_ + ''; } - centerNodeEvent(indexN_: number): void { + eventCenterNode(indexN_: number): void { cc.log('当前下标', indexN_); } - scrollEndEvent(): void { + eventScrollEnd(): void { cc.log('滚动结束'); } } diff --git a/assets/滚动根节点.prefab b/assets/滚动根节点.prefab deleted file mode 100644 index 0e13016..0000000 --- a/assets/滚动根节点.prefab +++ /dev/null @@ -1,2963 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "滚动根节点", - "_objFlags": 0, - "_parent": null, - "_children": [ - { - "__id__": 2 - }, - { - "__id__": 22 - }, - { - "__id__": 42 - }, - { - "__id__": 62 - }, - { - "__id__": 82 - }, - { - "__id__": 102 - } - ], - "_active": true, - "_components": [ - { - "__id__": 122 - }, - { - "__id__": 124 - }, - { - "__id__": 126 - }, - { - "__id__": 128 - }, - { - "__id__": 134 - } - ], - "_prefab": { - "__id__": 139 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-001", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 3 - }, - { - "__id__": 13 - } - ], - "_active": true, - "_components": [ - { - "__id__": 19 - } - ], - "_prefab": { - "__id__": 21 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 455, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 4 - } - ], - "_active": true, - "_components": [ - { - "__id__": 10 - } - ], - "_prefab": { - "__id__": 12 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 3 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 5 - }, - { - "__id__": 7 - } - ], - "_prefab": { - "__id__": 9 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 4 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "94nunepDdLWZYE/3Drxe6G" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 4 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4dIxST/kJNLaz0Q52waieN" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "68WMj3vpNF5JhICen3sMYF" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 11 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "60Td+ASoZB/JvlAriNykmt" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "dbBOZav3xDDb9SiAYiLHBR" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 14 - }, - { - "__id__": 16 - } - ], - "_prefab": { - "__id__": 18 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 13 - }, - "_enabled": true, - "__prefab": { - "__id__": 15 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b9HDsjToREYqpDGWqmO3LT" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 13 - }, - "_enabled": true, - "__prefab": { - "__id__": 17 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "146WMh7QJBLbVKUHMin7yO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "231C8uNZ9CDZElliTvEF0A" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 20 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0cmu84aghKIILd63blqU0K" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a8ahBURURLCrHL5JXrL8UX" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-002", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 23 - }, - { - "__id__": 33 - } - ], - "_active": true, - "_components": [ - { - "__id__": 39 - } - ], - "_prefab": { - "__id__": 41 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 273, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 22 - }, - "_children": [ - { - "__id__": 24 - } - ], - "_active": true, - "_components": [ - { - "__id__": 30 - } - ], - "_prefab": { - "__id__": 32 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 23 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 25 - }, - { - "__id__": 27 - } - ], - "_prefab": { - "__id__": 29 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 26 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d73QamWfVAZY0EvxtX9Z6R" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 28 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "903WvxETlFzpnA5c2dXIor" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f2XTraCAlFE5v6YxKmOCAe" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 31 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "36ex8sQllH2LurRBoK6EXC" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "daL1N1NHhMZIeq7r0Eza1c" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 22 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 34 - }, - { - "__id__": 36 - } - ], - "_prefab": { - "__id__": 38 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 33 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "31GAtK7ZZOYLLqVmpGcyC+" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 33 - }, - "_enabled": true, - "__prefab": { - "__id__": 37 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "61O0zypdhLIqmlL24hAx/k" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ecpRtF15xEe62KEbuV2XBV" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 22 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "75+Klaj8ZBoYKgekR6m1cW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "bdaooJ2UVPWrpYFG0DhE3m" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-003", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 43 - }, - { - "__id__": 53 - } - ], - "_active": true, - "_components": [ - { - "__id__": 59 - } - ], - "_prefab": { - "__id__": 61 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 91, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 42 - }, - "_children": [ - { - "__id__": 44 - } - ], - "_active": true, - "_components": [ - { - "__id__": 50 - } - ], - "_prefab": { - "__id__": 52 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 43 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 45 - }, - { - "__id__": 47 - } - ], - "_prefab": { - "__id__": 49 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "df8HQd+PdHrJWCKdYT3eR4" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 48 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d2raVsvHNIRYeVqqqRYVmx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "38nu28h6FHW61tLPtHv9sm" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 43 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "deIXr9VttDQZ/pesFYnib6" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8dcwgt8hNJib9flkV+++D9" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 42 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 54 - }, - { - "__id__": 56 - } - ], - "_prefab": { - "__id__": 58 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 53 - }, - "_enabled": true, - "__prefab": { - "__id__": 55 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "12+2qeaZRESJFxy/57TvRL" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 53 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "00DB13p6tNTrTDv7Be2tpc" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "baOLNrtgJCWLyfU1I8WVYq" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 42 - }, - "_enabled": true, - "__prefab": { - "__id__": 60 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "74lfhf5fJOqJVa/vP3RsVn" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "06+9KapP5AIoe6VdTYRFAq" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-004", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 63 - }, - { - "__id__": 73 - } - ], - "_active": true, - "_components": [ - { - "__id__": 79 - } - ], - "_prefab": { - "__id__": 81 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -91, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 62 - }, - "_children": [ - { - "__id__": 64 - } - ], - "_active": true, - "_components": [ - { - "__id__": 70 - } - ], - "_prefab": { - "__id__": 72 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 63 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 65 - }, - { - "__id__": 67 - } - ], - "_prefab": { - "__id__": 69 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": { - "__id__": 66 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c7qhY38NxKM4jIAhhp77Kn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 64 - }, - "_enabled": true, - "__prefab": { - "__id__": 68 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a4gfOMeH1Coql/OmTkYSQZ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "553AsddbtMmJ4iETyuzwzC" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 63 - }, - "_enabled": true, - "__prefab": { - "__id__": 71 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9343vUhx1CWbM95usYPGHz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b46qVqd8lD8rr/0VDuzlUC" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 62 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - } - ], - "_prefab": { - "__id__": 78 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 73 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8fuSe++eJEkLHOY2/EBXyp" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 73 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b6Lk5L5YFDfo5R2jXC/Bbc" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "36lFrVtdRMgK8TGITyL8U+" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 62 - }, - "_enabled": true, - "__prefab": { - "__id__": 80 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "97YpG2altAFY/SDl293FgB" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8dW8DK549EArx44ctAqrZs" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-005", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 83 - }, - { - "__id__": 93 - } - ], - "_active": true, - "_components": [ - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -273, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 82 - }, - "_children": [ - { - "__id__": 84 - } - ], - "_active": true, - "_components": [ - { - "__id__": 90 - } - ], - "_prefab": { - "__id__": 92 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 83 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 85 - }, - { - "__id__": 87 - } - ], - "_prefab": { - "__id__": 89 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 84 - }, - "_enabled": true, - "__prefab": { - "__id__": 86 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b0iMKZ361BY5BwVB16XrnY" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 84 - }, - "_enabled": true, - "__prefab": { - "__id__": 88 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8ePl+v28ZBeYB3otQBNmiY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5dP2nVi+BEpa817yhDgWDp" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 83 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7dLQlWGEZDkYX/2W/fOuu5" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "03oRX9ClhLc6NcScXGvqFo" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 82 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 94 - }, - { - "__id__": 96 - } - ], - "_prefab": { - "__id__": 98 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 93 - }, - "_enabled": true, - "__prefab": { - "__id__": 95 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ccK3/hd8FCRIwqTn/hWGkM" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 93 - }, - "_enabled": true, - "__prefab": { - "__id__": 97 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "77ubp2DetLwZ8btc1pDl9b" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0bK9ccQS1PgbClIQejtADb" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 82 - }, - "_enabled": true, - "__prefab": { - "__id__": 100 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "38kJY0xxFHeov/j1pI1jun" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1cbr2QDeBOmpYja7fWq7cg" - }, - { - "__type__": "cc.Node", - "_name": "PlatformCueLotteryCueItem-006", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 103 - }, - { - "__id__": 113 - } - ], - "_active": true, - "_components": [ - { - "__id__": 119 - } - ], - "_prefab": { - "__id__": 121 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -455, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "背景", - "_objFlags": 0, - "_parent": { - "__id__": 102 - }, - "_children": [ - { - "__id__": 104 - } - ], - "_active": true, - "_components": [ - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "A", - "_objFlags": 0, - "_parent": { - "__id__": 103 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 105 - }, - { - "__id__": 107 - } - ], - "_prefab": { - "__id__": 109 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 104 - }, - "_enabled": true, - "__prefab": { - "__id__": 106 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 358, - "height": 134 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "83O52Nly1Cw4Zd0A3sfccI" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 104 - }, - "_enabled": true, - "__prefab": { - "__id__": 108 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d9vtiXBI1JHYl2k/7ATaJJ" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "f8WzZdVZFPdYmTPDg8MoNz" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 103 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4afFM7H7FJx6shG1kwrFll" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c7wKxaZodBZ6BXqJyw/stv" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 0, - "_parent": { - "__id__": 102 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 114 - }, - { - "__id__": 116 - } - ], - "_prefab": { - "__id__": 118 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 113 - }, - "_enabled": true, - "__prefab": { - "__id__": 115 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84.51, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "deEPgRyh5KQY+YMTkEEZGb" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 113 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_visFlags": 0, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "label", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2a39Fa2+lBkpnDD8Q2Qe4K" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8cISjNoDZBz6n3DsLE/CWZ" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 102 - }, - "_enabled": true, - "__prefab": { - "__id__": 120 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 734.759, - "height": 182 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2awq821AtL06voKuEFALu+" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "30brCXdQxNCazZDtumea8g" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1624, - "height": 750 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c0vKzAVjNJUbaFfGVKBCyM" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": false, - "__prefab": { - "__id__": 125 - }, - "_resizeMode": 1, - "_layoutType": 2, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 0, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 0, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17D1N3IvNNQY4m+mlCczeL" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 127 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 100, - "_originalHeight": 156.49699999999999, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "54Pj3mAmlKUb3G5QBTwwPe" - }, - { - "__type__": "5f284q69xZO15DWtryldzHl", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 129 - }, - "tweenUnitAS": [ - { - "__id__": 130 - }, - { - "__id__": 131 - }, - { - "__id__": 132 - }, - { - "__id__": 133 - } - ], - "tweenSwitchEventAS": [], - "updateEventAS": [], - "endEventAS": [], - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "43DEKGykZAm44a2OY2iL82" - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": true, - "easing": 41, - "controlPointV3S": [ - { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.723, - "y": 0.555, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.9705, - "y": 1.0455, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 1, - "y": 1.0025, - "z": 0 - } - ], - "timeSN": 5 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": true, - "easing": 0, - "controlPointV3S": [ - { - "__type__": "cc.Vec3", - "x": 0, - "y": 1.0025, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.136, - "y": 0.993, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 0.79, - "y": 1, - "z": 0 - }, - { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 0 - } - ], - "timeSN": 2 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], - "timeSN": 1 - }, - { - "__type__": "BezierCurveAnimationTweenUnit", - "customCurveB": false, - "easing": 6, - "controlPointV3S": [], - "timeSN": 5 - }, - { - "__type__": "b1f62Y9bmdIM5sNvTecZgMd", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 135 - }, - "dire": 0, - "itemUpdateEvent": { - "__id__": 136 - }, - "centerNodeEvent": { - "__id__": 137 - }, - "scrollEndEvent": { - "__id__": 138 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "48jM+qzxdPwYzKt0PQ73d+" - }, - { - "__type__": "cc.ClickEvent", - "target": null, - "component": "", - "_componentId": "", - "handler": "", - "customEventData": "" - }, - { - "__type__": "cc.ClickEvent", - "target": null, - "component": "", - "_componentId": "", - "handler": "", - "customEventData": "" - }, - { - "__type__": "cc.ClickEvent", - "target": null, - "component": "", - "_componentId": "", - "handler": "", - "customEventData": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "47OzZMLpFDp6uERIsYC8rl" - } -] \ No newline at end of file diff --git a/assets/滚动根节点.prefab.meta b/assets/滚动根节点.prefab.meta deleted file mode 100644 index 26fd287..0000000 --- a/assets/滚动根节点.prefab.meta +++ /dev/null @@ -1,13 +0,0 @@ -{ - "ver": "1.1.32", - "importer": "prefab", - "imported": true, - "uuid": "3fe6ec1e-8b71-4777-bd7f-a9a1bb2debef", - "files": [ - ".json" - ], - "subMetas": {}, - "userData": { - "syncNodeName": "滚动根节点" - } -}