diff --git a/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl b/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl new file mode 100644 index 00000000..0cc42b69 --- /dev/null +++ b/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl @@ -0,0 +1,40 @@ +{ + "__type__": "cc.Material", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "_effectAsset": { + "__uuid__": "40c25c17-db22-4ae7-8d3a-f73cbb6d36ba", + "__expectedType__": "cc.EffectAsset" + }, + "_techIdx": 0, + "_defines": [ + { + "USE_TEXTURE": true + } + ], + "_states": [ + { + "rasterizerState": {}, + "depthStencilState": {}, + "blendState": { + "targets": [ + {} + ] + } + } + ], + "_props": [ + { + "glowColor": { + "__type__": "cc.Color", + "r": 255, + "g": 235, + "b": 0, + "a": 255 + }, + "glowWidth": 0.002 + } + ] +} \ No newline at end of file diff --git a/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl.meta b/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl.meta new file mode 100644 index 00000000..3edca7ef --- /dev/null +++ b/assets/resources/game/05-outline-glow/materials/outline-glow2.mtl.meta @@ -0,0 +1 @@ +{"ver":"1.0.21","importer":"material","imported":true,"uuid":"974af3c9-d7ee-449f-a5df-cd8e2dd49188","files":[".json"],"subMetas":{},"userData":{}} diff --git a/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect b/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect new file mode 100644 index 00000000..beb5620f --- /dev/null +++ b/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect @@ -0,0 +1,169 @@ +// Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. +CCEffect %{ + techniques: + - passes: + - vert: sprite-vs:vert + frag: sprite-fs:frag + depthStencilState: + depthTest: false + depthWrite: false + blendState: + targets: + - blend: true + blendSrc: src_alpha + blendDst: one_minus_src_alpha + blendDstAlpha: one_minus_src_alpha + rasterizerState: + cullMode: none + properties: + alphaThreshold: { value: 0.5 } + + glowColor: { value: [1, 1, 1, 1], editor: { type: color } } + glowWidth: { value: 0.05, editor: { slide: true, range: [0, 0.3], step: 0.001 } } + glowThreshold: { value: 1, editor: { slide: true, range: [0, 1], step: 0.001 } } +}% + +CCProgram sprite-vs %{ + precision highp float; + #include + #if USE_LOCAL + #include + #endif + #if SAMPLE_FROM_RT + #include + #endif + in vec3 a_position; + in vec2 a_texCoord; + in vec4 a_color; + + out vec4 color; + out vec2 uv0; + + vec4 vert () { + vec4 pos = vec4(a_position, 1); + + #if USE_LOCAL + pos = cc_matWorld * pos; + #endif + + #if USE_PIXEL_ALIGNMENT + pos = cc_matView * pos; + pos.xyz = floor(pos.xyz); + pos = cc_matProj * pos; + #else + pos = cc_matViewProj * pos; + #endif + + uv0 = a_texCoord; + #if SAMPLE_FROM_RT + CC_HANDLE_RT_SAMPLE_FLIP(uv0); + #endif + color = a_color; + + return pos; + } +}% + +CCProgram sprite-fs %{ + precision highp float; + #include + #include + + in vec4 color; + + uniform FSConstants { + vec4 glowColor; + float glowWidth; + float glowThreshold; + }; + + #if USE_TEXTURE + in vec2 uv0; + #pragma builtin(local) + layout(set = 2, binding = 12) uniform sampler2D cc_spriteTexture; + #endif + + vec4 getTextureColor (sampler2D mainTexture, vec2 uv) { + if (uv.x > 1.0 || uv.x < 0.0 || uv.y > 1.0 || uv.y < 0.0) { + return vec4(0.0, 0.0, 0.0, 0.0); + } + return texture(mainTexture, uv); + } + + float getColorAlpha (float angle, float dist) { + // 角度转弧度,公式为:弧度 = 角度 * (pi / 180) + float radian = angle * 3.14 / 180.0; + vec2 newUV = uv0 + vec2(dist * cos(radian), dist * sin(radian)); + vec4 color = getTextureColor(cc_spriteTexture, newUV); + return color.a; + } + + float getAverageAlpha (float dist) { + float totalAlpha = 0.0; + + totalAlpha += getColorAlpha(0.0, dist); + totalAlpha += getColorAlpha(30.0, dist); + totalAlpha += getColorAlpha(60.0, dist); + totalAlpha += getColorAlpha(90.0, dist); + totalAlpha += getColorAlpha(120.0, dist); + totalAlpha += getColorAlpha(150.0, dist); + totalAlpha += getColorAlpha(180.0, dist); + totalAlpha += getColorAlpha(210.0, dist); + totalAlpha += getColorAlpha(240.0, dist); + totalAlpha += getColorAlpha(270.0, dist); + totalAlpha += getColorAlpha(300.0, dist); + totalAlpha += getColorAlpha(330.0, dist); + + return totalAlpha * 0.0833; + } + + float getGlowAlpha () { + if (glowWidth == 0.0 ) { + return 0.0; + } + + float totalAlpha = 0.0; + totalAlpha += getAverageAlpha(glowWidth * 0.1); + totalAlpha += getAverageAlpha(glowWidth * 0.2); + totalAlpha += getAverageAlpha(glowWidth * 0.3); + totalAlpha += getAverageAlpha(glowWidth * 0.4); + totalAlpha += getAverageAlpha(glowWidth * 0.5); + totalAlpha += getAverageAlpha(glowWidth * 0.6); + totalAlpha += getAverageAlpha(glowWidth * 0.7); + totalAlpha += getAverageAlpha(glowWidth * 0.8); + totalAlpha += getAverageAlpha(glowWidth * 0.9); + totalAlpha += getAverageAlpha(glowWidth * 1.0); + + return totalAlpha * 0.1; + } + + vec4 frag () { + vec4 o = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + o *= CCSampleWithAlphaSeparated(cc_spriteTexture, uv0); + #if IS_GRAY + float gray = 0.2126 * o.r + 0.7152 * o.g + 0.0722 * o.b; + o.r = o.g = o.b = gray; + #endif + #endif + + float alpha = getGlowAlpha(); + + if (alpha <= glowThreshold) { + alpha /= glowThreshold; + alpha = -1.0 * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) * (alpha - 1.0) + 1.0; + } else { + alpha = 0.0; + } + + vec4 dstColor = glowColor * alpha; + vec4 scrColor = o; + + o = scrColor * scrColor.a + dstColor * (1.0 - scrColor.a); + + o *= color; + ALPHA_TEST(o); + return o; + } +}% diff --git a/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect.meta b/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect.meta new file mode 100644 index 00000000..90cf0835 --- /dev/null +++ b/assets/resources/game/05-outline-glow/shaders/builtin-sprite-outline-glow2.effect.meta @@ -0,0 +1 @@ +{"ver":"1.7.1","importer":"effect","imported":true,"uuid":"40c25c17-db22-4ae7-8d3a-f73cbb6d36ba","files":[".json"],"subMetas":{},"userData":{"combinations":[{}]}} diff --git a/assets/resources/game/map/map_rpg.prefab b/assets/resources/game/map/map_rpg.prefab index a6d16dd1..06956c09 100644 --- a/assets/resources/game/map/map_rpg.prefab +++ b/assets/resources/game/map/map_rpg.prefab @@ -1271,7 +1271,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -314.65, + "y": -197.983, "z": 0 }, "_lrot": { @@ -1311,8 +1311,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 556, - "height": 432 + "width": 556.1, + "height": 332 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1379,6 +1379,8 @@ "__id__": 0 }, "fileId": "3fAYpeIJJHJZjCyzC0S8Eq", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { diff --git a/assets/resources/gui/role_controller.prefab b/assets/resources/gui/role_controller.prefab index e996281e..4cc0d92e 100644 --- a/assets/resources/gui/role_controller.prefab +++ b/assets/resources/gui/role_controller.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 3088 + "__id__": 3133 }, { - "__id__": 3148 + "__id__": 3193 }, { - "__id__": 3170 + "__id__": 3215 } ], "_active": true, "_components": [ { - "__id__": 3378 + "__id__": 3423 }, { - "__id__": 3380 + "__id__": 3425 }, { - "__id__": 3382 + "__id__": 3427 } ], "_prefab": { - "__id__": 3384 + "__id__": 3429 }, "_lpos": { "__type__": "cc.Vec3", @@ -94,50 +94,50 @@ "__id__": 133 }, { - "__id__": 780 + "__id__": 825 }, { - "__id__": 1526 + "__id__": 1571 }, { - "__id__": 1863 + "__id__": 1908 }, { - "__id__": 2039 + "__id__": 2084 }, { - "__id__": 2323 + "__id__": 2368 }, { - "__id__": 2350 + "__id__": 2395 }, { - "__id__": 2606 + "__id__": 2651 }, { - "__id__": 3063 + "__id__": 3108 } ], "_active": true, "_components": [ { - "__id__": 3077 + "__id__": 3122 }, { - "__id__": 3079 + "__id__": 3124 }, { - "__id__": 3081 + "__id__": 3126 }, { - "__id__": 3083 + "__id__": 3128 }, { - "__id__": 3085 + "__id__": 3130 } ], "_prefab": { - "__id__": 3087 + "__id__": 3132 }, "_lpos": { "__type__": "cc.Vec3", @@ -3110,17 +3110,17 @@ "_active": true, "_components": [ { - "__id__": 773 + "__id__": 818 }, { - "__id__": 775 + "__id__": 820 }, { - "__id__": 777 + "__id__": 822 } ], "_prefab": { - "__id__": 779 + "__id__": 824 }, "_lpos": { "__type__": "cc.Vec3", @@ -3345,50 +3345,53 @@ "__id__": 191 }, { - "__id__": 211 + "__id__": 219 }, { - "__id__": 241 + "__id__": 249 }, { - "__id__": 247 + "__id__": 255 }, { - "__id__": 270 + "__id__": 278 }, { - "__id__": 288 + "__id__": 296 }, { - "__id__": 318 + "__id__": 326 }, { - "__id__": 348 + "__id__": 356 }, { - "__id__": 378 + "__id__": 386 }, { - "__id__": 408 + "__id__": 416 }, { - "__id__": 735 + "__id__": 743 + }, + { + "__id__": 773 } ], "_active": true, "_components": [ { - "__id__": 765 + "__id__": 810 }, { - "__id__": 767 + "__id__": 812 }, { - "__id__": 769 + "__id__": 814 } ], "_prefab": { - "__id__": 772 + "__id__": 817 }, "_lpos": { "__type__": "cc.Vec3", @@ -4500,16 +4503,19 @@ "_children": [ { "__id__": 192 + }, + { + "__id__": 208 } ], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 216 } ], "_prefab": { - "__id__": 210 + "__id__": 218 }, "_lpos": { "__type__": "cc.Vec3", @@ -4872,6 +4878,193 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 209 + }, + { + "__id__": 211 + }, + { + "__id__": 213 + } + ], + "_prefab": { + "__id__": 215 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 276.088, + "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 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 208 + }, + "_enabled": true, + "__prefab": { + "__id__": 210 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 85.240234375, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e9OqwmY/RE8LNyetGnSDbD" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 208 + }, + "_enabled": true, + "__prefab": { + "__id__": 212 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "{{0}}/{{1}}", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 20, + "_fontSize": 20, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1x0pJnLFLR6jRk4IlG7i6" + }, + { + "__type__": "545c05XsG9GDJispEGWKvYv", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 208 + }, + "_enabled": true, + "__prefab": { + "__id__": 214 + }, + "templateMode": true, + "watchPath": "", + "labelType": "cc.Label", + "watchPathArr": [ + "data.hero.exp", + "data.hero.next_exp" + ], + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "864MdLPKFB36/ZHqhGAp34" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9fvDU28f1N5bjscaSbkpeW", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -4882,7 +5075,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 217 }, "_contentSize": { "__type__": "cc.Size", @@ -4923,29 +5116,29 @@ }, "_children": [ { - "__id__": 212 + "__id__": 220 }, { - "__id__": 218 + "__id__": 226 }, { - "__id__": 224 - }, - { - "__id__": 230 - } - ], - "_active": false, - "_components": [ - { - "__id__": 236 + "__id__": 232 }, { "__id__": 238 } ], + "_active": false, + "_components": [ + { + "__id__": 244 + }, + { + "__id__": 246 + } + ], "_prefab": { - "__id__": 240 + "__id__": 248 }, "_lpos": { "__type__": "cc.Vec3", @@ -4982,20 +5175,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 219 }, "_children": [], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 221 }, { - "__id__": 215 + "__id__": 223 } ], "_prefab": { - "__id__": 217 + "__id__": 225 }, "_lpos": { "__type__": "cc.Vec3", @@ -5032,11 +5225,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 222 }, "_contentSize": { "__type__": "cc.Size", @@ -5060,11 +5253,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 224 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5118,20 +5311,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 219 }, "_children": [], "_active": true, "_components": [ { - "__id__": 219 + "__id__": 227 }, { - "__id__": 221 + "__id__": 229 } ], "_prefab": { - "__id__": 223 + "__id__": 231 }, "_lpos": { "__type__": "cc.Vec3", @@ -5168,11 +5361,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 228 }, "_contentSize": { "__type__": "cc.Size", @@ -5196,11 +5389,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 230 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5254,20 +5447,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 219 }, "_children": [], "_active": true, "_components": [ { - "__id__": 225 + "__id__": 233 }, { - "__id__": 227 + "__id__": 235 } ], "_prefab": { - "__id__": 229 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -5304,11 +5497,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 234 }, "_contentSize": { "__type__": "cc.Size", @@ -5332,11 +5525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 236 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5390,20 +5583,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 219 }, "_children": [], "_active": true, "_components": [ { - "__id__": 231 + "__id__": 239 }, { - "__id__": 233 + "__id__": 241 } ], "_prefab": { - "__id__": 235 + "__id__": 243 }, "_lpos": { "__type__": "cc.Vec3", @@ -5440,11 +5633,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 240 }, "_contentSize": { "__type__": "cc.Size", @@ -5468,11 +5661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 242 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5526,11 +5719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 237 + "__id__": 245 }, "_contentSize": { "__type__": "cc.Size", @@ -5554,11 +5747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 247 }, "_resizeMode": 0, "_layoutType": 1, @@ -5611,14 +5804,14 @@ "_active": true, "_components": [ { - "__id__": 242 + "__id__": 250 }, { - "__id__": 244 + "__id__": 252 } ], "_prefab": { - "__id__": 246 + "__id__": 254 }, "_lpos": { "__type__": "cc.Vec3", @@ -5655,11 +5848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 249 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 251 }, "_contentSize": { "__type__": "cc.Size", @@ -5683,11 +5876,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 241 + "__id__": 249 }, "_enabled": true, "__prefab": { - "__id__": 245 + "__id__": 253 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5745,29 +5938,29 @@ }, "_children": [ { - "__id__": 248 + "__id__": 256 }, { - "__id__": 254 + "__id__": 262 } ], "_active": true, "_components": [ { - "__id__": 260 + "__id__": 268 }, { - "__id__": 262 + "__id__": 270 }, { - "__id__": 264 + "__id__": 272 }, { - "__id__": 266 + "__id__": 274 } ], "_prefab": { - "__id__": 269 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -5804,20 +5997,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 247 + "__id__": 255 }, "_children": [], "_active": false, "_components": [ { - "__id__": 249 + "__id__": 257 }, { - "__id__": 251 + "__id__": 259 } ], "_prefab": { - "__id__": 253 + "__id__": 261 }, "_lpos": { "__type__": "cc.Vec3", @@ -5854,11 +6047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 256 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 258 }, "_contentSize": { "__type__": "cc.Size", @@ -5882,11 +6075,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 256 }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 260 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5940,20 +6133,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 247 + "__id__": 255 }, "_children": [], "_active": true, "_components": [ { - "__id__": 255 + "__id__": 263 }, { - "__id__": 257 + "__id__": 265 } ], "_prefab": { - "__id__": 259 + "__id__": 267 }, "_lpos": { "__type__": "cc.Vec3", @@ -5990,11 +6183,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 264 }, "_contentSize": { "__type__": "cc.Size", @@ -6018,11 +6211,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 266 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6076,11 +6269,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 255 }, "_enabled": true, "__prefab": { - "__id__": 261 + "__id__": 269 }, "_contentSize": { "__type__": "cc.Size", @@ -6104,11 +6297,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 255 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 271 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6149,11 +6342,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 255 }, "_enabled": true, "__prefab": { - "__id__": 265 + "__id__": 273 }, "_type": 3, "_inverted": false, @@ -6171,15 +6364,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 255 }, "_enabled": true, "__prefab": { - "__id__": 267 + "__id__": 275 }, "clickEvents": [ { - "__id__": 268 + "__id__": 276 } ], "_interactable": true, @@ -6258,20 +6451,20 @@ }, "_children": [ { - "__id__": 271 + "__id__": 279 }, { - "__id__": 277 + "__id__": 285 } ], "_active": true, "_components": [ { - "__id__": 285 + "__id__": 293 } ], "_prefab": { - "__id__": 287 + "__id__": 295 }, "_lpos": { "__type__": "cc.Vec3", @@ -6308,20 +6501,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 270 + "__id__": 278 }, "_children": [], "_active": true, "_components": [ { - "__id__": 272 + "__id__": 280 }, { - "__id__": 274 + "__id__": 282 } ], "_prefab": { - "__id__": 276 + "__id__": 284 }, "_lpos": { "__type__": "cc.Vec3", @@ -6358,11 +6551,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 271 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 281 }, "_contentSize": { "__type__": "cc.Size", @@ -6386,11 +6579,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 271 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 283 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6444,23 +6637,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 270 + "__id__": 278 }, "_children": [], "_active": true, "_components": [ { - "__id__": 278 + "__id__": 286 }, { - "__id__": 280 + "__id__": 288 }, { - "__id__": 282 + "__id__": 290 } ], "_prefab": { - "__id__": 284 + "__id__": 292 }, "_lpos": { "__type__": "cc.Vec3", @@ -6497,11 +6690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 285 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 287 }, "_contentSize": { "__type__": "cc.Size", @@ -6525,11 +6718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 285 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 289 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6593,11 +6786,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 285 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 291 }, "templateMode": true, "watchPath": "", @@ -6630,11 +6823,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 294 }, "_contentSize": { "__type__": "cc.Size", @@ -6675,26 +6868,26 @@ }, "_children": [ { - "__id__": 289 + "__id__": 297 }, { - "__id__": 295 + "__id__": 303 }, { - "__id__": 301 + "__id__": 309 }, { - "__id__": 307 + "__id__": 315 } ], "_active": true, "_components": [ { - "__id__": 315 + "__id__": 323 } ], "_prefab": { - "__id__": 317 + "__id__": 325 }, "_lpos": { "__type__": "cc.Vec3", @@ -6731,20 +6924,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 288 + "__id__": 296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 290 + "__id__": 298 }, { - "__id__": 292 + "__id__": 300 } ], "_prefab": { - "__id__": 294 + "__id__": 302 }, "_lpos": { "__type__": "cc.Vec3", @@ -6781,11 +6974,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 299 }, "_contentSize": { "__type__": "cc.Size", @@ -6809,11 +7002,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 301 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6867,20 +7060,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 288 + "__id__": 296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 296 + "__id__": 304 }, { - "__id__": 298 + "__id__": 306 } ], "_prefab": { - "__id__": 300 + "__id__": 308 }, "_lpos": { "__type__": "cc.Vec3", @@ -6917,11 +7110,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 303 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 305 }, "_contentSize": { "__type__": "cc.Size", @@ -6945,11 +7138,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 303 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 307 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7003,20 +7196,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 288 + "__id__": 296 }, "_children": [], "_active": false, "_components": [ { - "__id__": 302 + "__id__": 310 }, { - "__id__": 304 + "__id__": 312 } ], "_prefab": { - "__id__": 306 + "__id__": 314 }, "_lpos": { "__type__": "cc.Vec3", @@ -7053,11 +7246,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 309 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 311 }, "_contentSize": { "__type__": "cc.Size", @@ -7081,11 +7274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 309 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 313 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7162,23 +7355,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 288 + "__id__": 296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 316 }, { - "__id__": 310 + "__id__": 318 }, { - "__id__": 312 + "__id__": 320 } ], "_prefab": { - "__id__": 314 + "__id__": 322 }, "_lpos": { "__type__": "cc.Vec3", @@ -7215,11 +7408,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 317 }, "_contentSize": { "__type__": "cc.Size", @@ -7243,11 +7436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 319 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7311,11 +7504,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 321 }, "templateMode": true, "watchPath": "vm", @@ -7348,11 +7541,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 288 + "__id__": 296 }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 324 }, "_contentSize": { "__type__": "cc.Size", @@ -7393,26 +7586,26 @@ }, "_children": [ { - "__id__": 319 + "__id__": 327 }, { - "__id__": 325 + "__id__": 333 }, { - "__id__": 331 + "__id__": 339 }, { - "__id__": 337 + "__id__": 345 } ], "_active": true, "_components": [ { - "__id__": 345 + "__id__": 353 } ], "_prefab": { - "__id__": 347 + "__id__": 355 }, "_lpos": { "__type__": "cc.Vec3", @@ -7449,20 +7642,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 318 + "__id__": 326 }, "_children": [], "_active": true, "_components": [ { - "__id__": 320 + "__id__": 328 }, { - "__id__": 322 + "__id__": 330 } ], "_prefab": { - "__id__": 324 + "__id__": 332 }, "_lpos": { "__type__": "cc.Vec3", @@ -7499,11 +7692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 329 }, "_contentSize": { "__type__": "cc.Size", @@ -7527,11 +7720,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 331 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7585,20 +7778,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 318 + "__id__": 326 }, "_children": [], "_active": true, "_components": [ { - "__id__": 326 + "__id__": 334 }, { - "__id__": 328 + "__id__": 336 } ], "_prefab": { - "__id__": 330 + "__id__": 338 }, "_lpos": { "__type__": "cc.Vec3", @@ -7635,11 +7828,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 333 }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 335 }, "_contentSize": { "__type__": "cc.Size", @@ -7663,11 +7856,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 333 }, "_enabled": true, "__prefab": { - "__id__": 329 + "__id__": 337 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7721,20 +7914,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 318 + "__id__": 326 }, "_children": [], "_active": false, "_components": [ { - "__id__": 332 + "__id__": 340 }, { - "__id__": 334 + "__id__": 342 } ], "_prefab": { - "__id__": 336 + "__id__": 344 }, "_lpos": { "__type__": "cc.Vec3", @@ -7771,11 +7964,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 331 + "__id__": 339 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 341 }, "_contentSize": { "__type__": "cc.Size", @@ -7799,11 +7992,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 331 + "__id__": 339 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 343 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7880,23 +8073,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 318 + "__id__": 326 }, "_children": [], "_active": true, "_components": [ { - "__id__": 338 + "__id__": 346 }, { - "__id__": 340 + "__id__": 348 }, { - "__id__": 342 + "__id__": 350 } ], "_prefab": { - "__id__": 344 + "__id__": 352 }, "_lpos": { "__type__": "cc.Vec3", @@ -7933,11 +8126,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -7961,11 +8154,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 341 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8029,11 +8222,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 343 + "__id__": 351 }, "templateMode": true, "watchPath": "vm", @@ -8066,11 +8259,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 318 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 354 }, "_contentSize": { "__type__": "cc.Size", @@ -8111,26 +8304,26 @@ }, "_children": [ { - "__id__": 349 + "__id__": 357 }, { - "__id__": 355 + "__id__": 363 }, { - "__id__": 361 + "__id__": 369 }, { - "__id__": 367 + "__id__": 375 } ], "_active": true, "_components": [ { - "__id__": 375 + "__id__": 383 } ], "_prefab": { - "__id__": 377 + "__id__": 385 }, "_lpos": { "__type__": "cc.Vec3", @@ -8167,20 +8360,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 348 + "__id__": 356 }, "_children": [], "_active": true, "_components": [ { - "__id__": 350 + "__id__": 358 }, { - "__id__": 352 + "__id__": 360 } ], "_prefab": { - "__id__": 354 + "__id__": 362 }, "_lpos": { "__type__": "cc.Vec3", @@ -8217,11 +8410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 359 }, "_contentSize": { "__type__": "cc.Size", @@ -8245,11 +8438,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 361 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8303,20 +8496,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 348 + "__id__": 356 }, "_children": [], "_active": true, "_components": [ { - "__id__": 356 + "__id__": 364 }, { - "__id__": 358 + "__id__": 366 } ], "_prefab": { - "__id__": 360 + "__id__": 368 }, "_lpos": { "__type__": "cc.Vec3", @@ -8353,11 +8546,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 365 }, "_contentSize": { "__type__": "cc.Size", @@ -8381,11 +8574,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 367 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8439,20 +8632,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 348 + "__id__": 356 }, "_children": [], "_active": false, "_components": [ { - "__id__": 362 + "__id__": 370 }, { - "__id__": 364 + "__id__": 372 } ], "_prefab": { - "__id__": 366 + "__id__": 374 }, "_lpos": { "__type__": "cc.Vec3", @@ -8489,11 +8682,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 361 + "__id__": 369 }, "_enabled": true, "__prefab": { - "__id__": 363 + "__id__": 371 }, "_contentSize": { "__type__": "cc.Size", @@ -8517,11 +8710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 361 + "__id__": 369 }, "_enabled": true, "__prefab": { - "__id__": 365 + "__id__": 373 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8598,23 +8791,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 348 + "__id__": 356 }, "_children": [], "_active": true, "_components": [ { - "__id__": 368 + "__id__": 376 }, { - "__id__": 370 + "__id__": 378 }, { - "__id__": 372 + "__id__": 380 } ], "_prefab": { - "__id__": 374 + "__id__": 382 }, "_lpos": { "__type__": "cc.Vec3", @@ -8651,11 +8844,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 367 + "__id__": 375 }, "_enabled": true, "__prefab": { - "__id__": 369 + "__id__": 377 }, "_contentSize": { "__type__": "cc.Size", @@ -8679,11 +8872,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 367 + "__id__": 375 }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 379 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8747,11 +8940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 367 + "__id__": 375 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 381 }, "templateMode": true, "watchPath": "vm", @@ -8784,11 +8977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 348 + "__id__": 356 }, "_enabled": true, "__prefab": { - "__id__": 376 + "__id__": 384 }, "_contentSize": { "__type__": "cc.Size", @@ -8829,26 +9022,26 @@ }, "_children": [ { - "__id__": 379 + "__id__": 387 }, { - "__id__": 385 + "__id__": 393 }, { - "__id__": 391 + "__id__": 399 }, { - "__id__": 397 + "__id__": 405 } ], "_active": true, "_components": [ { - "__id__": 405 + "__id__": 413 } ], "_prefab": { - "__id__": 407 + "__id__": 415 }, "_lpos": { "__type__": "cc.Vec3", @@ -8885,20 +9078,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 378 + "__id__": 386 }, "_children": [], "_active": true, "_components": [ { - "__id__": 380 + "__id__": 388 }, { - "__id__": 382 + "__id__": 390 } ], "_prefab": { - "__id__": 384 + "__id__": 392 }, "_lpos": { "__type__": "cc.Vec3", @@ -8935,11 +9128,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 379 + "__id__": 387 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 389 }, "_contentSize": { "__type__": "cc.Size", @@ -8963,11 +9156,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 379 + "__id__": 387 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 391 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9021,20 +9214,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 378 + "__id__": 386 }, "_children": [], "_active": true, "_components": [ { - "__id__": 386 + "__id__": 394 }, { - "__id__": 388 + "__id__": 396 } ], "_prefab": { - "__id__": 390 + "__id__": 398 }, "_lpos": { "__type__": "cc.Vec3", @@ -9071,11 +9264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 385 + "__id__": 393 }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 395 }, "_contentSize": { "__type__": "cc.Size", @@ -9099,11 +9292,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 385 + "__id__": 393 }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 397 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9157,20 +9350,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 378 + "__id__": 386 }, "_children": [], "_active": false, "_components": [ { - "__id__": 392 + "__id__": 400 }, { - "__id__": 394 + "__id__": 402 } ], "_prefab": { - "__id__": 396 + "__id__": 404 }, "_lpos": { "__type__": "cc.Vec3", @@ -9207,11 +9400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 399 }, "_enabled": true, "__prefab": { - "__id__": 393 + "__id__": 401 }, "_contentSize": { "__type__": "cc.Size", @@ -9235,11 +9428,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 399 }, "_enabled": true, "__prefab": { - "__id__": 395 + "__id__": 403 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9316,23 +9509,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 378 + "__id__": 386 }, "_children": [], "_active": true, "_components": [ { - "__id__": 398 + "__id__": 406 }, { - "__id__": 400 + "__id__": 408 }, { - "__id__": 402 + "__id__": 410 } ], "_prefab": { - "__id__": 404 + "__id__": 412 }, "_lpos": { "__type__": "cc.Vec3", @@ -9369,11 +9562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 405 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 407 }, "_contentSize": { "__type__": "cc.Size", @@ -9397,11 +9590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 405 }, "_enabled": true, "__prefab": { - "__id__": 401 + "__id__": 409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9465,11 +9658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 405 }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 411 }, "templateMode": true, "watchPath": "vm", @@ -9502,11 +9695,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 378 + "__id__": 386 }, "_enabled": true, "__prefab": { - "__id__": 406 + "__id__": 414 }, "_contentSize": { "__type__": "cc.Size", @@ -9546,30 +9739,30 @@ "__id__": 142 }, "_children": [ - { - "__id__": 409 - }, { "__id__": 417 }, { - "__id__": 423 + "__id__": 425 }, { - "__id__": 715 + "__id__": 431 + }, + { + "__id__": 723 } ], "_active": true, "_components": [ { - "__id__": 730 + "__id__": 738 }, { - "__id__": 732 + "__id__": 740 } ], "_prefab": { - "__id__": 734 + "__id__": 742 }, "_lpos": { "__type__": "cc.Vec3", @@ -9606,23 +9799,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 408 + "__id__": 416 }, "_children": [], "_active": true, "_components": [ { - "__id__": 410 + "__id__": 418 }, { - "__id__": 412 + "__id__": 420 }, { - "__id__": 414 + "__id__": 422 } ], "_prefab": { - "__id__": 416 + "__id__": 424 }, "_lpos": { "__type__": "cc.Vec3", @@ -9659,11 +9852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 409 + "__id__": 417 }, "_enabled": true, "__prefab": { - "__id__": 411 + "__id__": 419 }, "_contentSize": { "__type__": "cc.Size", @@ -9687,11 +9880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 409 + "__id__": 417 }, "_enabled": true, "__prefab": { - "__id__": 413 + "__id__": 421 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9732,11 +9925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 409 + "__id__": 417 }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 423 }, "_alignFlags": 45, "_target": null, @@ -9781,20 +9974,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 408 + "__id__": 416 }, "_children": [], "_active": true, "_components": [ { - "__id__": 418 + "__id__": 426 }, { - "__id__": 420 + "__id__": 428 } ], "_prefab": { - "__id__": 422 + "__id__": 430 }, "_lpos": { "__type__": "cc.Vec3", @@ -9831,11 +10024,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 417 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 427 }, "_contentSize": { "__type__": "cc.Size", @@ -9859,11 +10052,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 417 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 421 + "__id__": 429 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9940,54 +10133,54 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 408 + "__id__": 416 }, "_children": [ { - "__id__": 424 + "__id__": 432 }, { - "__id__": 450 + "__id__": 458 }, { - "__id__": 476 + "__id__": 484 }, { - "__id__": 502 + "__id__": 510 }, { - "__id__": 528 + "__id__": 536 }, { - "__id__": 554 + "__id__": 562 }, { - "__id__": 580 + "__id__": 588 }, { - "__id__": 606 + "__id__": 614 }, { - "__id__": 632 + "__id__": 640 }, { - "__id__": 658 + "__id__": 666 }, { - "__id__": 684 + "__id__": 692 } ], "_active": true, "_components": [ { - "__id__": 710 + "__id__": 718 }, { - "__id__": 712 + "__id__": 720 } ], "_prefab": { - "__id__": 714 + "__id__": 722 }, "_lpos": { "__type__": "cc.Vec3", @@ -10024,27 +10217,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 425 - }, { "__id__": 433 }, { - "__id__": 439 + "__id__": 441 + }, + { + "__id__": 447 } ], "_active": true, "_components": [ { - "__id__": 447 + "__id__": 455 } ], "_prefab": { - "__id__": 449 + "__id__": 457 }, "_lpos": { "__type__": "cc.Vec3", @@ -10081,23 +10274,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 424 + "__id__": 432 }, "_children": [], "_active": true, "_components": [ { - "__id__": 426 + "__id__": 434 }, { - "__id__": 428 + "__id__": 436 }, { - "__id__": 430 + "__id__": 438 } ], "_prefab": { - "__id__": 432 + "__id__": 440 }, "_lpos": { "__type__": "cc.Vec3", @@ -10134,11 +10327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 425 + "__id__": 433 }, "_enabled": true, "__prefab": { - "__id__": 427 + "__id__": 435 }, "_contentSize": { "__type__": "cc.Size", @@ -10162,11 +10355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 425 + "__id__": 433 }, "_enabled": true, "__prefab": { - "__id__": 429 + "__id__": 437 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10207,11 +10400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 425 + "__id__": 433 }, "_enabled": true, "__prefab": { - "__id__": 431 + "__id__": 439 }, "_alignFlags": 45, "_target": null, @@ -10256,20 +10449,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 424 + "__id__": 432 }, "_children": [], "_active": true, "_components": [ { - "__id__": 434 + "__id__": 442 }, { - "__id__": 436 + "__id__": 444 } ], "_prefab": { - "__id__": 438 + "__id__": 446 }, "_lpos": { "__type__": "cc.Vec3", @@ -10306,11 +10499,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 433 + "__id__": 441 }, "_enabled": true, "__prefab": { - "__id__": 435 + "__id__": 443 }, "_contentSize": { "__type__": "cc.Size", @@ -10334,11 +10527,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 433 + "__id__": 441 }, "_enabled": true, "__prefab": { - "__id__": 437 + "__id__": 445 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10415,23 +10608,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 424 + "__id__": 432 }, "_children": [], "_active": true, "_components": [ { - "__id__": 440 + "__id__": 448 }, { - "__id__": 442 + "__id__": 450 }, { - "__id__": 444 + "__id__": 452 } ], "_prefab": { - "__id__": 446 + "__id__": 454 }, "_lpos": { "__type__": "cc.Vec3", @@ -10468,11 +10661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 447 }, "_enabled": true, "__prefab": { - "__id__": 441 + "__id__": 449 }, "_contentSize": { "__type__": "cc.Size", @@ -10496,11 +10689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 447 }, "_enabled": true, "__prefab": { - "__id__": 443 + "__id__": 451 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10564,11 +10757,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 447 }, "_enabled": true, "__prefab": { - "__id__": 445 + "__id__": 453 }, "templateMode": true, "watchPath": "", @@ -10601,11 +10794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 424 + "__id__": 432 }, "_enabled": true, "__prefab": { - "__id__": 448 + "__id__": 456 }, "_contentSize": { "__type__": "cc.Size", @@ -10642,27 +10835,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 451 - }, { "__id__": 459 }, { - "__id__": 465 + "__id__": 467 + }, + { + "__id__": 473 } ], "_active": true, "_components": [ { - "__id__": 473 + "__id__": 481 } ], "_prefab": { - "__id__": 475 + "__id__": 483 }, "_lpos": { "__type__": "cc.Vec3", @@ -10699,23 +10892,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 450 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ { - "__id__": 452 + "__id__": 460 }, { - "__id__": 454 + "__id__": 462 }, { - "__id__": 456 + "__id__": 464 } ], "_prefab": { - "__id__": 458 + "__id__": 466 }, "_lpos": { "__type__": "cc.Vec3", @@ -10752,11 +10945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 451 + "__id__": 459 }, "_enabled": true, "__prefab": { - "__id__": 453 + "__id__": 461 }, "_contentSize": { "__type__": "cc.Size", @@ -10780,11 +10973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 451 + "__id__": 459 }, "_enabled": true, "__prefab": { - "__id__": 455 + "__id__": 463 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10825,11 +11018,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 451 + "__id__": 459 }, "_enabled": true, "__prefab": { - "__id__": 457 + "__id__": 465 }, "_alignFlags": 45, "_target": null, @@ -10874,20 +11067,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 450 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ { - "__id__": 460 + "__id__": 468 }, { - "__id__": 462 + "__id__": 470 } ], "_prefab": { - "__id__": 464 + "__id__": 472 }, "_lpos": { "__type__": "cc.Vec3", @@ -10924,11 +11117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 467 }, "_enabled": true, "__prefab": { - "__id__": 461 + "__id__": 469 }, "_contentSize": { "__type__": "cc.Size", @@ -10952,11 +11145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 467 }, "_enabled": true, "__prefab": { - "__id__": 463 + "__id__": 471 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11033,23 +11226,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 450 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ { - "__id__": 466 + "__id__": 474 }, { - "__id__": 468 + "__id__": 476 }, { - "__id__": 470 + "__id__": 478 } ], "_prefab": { - "__id__": 472 + "__id__": 480 }, "_lpos": { "__type__": "cc.Vec3", @@ -11086,11 +11279,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 473 }, "_enabled": true, "__prefab": { - "__id__": 467 + "__id__": 475 }, "_contentSize": { "__type__": "cc.Size", @@ -11114,11 +11307,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 473 }, "_enabled": true, "__prefab": { - "__id__": 469 + "__id__": 477 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11182,11 +11375,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 473 }, "_enabled": true, "__prefab": { - "__id__": 471 + "__id__": 479 }, "templateMode": true, "watchPath": "", @@ -11219,11 +11412,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 450 + "__id__": 458 }, "_enabled": true, "__prefab": { - "__id__": 474 + "__id__": 482 }, "_contentSize": { "__type__": "cc.Size", @@ -11260,27 +11453,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 477 - }, { "__id__": 485 }, { - "__id__": 491 + "__id__": 493 + }, + { + "__id__": 499 } ], "_active": true, "_components": [ { - "__id__": 499 + "__id__": 507 } ], "_prefab": { - "__id__": 501 + "__id__": 509 }, "_lpos": { "__type__": "cc.Vec3", @@ -11317,23 +11510,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 476 + "__id__": 484 }, "_children": [], "_active": true, "_components": [ { - "__id__": 478 + "__id__": 486 }, { - "__id__": 480 + "__id__": 488 }, { - "__id__": 482 + "__id__": 490 } ], "_prefab": { - "__id__": 484 + "__id__": 492 }, "_lpos": { "__type__": "cc.Vec3", @@ -11370,11 +11563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 477 + "__id__": 485 }, "_enabled": true, "__prefab": { - "__id__": 479 + "__id__": 487 }, "_contentSize": { "__type__": "cc.Size", @@ -11398,11 +11591,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 477 + "__id__": 485 }, "_enabled": true, "__prefab": { - "__id__": 481 + "__id__": 489 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11443,11 +11636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 477 + "__id__": 485 }, "_enabled": true, "__prefab": { - "__id__": 483 + "__id__": 491 }, "_alignFlags": 45, "_target": null, @@ -11492,20 +11685,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 476 + "__id__": 484 }, "_children": [], "_active": true, "_components": [ { - "__id__": 486 + "__id__": 494 }, { - "__id__": 488 + "__id__": 496 } ], "_prefab": { - "__id__": 490 + "__id__": 498 }, "_lpos": { "__type__": "cc.Vec3", @@ -11542,11 +11735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 493 }, "_enabled": true, "__prefab": { - "__id__": 487 + "__id__": 495 }, "_contentSize": { "__type__": "cc.Size", @@ -11570,11 +11763,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 493 }, "_enabled": true, "__prefab": { - "__id__": 489 + "__id__": 497 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11651,23 +11844,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 476 + "__id__": 484 }, "_children": [], "_active": true, "_components": [ { - "__id__": 492 + "__id__": 500 }, { - "__id__": 494 + "__id__": 502 }, { - "__id__": 496 + "__id__": 504 } ], "_prefab": { - "__id__": 498 + "__id__": 506 }, "_lpos": { "__type__": "cc.Vec3", @@ -11704,11 +11897,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 493 + "__id__": 501 }, "_contentSize": { "__type__": "cc.Size", @@ -11732,11 +11925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 495 + "__id__": 503 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11800,11 +11993,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 497 + "__id__": 505 }, "templateMode": true, "watchPath": "", @@ -11837,11 +12030,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 476 + "__id__": 484 }, "_enabled": true, "__prefab": { - "__id__": 500 + "__id__": 508 }, "_contentSize": { "__type__": "cc.Size", @@ -11878,27 +12071,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 503 - }, { "__id__": 511 }, { - "__id__": 517 + "__id__": 519 + }, + { + "__id__": 525 } ], "_active": true, "_components": [ { - "__id__": 525 + "__id__": 533 } ], "_prefab": { - "__id__": 527 + "__id__": 535 }, "_lpos": { "__type__": "cc.Vec3", @@ -11935,23 +12128,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 502 + "__id__": 510 }, "_children": [], "_active": true, "_components": [ { - "__id__": 504 + "__id__": 512 }, { - "__id__": 506 + "__id__": 514 }, { - "__id__": 508 + "__id__": 516 } ], "_prefab": { - "__id__": 510 + "__id__": 518 }, "_lpos": { "__type__": "cc.Vec3", @@ -11988,11 +12181,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 511 }, "_enabled": true, "__prefab": { - "__id__": 505 + "__id__": 513 }, "_contentSize": { "__type__": "cc.Size", @@ -12016,11 +12209,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 511 }, "_enabled": true, "__prefab": { - "__id__": 507 + "__id__": 515 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12061,11 +12254,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 511 }, "_enabled": true, "__prefab": { - "__id__": 509 + "__id__": 517 }, "_alignFlags": 45, "_target": null, @@ -12110,20 +12303,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 502 + "__id__": 510 }, "_children": [], "_active": true, "_components": [ { - "__id__": 512 + "__id__": 520 }, { - "__id__": 514 + "__id__": 522 } ], "_prefab": { - "__id__": 516 + "__id__": 524 }, "_lpos": { "__type__": "cc.Vec3", @@ -12160,11 +12353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 519 }, "_enabled": true, "__prefab": { - "__id__": 513 + "__id__": 521 }, "_contentSize": { "__type__": "cc.Size", @@ -12188,11 +12381,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 519 }, "_enabled": true, "__prefab": { - "__id__": 515 + "__id__": 523 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12269,23 +12462,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 502 + "__id__": 510 }, "_children": [], "_active": true, "_components": [ { - "__id__": 518 + "__id__": 526 }, { - "__id__": 520 + "__id__": 528 }, { - "__id__": 522 + "__id__": 530 } ], "_prefab": { - "__id__": 524 + "__id__": 532 }, "_lpos": { "__type__": "cc.Vec3", @@ -12322,11 +12515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 525 }, "_enabled": true, "__prefab": { - "__id__": 519 + "__id__": 527 }, "_contentSize": { "__type__": "cc.Size", @@ -12350,11 +12543,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 525 }, "_enabled": true, "__prefab": { - "__id__": 521 + "__id__": 529 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12418,11 +12611,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 525 }, "_enabled": true, "__prefab": { - "__id__": 523 + "__id__": 531 }, "templateMode": true, "watchPath": "", @@ -12455,11 +12648,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 502 + "__id__": 510 }, "_enabled": true, "__prefab": { - "__id__": 526 + "__id__": 534 }, "_contentSize": { "__type__": "cc.Size", @@ -12496,27 +12689,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 529 - }, { "__id__": 537 }, { - "__id__": 543 + "__id__": 545 + }, + { + "__id__": 551 } ], "_active": true, "_components": [ { - "__id__": 551 + "__id__": 559 } ], "_prefab": { - "__id__": 553 + "__id__": 561 }, "_lpos": { "__type__": "cc.Vec3", @@ -12553,23 +12746,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 528 + "__id__": 536 }, "_children": [], "_active": true, "_components": [ { - "__id__": 530 + "__id__": 538 }, { - "__id__": 532 + "__id__": 540 }, { - "__id__": 534 + "__id__": 542 } ], "_prefab": { - "__id__": 536 + "__id__": 544 }, "_lpos": { "__type__": "cc.Vec3", @@ -12606,11 +12799,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 537 }, "_enabled": true, "__prefab": { - "__id__": 531 + "__id__": 539 }, "_contentSize": { "__type__": "cc.Size", @@ -12634,11 +12827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 537 }, "_enabled": true, "__prefab": { - "__id__": 533 + "__id__": 541 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12679,11 +12872,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 537 }, "_enabled": true, "__prefab": { - "__id__": 535 + "__id__": 543 }, "_alignFlags": 45, "_target": null, @@ -12728,20 +12921,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 528 + "__id__": 536 }, "_children": [], "_active": true, "_components": [ { - "__id__": 538 + "__id__": 546 }, { - "__id__": 540 + "__id__": 548 } ], "_prefab": { - "__id__": 542 + "__id__": 550 }, "_lpos": { "__type__": "cc.Vec3", @@ -12778,11 +12971,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 537 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 539 + "__id__": 547 }, "_contentSize": { "__type__": "cc.Size", @@ -12806,11 +12999,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 537 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 541 + "__id__": 549 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12887,23 +13080,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 528 + "__id__": 536 }, "_children": [], "_active": true, "_components": [ { - "__id__": 544 + "__id__": 552 }, { - "__id__": 546 + "__id__": 554 }, { - "__id__": 548 + "__id__": 556 } ], "_prefab": { - "__id__": 550 + "__id__": 558 }, "_lpos": { "__type__": "cc.Vec3", @@ -12940,11 +13133,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 545 + "__id__": 553 }, "_contentSize": { "__type__": "cc.Size", @@ -12968,11 +13161,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 547 + "__id__": 555 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13036,11 +13229,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 549 + "__id__": 557 }, "templateMode": true, "watchPath": "", @@ -13073,11 +13266,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 528 + "__id__": 536 }, "_enabled": true, "__prefab": { - "__id__": 552 + "__id__": 560 }, "_contentSize": { "__type__": "cc.Size", @@ -13114,27 +13307,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 555 - }, { "__id__": 563 }, { - "__id__": 569 + "__id__": 571 + }, + { + "__id__": 577 } ], "_active": true, "_components": [ { - "__id__": 577 + "__id__": 585 } ], "_prefab": { - "__id__": 579 + "__id__": 587 }, "_lpos": { "__type__": "cc.Vec3", @@ -13171,23 +13364,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 554 + "__id__": 562 }, "_children": [], "_active": true, "_components": [ { - "__id__": 556 + "__id__": 564 }, { - "__id__": 558 + "__id__": 566 }, { - "__id__": 560 + "__id__": 568 } ], "_prefab": { - "__id__": 562 + "__id__": 570 }, "_lpos": { "__type__": "cc.Vec3", @@ -13224,11 +13417,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 555 + "__id__": 563 }, "_enabled": true, "__prefab": { - "__id__": 557 + "__id__": 565 }, "_contentSize": { "__type__": "cc.Size", @@ -13252,11 +13445,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 555 + "__id__": 563 }, "_enabled": true, "__prefab": { - "__id__": 559 + "__id__": 567 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13297,11 +13490,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 555 + "__id__": 563 }, "_enabled": true, "__prefab": { - "__id__": 561 + "__id__": 569 }, "_alignFlags": 45, "_target": null, @@ -13346,20 +13539,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 554 + "__id__": 562 }, "_children": [], "_active": true, "_components": [ { - "__id__": 564 + "__id__": 572 }, { - "__id__": 566 + "__id__": 574 } ], "_prefab": { - "__id__": 568 + "__id__": 576 }, "_lpos": { "__type__": "cc.Vec3", @@ -13396,11 +13589,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 563 + "__id__": 571 }, "_enabled": true, "__prefab": { - "__id__": 565 + "__id__": 573 }, "_contentSize": { "__type__": "cc.Size", @@ -13424,11 +13617,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 563 + "__id__": 571 }, "_enabled": true, "__prefab": { - "__id__": 567 + "__id__": 575 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13505,23 +13698,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 554 + "__id__": 562 }, "_children": [], "_active": true, "_components": [ { - "__id__": 570 + "__id__": 578 }, { - "__id__": 572 + "__id__": 580 }, { - "__id__": 574 + "__id__": 582 } ], "_prefab": { - "__id__": 576 + "__id__": 584 }, "_lpos": { "__type__": "cc.Vec3", @@ -13558,11 +13751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 577 }, "_enabled": true, "__prefab": { - "__id__": 571 + "__id__": 579 }, "_contentSize": { "__type__": "cc.Size", @@ -13586,11 +13779,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 577 }, "_enabled": true, "__prefab": { - "__id__": 573 + "__id__": 581 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13654,11 +13847,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 577 }, "_enabled": true, "__prefab": { - "__id__": 575 + "__id__": 583 }, "templateMode": true, "watchPath": "", @@ -13691,11 +13884,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 554 + "__id__": 562 }, "_enabled": true, "__prefab": { - "__id__": 578 + "__id__": 586 }, "_contentSize": { "__type__": "cc.Size", @@ -13732,27 +13925,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 581 - }, { "__id__": 589 }, { - "__id__": 595 + "__id__": 597 + }, + { + "__id__": 603 } ], "_active": true, "_components": [ { - "__id__": 603 + "__id__": 611 } ], "_prefab": { - "__id__": 605 + "__id__": 613 }, "_lpos": { "__type__": "cc.Vec3", @@ -13789,23 +13982,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 580 + "__id__": 588 }, "_children": [], "_active": true, "_components": [ { - "__id__": 582 + "__id__": 590 }, { - "__id__": 584 + "__id__": 592 }, { - "__id__": 586 + "__id__": 594 } ], "_prefab": { - "__id__": 588 + "__id__": 596 }, "_lpos": { "__type__": "cc.Vec3", @@ -13842,11 +14035,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 581 + "__id__": 589 }, "_enabled": true, "__prefab": { - "__id__": 583 + "__id__": 591 }, "_contentSize": { "__type__": "cc.Size", @@ -13870,11 +14063,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 581 + "__id__": 589 }, "_enabled": true, "__prefab": { - "__id__": 585 + "__id__": 593 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13915,11 +14108,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 581 + "__id__": 589 }, "_enabled": true, "__prefab": { - "__id__": 587 + "__id__": 595 }, "_alignFlags": 45, "_target": null, @@ -13964,20 +14157,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 580 + "__id__": 588 }, "_children": [], "_active": true, "_components": [ { - "__id__": 590 + "__id__": 598 }, { - "__id__": 592 + "__id__": 600 } ], "_prefab": { - "__id__": 594 + "__id__": 602 }, "_lpos": { "__type__": "cc.Vec3", @@ -14014,11 +14207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 589 + "__id__": 597 }, "_enabled": true, "__prefab": { - "__id__": 591 + "__id__": 599 }, "_contentSize": { "__type__": "cc.Size", @@ -14042,11 +14235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 589 + "__id__": 597 }, "_enabled": true, "__prefab": { - "__id__": 593 + "__id__": 601 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14123,23 +14316,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 580 + "__id__": 588 }, "_children": [], "_active": true, "_components": [ { - "__id__": 596 + "__id__": 604 }, { - "__id__": 598 + "__id__": 606 }, { - "__id__": 600 + "__id__": 608 } ], "_prefab": { - "__id__": 602 + "__id__": 610 }, "_lpos": { "__type__": "cc.Vec3", @@ -14176,11 +14369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 595 + "__id__": 603 }, "_enabled": true, "__prefab": { - "__id__": 597 + "__id__": 605 }, "_contentSize": { "__type__": "cc.Size", @@ -14204,11 +14397,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 595 + "__id__": 603 }, "_enabled": true, "__prefab": { - "__id__": 599 + "__id__": 607 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14272,11 +14465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 595 + "__id__": 603 }, "_enabled": true, "__prefab": { - "__id__": 601 + "__id__": 609 }, "templateMode": true, "watchPath": "", @@ -14309,11 +14502,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 580 + "__id__": 588 }, "_enabled": true, "__prefab": { - "__id__": 604 + "__id__": 612 }, "_contentSize": { "__type__": "cc.Size", @@ -14350,27 +14543,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 607 - }, { "__id__": 615 }, { - "__id__": 621 + "__id__": 623 + }, + { + "__id__": 629 } ], "_active": true, "_components": [ { - "__id__": 629 + "__id__": 637 } ], "_prefab": { - "__id__": 631 + "__id__": 639 }, "_lpos": { "__type__": "cc.Vec3", @@ -14407,23 +14600,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 606 + "__id__": 614 }, "_children": [], "_active": true, "_components": [ { - "__id__": 608 + "__id__": 616 }, { - "__id__": 610 + "__id__": 618 }, { - "__id__": 612 + "__id__": 620 } ], "_prefab": { - "__id__": 614 + "__id__": 622 }, "_lpos": { "__type__": "cc.Vec3", @@ -14460,11 +14653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 607 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 609 + "__id__": 617 }, "_contentSize": { "__type__": "cc.Size", @@ -14488,11 +14681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 607 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 611 + "__id__": 619 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14533,11 +14726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 607 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 613 + "__id__": 621 }, "_alignFlags": 45, "_target": null, @@ -14582,20 +14775,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 606 + "__id__": 614 }, "_children": [], "_active": true, "_components": [ { - "__id__": 616 + "__id__": 624 }, { - "__id__": 618 + "__id__": 626 } ], "_prefab": { - "__id__": 620 + "__id__": 628 }, "_lpos": { "__type__": "cc.Vec3", @@ -14632,11 +14825,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 615 + "__id__": 623 }, "_enabled": true, "__prefab": { - "__id__": 617 + "__id__": 625 }, "_contentSize": { "__type__": "cc.Size", @@ -14660,11 +14853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 615 + "__id__": 623 }, "_enabled": true, "__prefab": { - "__id__": 619 + "__id__": 627 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14741,23 +14934,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 606 + "__id__": 614 }, "_children": [], "_active": true, "_components": [ { - "__id__": 622 + "__id__": 630 }, { - "__id__": 624 + "__id__": 632 }, { - "__id__": 626 + "__id__": 634 } ], "_prefab": { - "__id__": 628 + "__id__": 636 }, "_lpos": { "__type__": "cc.Vec3", @@ -14794,11 +14987,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 621 + "__id__": 629 }, "_enabled": true, "__prefab": { - "__id__": 623 + "__id__": 631 }, "_contentSize": { "__type__": "cc.Size", @@ -14822,11 +15015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 621 + "__id__": 629 }, "_enabled": true, "__prefab": { - "__id__": 625 + "__id__": 633 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14890,11 +15083,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 621 + "__id__": 629 }, "_enabled": true, "__prefab": { - "__id__": 627 + "__id__": 635 }, "templateMode": true, "watchPath": "", @@ -14927,11 +15120,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 606 + "__id__": 614 }, "_enabled": true, "__prefab": { - "__id__": 630 + "__id__": 638 }, "_contentSize": { "__type__": "cc.Size", @@ -14968,27 +15161,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 633 - }, { "__id__": 641 }, { - "__id__": 647 + "__id__": 649 + }, + { + "__id__": 655 } ], "_active": true, "_components": [ { - "__id__": 655 + "__id__": 663 } ], "_prefab": { - "__id__": 657 + "__id__": 665 }, "_lpos": { "__type__": "cc.Vec3", @@ -15025,23 +15218,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 632 + "__id__": 640 }, "_children": [], "_active": true, "_components": [ { - "__id__": 634 + "__id__": 642 }, { - "__id__": 636 + "__id__": 644 }, { - "__id__": 638 + "__id__": 646 } ], "_prefab": { - "__id__": 640 + "__id__": 648 }, "_lpos": { "__type__": "cc.Vec3", @@ -15078,11 +15271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 633 + "__id__": 641 }, "_enabled": true, "__prefab": { - "__id__": 635 + "__id__": 643 }, "_contentSize": { "__type__": "cc.Size", @@ -15106,11 +15299,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 633 + "__id__": 641 }, "_enabled": true, "__prefab": { - "__id__": 637 + "__id__": 645 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15151,11 +15344,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 633 + "__id__": 641 }, "_enabled": true, "__prefab": { - "__id__": 639 + "__id__": 647 }, "_alignFlags": 45, "_target": null, @@ -15200,20 +15393,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 632 + "__id__": 640 }, "_children": [], "_active": true, "_components": [ { - "__id__": 642 + "__id__": 650 }, { - "__id__": 644 + "__id__": 652 } ], "_prefab": { - "__id__": 646 + "__id__": 654 }, "_lpos": { "__type__": "cc.Vec3", @@ -15250,11 +15443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 649 }, "_enabled": true, "__prefab": { - "__id__": 643 + "__id__": 651 }, "_contentSize": { "__type__": "cc.Size", @@ -15278,11 +15471,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 649 }, "_enabled": true, "__prefab": { - "__id__": 645 + "__id__": 653 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15359,23 +15552,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 632 + "__id__": 640 }, "_children": [], "_active": true, "_components": [ { - "__id__": 648 + "__id__": 656 }, { - "__id__": 650 + "__id__": 658 }, { - "__id__": 652 + "__id__": 660 } ], "_prefab": { - "__id__": 654 + "__id__": 662 }, "_lpos": { "__type__": "cc.Vec3", @@ -15412,11 +15605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 655 }, "_enabled": true, "__prefab": { - "__id__": 649 + "__id__": 657 }, "_contentSize": { "__type__": "cc.Size", @@ -15440,11 +15633,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 655 }, "_enabled": true, "__prefab": { - "__id__": 651 + "__id__": 659 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15508,11 +15701,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 655 }, "_enabled": true, "__prefab": { - "__id__": 653 + "__id__": 661 }, "templateMode": true, "watchPath": "", @@ -15545,11 +15738,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 632 + "__id__": 640 }, "_enabled": true, "__prefab": { - "__id__": 656 + "__id__": 664 }, "_contentSize": { "__type__": "cc.Size", @@ -15586,27 +15779,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 659 - }, { "__id__": 667 }, { - "__id__": 673 + "__id__": 675 + }, + { + "__id__": 681 } ], "_active": true, "_components": [ { - "__id__": 681 + "__id__": 689 } ], "_prefab": { - "__id__": 683 + "__id__": 691 }, "_lpos": { "__type__": "cc.Vec3", @@ -15643,23 +15836,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 658 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 660 + "__id__": 668 }, { - "__id__": 662 + "__id__": 670 }, { - "__id__": 664 + "__id__": 672 } ], "_prefab": { - "__id__": 666 + "__id__": 674 }, "_lpos": { "__type__": "cc.Vec3", @@ -15696,11 +15889,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 659 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 661 + "__id__": 669 }, "_contentSize": { "__type__": "cc.Size", @@ -15724,11 +15917,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 659 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 663 + "__id__": 671 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15769,11 +15962,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 659 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 665 + "__id__": 673 }, "_alignFlags": 45, "_target": null, @@ -15818,20 +16011,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 658 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 668 + "__id__": 676 }, { - "__id__": 670 + "__id__": 678 } ], "_prefab": { - "__id__": 672 + "__id__": 680 }, "_lpos": { "__type__": "cc.Vec3", @@ -15868,11 +16061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 667 + "__id__": 675 }, "_enabled": true, "__prefab": { - "__id__": 669 + "__id__": 677 }, "_contentSize": { "__type__": "cc.Size", @@ -15896,11 +16089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 667 + "__id__": 675 }, "_enabled": true, "__prefab": { - "__id__": 671 + "__id__": 679 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15977,23 +16170,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 658 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 674 + "__id__": 682 }, { - "__id__": 676 + "__id__": 684 }, { - "__id__": 678 + "__id__": 686 } ], "_prefab": { - "__id__": 680 + "__id__": 688 }, "_lpos": { "__type__": "cc.Vec3", @@ -16030,11 +16223,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 673 + "__id__": 681 }, "_enabled": true, "__prefab": { - "__id__": 675 + "__id__": 683 }, "_contentSize": { "__type__": "cc.Size", @@ -16058,11 +16251,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 673 + "__id__": 681 }, "_enabled": true, "__prefab": { - "__id__": 677 + "__id__": 685 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16126,11 +16319,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 673 + "__id__": 681 }, "_enabled": true, "__prefab": { - "__id__": 679 + "__id__": 687 }, "templateMode": true, "watchPath": "", @@ -16163,11 +16356,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 658 + "__id__": 666 }, "_enabled": true, "__prefab": { - "__id__": 682 + "__id__": 690 }, "_contentSize": { "__type__": "cc.Size", @@ -16204,27 +16397,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 431 }, "_children": [ - { - "__id__": 685 - }, { "__id__": 693 }, { - "__id__": 699 + "__id__": 701 + }, + { + "__id__": 707 } ], "_active": true, "_components": [ { - "__id__": 707 + "__id__": 715 } ], "_prefab": { - "__id__": 709 + "__id__": 717 }, "_lpos": { "__type__": "cc.Vec3", @@ -16261,23 +16454,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 684 + "__id__": 692 }, "_children": [], "_active": true, "_components": [ { - "__id__": 686 + "__id__": 694 }, { - "__id__": 688 + "__id__": 696 }, { - "__id__": 690 + "__id__": 698 } ], "_prefab": { - "__id__": 692 + "__id__": 700 }, "_lpos": { "__type__": "cc.Vec3", @@ -16314,11 +16507,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 685 + "__id__": 693 }, "_enabled": true, "__prefab": { - "__id__": 687 + "__id__": 695 }, "_contentSize": { "__type__": "cc.Size", @@ -16342,11 +16535,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 685 + "__id__": 693 }, "_enabled": true, "__prefab": { - "__id__": 689 + "__id__": 697 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16387,11 +16580,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 685 + "__id__": 693 }, "_enabled": true, "__prefab": { - "__id__": 691 + "__id__": 699 }, "_alignFlags": 45, "_target": null, @@ -16436,20 +16629,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 684 + "__id__": 692 }, "_children": [], "_active": true, "_components": [ { - "__id__": 694 + "__id__": 702 }, { - "__id__": 696 + "__id__": 704 } ], "_prefab": { - "__id__": 698 + "__id__": 706 }, "_lpos": { "__type__": "cc.Vec3", @@ -16486,11 +16679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 701 }, "_enabled": true, "__prefab": { - "__id__": 695 + "__id__": 703 }, "_contentSize": { "__type__": "cc.Size", @@ -16514,11 +16707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 701 }, "_enabled": true, "__prefab": { - "__id__": 697 + "__id__": 705 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16595,23 +16788,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 684 + "__id__": 692 }, "_children": [], "_active": true, "_components": [ { - "__id__": 700 + "__id__": 708 }, { - "__id__": 702 + "__id__": 710 }, { - "__id__": 704 + "__id__": 712 } ], "_prefab": { - "__id__": 706 + "__id__": 714 }, "_lpos": { "__type__": "cc.Vec3", @@ -16648,11 +16841,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 699 + "__id__": 707 }, "_enabled": true, "__prefab": { - "__id__": 701 + "__id__": 709 }, "_contentSize": { "__type__": "cc.Size", @@ -16676,11 +16869,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 699 + "__id__": 707 }, "_enabled": true, "__prefab": { - "__id__": 703 + "__id__": 711 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16744,11 +16937,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 699 + "__id__": 707 }, "_enabled": true, "__prefab": { - "__id__": 705 + "__id__": 713 }, "templateMode": true, "watchPath": "", @@ -16781,11 +16974,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 684 + "__id__": 692 }, "_enabled": true, "__prefab": { - "__id__": 708 + "__id__": 716 }, "_contentSize": { "__type__": "cc.Size", @@ -16822,11 +17015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 711 + "__id__": 719 }, "_contentSize": { "__type__": "cc.Size", @@ -16850,11 +17043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 713 + "__id__": 721 }, "_resizeMode": 0, "_layoutType": 3, @@ -16901,27 +17094,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 408 + "__id__": 416 }, "_children": [ { - "__id__": 716 + "__id__": 724 } ], "_active": true, "_components": [ { - "__id__": 722 + "__id__": 730 }, { - "__id__": 724 + "__id__": 732 }, { - "__id__": 726 + "__id__": 734 } ], "_prefab": { - "__id__": 729 + "__id__": 737 }, "_lpos": { "__type__": "cc.Vec3", @@ -16958,20 +17151,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 723 }, "_children": [], "_active": true, "_components": [ { - "__id__": 717 + "__id__": 725 }, { - "__id__": 719 + "__id__": 727 } ], "_prefab": { - "__id__": 721 + "__id__": 729 }, "_lpos": { "__type__": "cc.Vec3", @@ -17008,11 +17201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 716 + "__id__": 724 }, "_enabled": true, "__prefab": { - "__id__": 718 + "__id__": 726 }, "_contentSize": { "__type__": "cc.Size", @@ -17036,11 +17229,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 716 + "__id__": 724 }, "_enabled": true, "__prefab": { - "__id__": 720 + "__id__": 728 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17094,11 +17287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 723 }, "_enabled": true, "__prefab": { - "__id__": 723 + "__id__": 731 }, "_contentSize": { "__type__": "cc.Size", @@ -17122,11 +17315,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 723 }, "_enabled": true, "__prefab": { - "__id__": 725 + "__id__": 733 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17167,15 +17360,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 723 }, "_enabled": true, "__prefab": { - "__id__": 727 + "__id__": 735 }, "clickEvents": [ { - "__id__": 728 + "__id__": 736 } ], "_interactable": true, @@ -17250,11 +17443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 408 + "__id__": 416 }, "_enabled": true, "__prefab": { - "__id__": 731 + "__id__": 739 }, "_contentSize": { "__type__": "cc.Size", @@ -17278,11 +17471,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 408 + "__id__": 416 }, "_enabled": true, "__prefab": { - "__id__": 733 + "__id__": 741 }, "_alignFlags": 40, "_target": null, @@ -17331,26 +17524,26 @@ }, "_children": [ { - "__id__": 736 + "__id__": 744 }, { - "__id__": 742 + "__id__": 750 }, { - "__id__": 748 + "__id__": 756 }, { - "__id__": 754 + "__id__": 762 } ], "_active": true, "_components": [ { - "__id__": 762 + "__id__": 770 } ], "_prefab": { - "__id__": 764 + "__id__": 772 }, "_lpos": { "__type__": "cc.Vec3", @@ -17387,20 +17580,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 735 + "__id__": 743 }, "_children": [], "_active": true, "_components": [ { - "__id__": 737 + "__id__": 745 }, { - "__id__": 739 + "__id__": 747 } ], "_prefab": { - "__id__": 741 + "__id__": 749 }, "_lpos": { "__type__": "cc.Vec3", @@ -17437,11 +17630,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 736 + "__id__": 744 }, "_enabled": true, "__prefab": { - "__id__": 738 + "__id__": 746 }, "_contentSize": { "__type__": "cc.Size", @@ -17465,11 +17658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 736 + "__id__": 744 }, "_enabled": true, "__prefab": { - "__id__": 740 + "__id__": 748 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17523,20 +17716,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 735 + "__id__": 743 }, "_children": [], "_active": true, "_components": [ { - "__id__": 743 + "__id__": 751 }, { - "__id__": 745 + "__id__": 753 } ], "_prefab": { - "__id__": 747 + "__id__": 755 }, "_lpos": { "__type__": "cc.Vec3", @@ -17573,11 +17766,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 750 }, "_enabled": true, "__prefab": { - "__id__": 744 + "__id__": 752 }, "_contentSize": { "__type__": "cc.Size", @@ -17601,11 +17794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 750 }, "_enabled": true, "__prefab": { - "__id__": 746 + "__id__": 754 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17659,20 +17852,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 735 + "__id__": 743 }, "_children": [], "_active": false, "_components": [ { - "__id__": 749 + "__id__": 757 }, { - "__id__": 751 + "__id__": 759 } ], "_prefab": { - "__id__": 753 + "__id__": 761 }, "_lpos": { "__type__": "cc.Vec3", @@ -17709,11 +17902,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 748 + "__id__": 756 }, "_enabled": true, "__prefab": { - "__id__": 750 + "__id__": 758 }, "_contentSize": { "__type__": "cc.Size", @@ -17737,11 +17930,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 748 + "__id__": 756 }, "_enabled": true, "__prefab": { - "__id__": 752 + "__id__": 760 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17818,23 +18011,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 735 + "__id__": 743 }, "_children": [], "_active": true, "_components": [ { - "__id__": 755 + "__id__": 763 }, { - "__id__": 757 + "__id__": 765 }, { - "__id__": 759 + "__id__": 767 } ], "_prefab": { - "__id__": 761 + "__id__": 769 }, "_lpos": { "__type__": "cc.Vec3", @@ -17871,11 +18064,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 762 }, "_enabled": true, "__prefab": { - "__id__": 756 + "__id__": 764 }, "_contentSize": { "__type__": "cc.Size", @@ -17899,11 +18092,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 762 }, "_enabled": true, "__prefab": { - "__id__": 758 + "__id__": 766 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17967,11 +18160,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 762 }, "_enabled": true, "__prefab": { - "__id__": 760 + "__id__": 768 }, "templateMode": true, "watchPath": "vm", @@ -18004,11 +18197,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 735 + "__id__": 743 }, "_enabled": true, "__prefab": { - "__id__": 763 + "__id__": 771 }, "_contentSize": { "__type__": "cc.Size", @@ -18039,6 +18232,851 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "uplv", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [ + { + "__id__": 774 + }, + { + "__id__": 780 + }, + { + "__id__": 786 + }, + { + "__id__": 794 + } + ], + "_active": true, + "_components": [ + { + "__id__": 802 + }, + { + "__id__": 804 + }, + { + "__id__": 807 + } + ], + "_prefab": { + "__id__": 809 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 69.751, + "y": -6.586, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Button01_s_Yellow", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 773 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 775 + }, + { + "__id__": 777 + } + ], + "_prefab": { + "__id__": 779 + }, + "_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": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 774 + }, + "_enabled": true, + "__prefab": { + "__id__": 776 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 114 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1neZAU9NL1IL3X1ciHiMd" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 774 + }, + "_enabled": true, + "__prefab": { + "__id__": 778 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f87f53f9-2fba-4a5b-968a-79a593311ab2@d27fa", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2fPmFe/bpD1bdYm5lHtqW3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67Qf+L0a9KjYC4WAjNzT+x", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 773 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 781 + }, + { + "__id__": 783 + } + ], + "_prefab": { + "__id__": 785 + }, + "_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 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 780 + }, + "_enabled": true, + "__prefab": { + "__id__": 782 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "03h5uX+2lIdato7xjtl07q" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 780 + }, + "_enabled": true, + "__prefab": { + "__id__": 784 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "升级", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 70, + "g": 70, + "b": 70, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "faPloBuqJOOJQgYn3PTFq6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3n4SgJ5FNYawWbdYRewqB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 773 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 787 + }, + { + "__id__": 789 + }, + { + "__id__": 791 + } + ], + "_prefab": { + "__id__": 793 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -41.563, + "y": 16.183, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 786 + }, + "_enabled": true, + "__prefab": { + "__id__": 788 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 87, + "height": 87 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "77fx1iugJCvrytzKv9JG/d" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 786 + }, + "_enabled": true, + "__prefab": { + "__id__": 790 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "260d01c4-5936-4c90-8ff9-b892c60b2e48@df465", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9bAm6sB4ZC3YOTY27LoUkn" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 786 + }, + "_enabled": true, + "__prefab": { + "__id__": 792 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "151cd2ed-9709-4fe7-9443-83d31b6f7965", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "151cd2ed-9709-4fe7-9443-83d31b6f7965", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "75h7yPY5VDWZ97Dxr/kOQA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0etmlhvB9OuZ797StgeXXz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 773 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 795 + }, + { + "__id__": 797 + }, + { + "__id__": 799 + } + ], + "_prefab": { + "__id__": 801 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 40.706, + "y": -5.748, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 794 + }, + "_enabled": true, + "__prefab": { + "__id__": 796 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 87, + "height": 87 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "248FtRXgxM1aZ08P2BSvFa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 794 + }, + "_enabled": true, + "__prefab": { + "__id__": 798 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "260d01c4-5936-4c90-8ff9-b892c60b2e48@df465", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5990InkuJL7Kcd5wYCx0mZ" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 794 + }, + "_enabled": true, + "__prefab": { + "__id__": 800 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "2633f0b9-41b1-4252-ace1-de59d10c8b60", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "2633f0b9-41b1-4252-ace1-de59d10c8b60", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6cGD9oLuxKBJdNICEcZyND" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "11xaWKi61NfJ+MdJCiYPQm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 773 + }, + "_enabled": true, + "__prefab": { + "__id__": 803 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "90jOTxcr9L8Lbaz9Nw4vfh" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 773 + }, + "_enabled": true, + "__prefab": { + "__id__": 805 + }, + "clickEvents": [ + { + "__id__": 806 + } + ], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61VwOQz3lA/LaA2OAbmcd3" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "e7482dUVpJEJZzHkqJl1ZWP", + "handler": "to_uplv", + "customEventData": "" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 773 + }, + "_enabled": true, + "__prefab": { + "__id__": 808 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "151cd2ed-9709-4fe7-9443-83d31b6f7965", + "__expectedType__": "cc.AnimationClip" + }, + { + "__uuid__": "2633f0b9-41b1-4252-ace1-de59d10c8b60", + "__expectedType__": "cc.AnimationClip" + }, + { + "__uuid__": "90a0ddc5-ebc9-40a7-974b-84d31e535ad6", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "90a0ddc5-ebc9-40a7-974b-84d31e535ad6", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4c+l8z3jBNgr+JFH3Wd2UL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4RM1fFZhGOrpWAYFvihi9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -18049,7 +19087,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 766 + "__id__": 811 }, "_contentSize": { "__type__": "cc.Size", @@ -18077,7 +19115,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 768 + "__id__": 813 }, "_alignFlags": 45, "_target": null, @@ -18113,11 +19151,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 770 + "__id__": 815 }, "clickEvents": [ { - "__id__": 771 + "__id__": 816 } ], "_interactable": true, @@ -18196,7 +19234,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 774 + "__id__": 819 }, "_contentSize": { "__type__": "cc.Size", @@ -18224,7 +19262,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 776 + "__id__": 821 }, "_alignFlags": 40, "_target": null, @@ -18260,7 +19298,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 778 + "__id__": 823 }, "_id": "" }, @@ -18291,32 +19329,32 @@ }, "_children": [ { - "__id__": 781 + "__id__": 826 }, { - "__id__": 789 + "__id__": 834 }, { - "__id__": 1481 + "__id__": 1526 }, { - "__id__": 1513 + "__id__": 1558 } ], "_active": true, "_components": [ { - "__id__": 1519 + "__id__": 1564 }, { - "__id__": 1521 + "__id__": 1566 }, { - "__id__": 1523 + "__id__": 1568 } ], "_prefab": { - "__id__": 1525 + "__id__": 1570 }, "_lpos": { "__type__": "cc.Vec3", @@ -18353,23 +19391,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 780 + "__id__": 825 }, "_children": [], "_active": true, "_components": [ { - "__id__": 782 + "__id__": 827 }, { - "__id__": 784 + "__id__": 829 }, { - "__id__": 786 + "__id__": 831 } ], "_prefab": { - "__id__": 788 + "__id__": 833 }, "_lpos": { "__type__": "cc.Vec3", @@ -18406,11 +19444,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 781 + "__id__": 826 }, "_enabled": true, "__prefab": { - "__id__": 783 + "__id__": 828 }, "_contentSize": { "__type__": "cc.Size", @@ -18434,11 +19472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 781 + "__id__": 826 }, "_enabled": true, "__prefab": { - "__id__": 785 + "__id__": 830 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18479,11 +19517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 781 + "__id__": 826 }, "_enabled": true, "__prefab": { - "__id__": 787 + "__id__": 832 }, "_alignFlags": 45, "_target": null, @@ -18528,33 +19566,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 780 + "__id__": 825 }, "_children": [ { - "__id__": 790 + "__id__": 835 }, { - "__id__": 1018 + "__id__": 1063 }, { - "__id__": 1246 + "__id__": 1291 } ], "_active": true, "_components": [ { - "__id__": 1474 + "__id__": 1519 }, { - "__id__": 1476 + "__id__": 1521 }, { - "__id__": 1478 + "__id__": 1523 } ], "_prefab": { - "__id__": 1480 + "__id__": 1525 }, "_lpos": { "__type__": "cc.Vec3", @@ -18591,39 +19629,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 834 }, "_children": [ { - "__id__": 791 + "__id__": 836 }, { - "__id__": 799 + "__id__": 844 }, { - "__id__": 807 + "__id__": 852 }, { - "__id__": 813 + "__id__": 858 }, { - "__id__": 989 + "__id__": 1034 }, { - "__id__": 999 + "__id__": 1044 }, { - "__id__": 1009 + "__id__": 1054 } ], "_active": true, "_components": [ { - "__id__": 1015 + "__id__": 1060 } ], "_prefab": { - "__id__": 1017 + "__id__": 1062 }, "_lpos": { "__type__": "cc.Vec3", @@ -18660,23 +19698,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 792 + "__id__": 837 }, { - "__id__": 794 + "__id__": 839 }, { - "__id__": 796 + "__id__": 841 } ], "_prefab": { - "__id__": 798 + "__id__": 843 }, "_lpos": { "__type__": "cc.Vec3", @@ -18713,11 +19751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 791 + "__id__": 836 }, "_enabled": true, "__prefab": { - "__id__": 793 + "__id__": 838 }, "_contentSize": { "__type__": "cc.Size", @@ -18741,11 +19779,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 791 + "__id__": 836 }, "_enabled": true, "__prefab": { - "__id__": 795 + "__id__": 840 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18786,11 +19824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 791 + "__id__": 836 }, "_enabled": true, "__prefab": { - "__id__": 797 + "__id__": 842 }, "playOnLoad": true, "_clips": [ @@ -18828,23 +19866,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 800 + "__id__": 845 }, { - "__id__": 802 + "__id__": 847 }, { - "__id__": 804 + "__id__": 849 } ], "_prefab": { - "__id__": 806 + "__id__": 851 }, "_lpos": { "__type__": "cc.Vec3", @@ -18881,11 +19919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 799 + "__id__": 844 }, "_enabled": true, "__prefab": { - "__id__": 801 + "__id__": 846 }, "_contentSize": { "__type__": "cc.Size", @@ -18909,11 +19947,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 799 + "__id__": 844 }, "_enabled": true, "__prefab": { - "__id__": 803 + "__id__": 848 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18954,11 +19992,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 799 + "__id__": 844 }, "_enabled": true, "__prefab": { - "__id__": 805 + "__id__": 850 }, "_alignFlags": 45, "_target": null, @@ -19003,20 +20041,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 808 + "__id__": 853 }, { - "__id__": 810 + "__id__": 855 } ], "_prefab": { - "__id__": 812 + "__id__": 857 }, "_lpos": { "__type__": "cc.Vec3", @@ -19053,11 +20091,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 809 + "__id__": 854 }, "_contentSize": { "__type__": "cc.Size", @@ -19081,11 +20119,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 811 + "__id__": 856 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19139,54 +20177,54 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [ { - "__id__": 814 + "__id__": 859 }, { - "__id__": 822 + "__id__": 867 }, { - "__id__": 830 + "__id__": 875 }, { - "__id__": 838 + "__id__": 883 }, { - "__id__": 846 + "__id__": 891 }, { - "__id__": 854 + "__id__": 899 }, { - "__id__": 860 + "__id__": 905 }, { - "__id__": 870 + "__id__": 915 }, { - "__id__": 886 + "__id__": 931 }, { - "__id__": 908 + "__id__": 953 }, { - "__id__": 936 + "__id__": 981 }, { - "__id__": 970 + "__id__": 1015 } ], "_active": true, "_components": [ { - "__id__": 986 + "__id__": 1031 } ], "_prefab": { - "__id__": 988 + "__id__": 1033 }, "_lpos": { "__type__": "cc.Vec3", @@ -19223,23 +20261,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": false, "_components": [ { - "__id__": 815 + "__id__": 860 }, { - "__id__": 817 + "__id__": 862 }, { - "__id__": 819 + "__id__": 864 } ], "_prefab": { - "__id__": 821 + "__id__": 866 }, "_lpos": { "__type__": "cc.Vec3", @@ -19276,11 +20314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 814 + "__id__": 859 }, "_enabled": true, "__prefab": { - "__id__": 816 + "__id__": 861 }, "_contentSize": { "__type__": "cc.Size", @@ -19304,11 +20342,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 814 + "__id__": 859 }, "_enabled": true, "__prefab": { - "__id__": 818 + "__id__": 863 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19349,11 +20387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 814 + "__id__": 859 }, "_enabled": true, "__prefab": { - "__id__": 820 + "__id__": 865 }, "_alignFlags": 45, "_target": null, @@ -19398,23 +20436,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": false, "_components": [ { - "__id__": 823 + "__id__": 868 }, { - "__id__": 825 + "__id__": 870 }, { - "__id__": 827 + "__id__": 872 } ], "_prefab": { - "__id__": 829 + "__id__": 874 }, "_lpos": { "__type__": "cc.Vec3", @@ -19451,11 +20489,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 867 }, "_enabled": true, "__prefab": { - "__id__": 824 + "__id__": 869 }, "_contentSize": { "__type__": "cc.Size", @@ -19479,11 +20517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 867 }, "_enabled": true, "__prefab": { - "__id__": 826 + "__id__": 871 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19524,11 +20562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 867 }, "_enabled": true, "__prefab": { - "__id__": 828 + "__id__": 873 }, "_alignFlags": 45, "_target": null, @@ -19573,23 +20611,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": false, "_components": [ { - "__id__": 831 + "__id__": 876 }, { - "__id__": 833 + "__id__": 878 }, { - "__id__": 835 + "__id__": 880 } ], "_prefab": { - "__id__": 837 + "__id__": 882 }, "_lpos": { "__type__": "cc.Vec3", @@ -19626,11 +20664,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 830 + "__id__": 875 }, "_enabled": true, "__prefab": { - "__id__": 832 + "__id__": 877 }, "_contentSize": { "__type__": "cc.Size", @@ -19654,11 +20692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 830 + "__id__": 875 }, "_enabled": true, "__prefab": { - "__id__": 834 + "__id__": 879 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19699,11 +20737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 830 + "__id__": 875 }, "_enabled": true, "__prefab": { - "__id__": 836 + "__id__": 881 }, "_alignFlags": 45, "_target": null, @@ -19748,23 +20786,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": false, "_components": [ { - "__id__": 839 + "__id__": 884 }, { - "__id__": 841 + "__id__": 886 }, { - "__id__": 843 + "__id__": 888 } ], "_prefab": { - "__id__": 845 + "__id__": 890 }, "_lpos": { "__type__": "cc.Vec3", @@ -19801,11 +20839,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 838 + "__id__": 883 }, "_enabled": true, "__prefab": { - "__id__": 840 + "__id__": 885 }, "_contentSize": { "__type__": "cc.Size", @@ -19829,11 +20867,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 838 + "__id__": 883 }, "_enabled": true, "__prefab": { - "__id__": 842 + "__id__": 887 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19874,11 +20912,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 838 + "__id__": 883 }, "_enabled": true, "__prefab": { - "__id__": 844 + "__id__": 889 }, "_alignFlags": 45, "_target": null, @@ -19923,23 +20961,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": false, "_components": [ { - "__id__": 847 + "__id__": 892 }, { - "__id__": 849 + "__id__": 894 }, { - "__id__": 851 + "__id__": 896 } ], "_prefab": { - "__id__": 853 + "__id__": 898 }, "_lpos": { "__type__": "cc.Vec3", @@ -19976,11 +21014,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 891 }, "_enabled": true, "__prefab": { - "__id__": 848 + "__id__": 893 }, "_contentSize": { "__type__": "cc.Size", @@ -20004,11 +21042,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 891 }, "_enabled": true, "__prefab": { - "__id__": 850 + "__id__": 895 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20049,11 +21087,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 891 }, "_enabled": true, "__prefab": { - "__id__": 852 + "__id__": 897 }, "_alignFlags": 45, "_target": null, @@ -20098,20 +21136,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [], "_active": true, "_components": [ { - "__id__": 855 + "__id__": 900 }, { - "__id__": 857 + "__id__": 902 } ], "_prefab": { - "__id__": 859 + "__id__": 904 }, "_lpos": { "__type__": "cc.Vec3", @@ -20148,11 +21186,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 899 }, "_enabled": true, "__prefab": { - "__id__": 856 + "__id__": 901 }, "_contentSize": { "__type__": "cc.Size", @@ -20176,11 +21214,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 899 }, "_enabled": true, "__prefab": { - "__id__": 858 + "__id__": 903 }, "_customMaterial": { "__uuid__": "2fcd55a9-38ca-45aa-9164-68e48aaf51ce", @@ -20237,21 +21275,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 861 + "__id__": 906 } ], "_active": false, "_components": [ { - "__id__": 867 + "__id__": 912 } ], "_prefab": { - "__id__": 869 + "__id__": 914 }, "_lpos": { "__type__": "cc.Vec3", @@ -20288,20 +21326,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 860 + "__id__": 905 }, "_children": [], "_active": true, "_components": [ { - "__id__": 862 + "__id__": 907 }, { - "__id__": 864 + "__id__": 909 } ], "_prefab": { - "__id__": 866 + "__id__": 911 }, "_lpos": { "__type__": "cc.Vec3", @@ -20338,11 +21376,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 906 }, "_enabled": true, "__prefab": { - "__id__": 863 + "__id__": 908 }, "_contentSize": { "__type__": "cc.Size", @@ -20366,11 +21404,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 906 }, "_enabled": true, "__prefab": { - "__id__": 865 + "__id__": 910 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20424,11 +21462,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 860 + "__id__": 905 }, "_enabled": true, "__prefab": { - "__id__": 868 + "__id__": 913 }, "_contentSize": { "__type__": "cc.Size", @@ -20465,24 +21503,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 871 + "__id__": 916 }, { - "__id__": 877 + "__id__": 922 } ], "_active": false, "_components": [ { - "__id__": 883 + "__id__": 928 } ], "_prefab": { - "__id__": 885 + "__id__": 930 }, "_lpos": { "__type__": "cc.Vec3", @@ -20519,20 +21557,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 870 + "__id__": 915 }, "_children": [], "_active": true, "_components": [ { - "__id__": 872 + "__id__": 917 }, { - "__id__": 874 + "__id__": 919 } ], "_prefab": { - "__id__": 876 + "__id__": 921 }, "_lpos": { "__type__": "cc.Vec3", @@ -20569,11 +21607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 871 + "__id__": 916 }, "_enabled": true, "__prefab": { - "__id__": 873 + "__id__": 918 }, "_contentSize": { "__type__": "cc.Size", @@ -20597,11 +21635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 871 + "__id__": 916 }, "_enabled": true, "__prefab": { - "__id__": 875 + "__id__": 920 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20655,20 +21693,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 870 + "__id__": 915 }, "_children": [], "_active": true, "_components": [ { - "__id__": 878 + "__id__": 923 }, { - "__id__": 880 + "__id__": 925 } ], "_prefab": { - "__id__": 882 + "__id__": 927 }, "_lpos": { "__type__": "cc.Vec3", @@ -20705,11 +21743,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 877 + "__id__": 922 }, "_enabled": true, "__prefab": { - "__id__": 879 + "__id__": 924 }, "_contentSize": { "__type__": "cc.Size", @@ -20733,11 +21771,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 877 + "__id__": 922 }, "_enabled": true, "__prefab": { - "__id__": 881 + "__id__": 926 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20791,11 +21829,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 870 + "__id__": 915 }, "_enabled": true, "__prefab": { - "__id__": 884 + "__id__": 929 }, "_contentSize": { "__type__": "cc.Size", @@ -20832,27 +21870,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 887 + "__id__": 932 }, { - "__id__": 893 + "__id__": 938 }, { - "__id__": 899 + "__id__": 944 } ], "_active": false, "_components": [ { - "__id__": 905 + "__id__": 950 } ], "_prefab": { - "__id__": 907 + "__id__": 952 }, "_lpos": { "__type__": "cc.Vec3", @@ -20889,20 +21927,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 886 + "__id__": 931 }, "_children": [], "_active": true, "_components": [ { - "__id__": 888 + "__id__": 933 }, { - "__id__": 890 + "__id__": 935 } ], "_prefab": { - "__id__": 892 + "__id__": 937 }, "_lpos": { "__type__": "cc.Vec3", @@ -20939,11 +21977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 887 + "__id__": 932 }, "_enabled": true, "__prefab": { - "__id__": 889 + "__id__": 934 }, "_contentSize": { "__type__": "cc.Size", @@ -20967,11 +22005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 887 + "__id__": 932 }, "_enabled": true, "__prefab": { - "__id__": 891 + "__id__": 936 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21025,20 +22063,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 886 + "__id__": 931 }, "_children": [], "_active": true, "_components": [ { - "__id__": 894 + "__id__": 939 }, { - "__id__": 896 + "__id__": 941 } ], "_prefab": { - "__id__": 898 + "__id__": 943 }, "_lpos": { "__type__": "cc.Vec3", @@ -21075,11 +22113,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 893 + "__id__": 938 }, "_enabled": true, "__prefab": { - "__id__": 895 + "__id__": 940 }, "_contentSize": { "__type__": "cc.Size", @@ -21103,11 +22141,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 893 + "__id__": 938 }, "_enabled": true, "__prefab": { - "__id__": 897 + "__id__": 942 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21161,20 +22199,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 886 + "__id__": 931 }, "_children": [], "_active": true, "_components": [ { - "__id__": 900 + "__id__": 945 }, { - "__id__": 902 + "__id__": 947 } ], "_prefab": { - "__id__": 904 + "__id__": 949 }, "_lpos": { "__type__": "cc.Vec3", @@ -21211,11 +22249,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 899 + "__id__": 944 }, "_enabled": true, "__prefab": { - "__id__": 901 + "__id__": 946 }, "_contentSize": { "__type__": "cc.Size", @@ -21239,11 +22277,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 899 + "__id__": 944 }, "_enabled": true, "__prefab": { - "__id__": 903 + "__id__": 948 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21297,11 +22335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 886 + "__id__": 931 }, "_enabled": true, "__prefab": { - "__id__": 906 + "__id__": 951 }, "_contentSize": { "__type__": "cc.Size", @@ -21338,30 +22376,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 909 + "__id__": 954 }, { - "__id__": 915 + "__id__": 960 }, { - "__id__": 921 + "__id__": 966 }, { - "__id__": 927 + "__id__": 972 } ], "_active": false, "_components": [ { - "__id__": 933 + "__id__": 978 } ], "_prefab": { - "__id__": 935 + "__id__": 980 }, "_lpos": { "__type__": "cc.Vec3", @@ -21398,20 +22436,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 908 + "__id__": 953 }, "_children": [], "_active": true, "_components": [ { - "__id__": 910 + "__id__": 955 }, { - "__id__": 912 + "__id__": 957 } ], "_prefab": { - "__id__": 914 + "__id__": 959 }, "_lpos": { "__type__": "cc.Vec3", @@ -21448,11 +22486,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 954 }, "_enabled": true, "__prefab": { - "__id__": 911 + "__id__": 956 }, "_contentSize": { "__type__": "cc.Size", @@ -21476,11 +22514,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 954 }, "_enabled": true, "__prefab": { - "__id__": 913 + "__id__": 958 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21534,20 +22572,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 908 + "__id__": 953 }, "_children": [], "_active": true, "_components": [ { - "__id__": 916 + "__id__": 961 }, { - "__id__": 918 + "__id__": 963 } ], "_prefab": { - "__id__": 920 + "__id__": 965 }, "_lpos": { "__type__": "cc.Vec3", @@ -21584,11 +22622,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 960 }, "_enabled": true, "__prefab": { - "__id__": 917 + "__id__": 962 }, "_contentSize": { "__type__": "cc.Size", @@ -21612,11 +22650,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 960 }, "_enabled": true, "__prefab": { - "__id__": 919 + "__id__": 964 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21670,20 +22708,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 908 + "__id__": 953 }, "_children": [], "_active": true, "_components": [ { - "__id__": 922 + "__id__": 967 }, { - "__id__": 924 + "__id__": 969 } ], "_prefab": { - "__id__": 926 + "__id__": 971 }, "_lpos": { "__type__": "cc.Vec3", @@ -21720,11 +22758,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 966 }, "_enabled": true, "__prefab": { - "__id__": 923 + "__id__": 968 }, "_contentSize": { "__type__": "cc.Size", @@ -21748,11 +22786,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 966 }, "_enabled": true, "__prefab": { - "__id__": 925 + "__id__": 970 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21806,20 +22844,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 908 + "__id__": 953 }, "_children": [], "_active": true, "_components": [ { - "__id__": 928 + "__id__": 973 }, { - "__id__": 930 + "__id__": 975 } ], "_prefab": { - "__id__": 932 + "__id__": 977 }, "_lpos": { "__type__": "cc.Vec3", @@ -21856,11 +22894,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 972 }, "_enabled": true, "__prefab": { - "__id__": 929 + "__id__": 974 }, "_contentSize": { "__type__": "cc.Size", @@ -21884,11 +22922,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 972 }, "_enabled": true, "__prefab": { - "__id__": 931 + "__id__": 976 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21942,11 +22980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 908 + "__id__": 953 }, "_enabled": true, "__prefab": { - "__id__": 934 + "__id__": 979 }, "_contentSize": { "__type__": "cc.Size", @@ -21983,33 +23021,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 937 + "__id__": 982 }, { - "__id__": 943 + "__id__": 988 }, { - "__id__": 949 + "__id__": 994 }, { - "__id__": 955 + "__id__": 1000 }, { - "__id__": 961 + "__id__": 1006 } ], "_active": true, "_components": [ { - "__id__": 967 + "__id__": 1012 } ], "_prefab": { - "__id__": 969 + "__id__": 1014 }, "_lpos": { "__type__": "cc.Vec3", @@ -22046,20 +23084,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 936 + "__id__": 981 }, "_children": [], "_active": true, "_components": [ { - "__id__": 938 + "__id__": 983 }, { - "__id__": 940 + "__id__": 985 } ], "_prefab": { - "__id__": 942 + "__id__": 987 }, "_lpos": { "__type__": "cc.Vec3", @@ -22096,11 +23134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 937 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 939 + "__id__": 984 }, "_contentSize": { "__type__": "cc.Size", @@ -22124,11 +23162,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 937 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 941 + "__id__": 986 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22182,20 +23220,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 936 + "__id__": 981 }, "_children": [], "_active": true, "_components": [ { - "__id__": 944 + "__id__": 989 }, { - "__id__": 946 + "__id__": 991 } ], "_prefab": { - "__id__": 948 + "__id__": 993 }, "_lpos": { "__type__": "cc.Vec3", @@ -22232,11 +23270,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 988 }, "_enabled": true, "__prefab": { - "__id__": 945 + "__id__": 990 }, "_contentSize": { "__type__": "cc.Size", @@ -22260,11 +23298,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 988 }, "_enabled": true, "__prefab": { - "__id__": 947 + "__id__": 992 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22318,20 +23356,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 936 + "__id__": 981 }, "_children": [], "_active": true, "_components": [ { - "__id__": 950 + "__id__": 995 }, { - "__id__": 952 + "__id__": 997 } ], "_prefab": { - "__id__": 954 + "__id__": 999 }, "_lpos": { "__type__": "cc.Vec3", @@ -22368,11 +23406,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 994 }, "_enabled": true, "__prefab": { - "__id__": 951 + "__id__": 996 }, "_contentSize": { "__type__": "cc.Size", @@ -22396,11 +23434,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 994 }, "_enabled": true, "__prefab": { - "__id__": 953 + "__id__": 998 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22454,20 +23492,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 936 + "__id__": 981 }, "_children": [], "_active": true, "_components": [ { - "__id__": 956 + "__id__": 1001 }, { - "__id__": 958 + "__id__": 1003 } ], "_prefab": { - "__id__": 960 + "__id__": 1005 }, "_lpos": { "__type__": "cc.Vec3", @@ -22504,11 +23542,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 955 + "__id__": 1000 }, "_enabled": true, "__prefab": { - "__id__": 957 + "__id__": 1002 }, "_contentSize": { "__type__": "cc.Size", @@ -22532,11 +23570,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 955 + "__id__": 1000 }, "_enabled": true, "__prefab": { - "__id__": 959 + "__id__": 1004 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22590,20 +23628,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 936 + "__id__": 981 }, "_children": [], "_active": true, "_components": [ { - "__id__": 962 + "__id__": 1007 }, { - "__id__": 964 + "__id__": 1009 } ], "_prefab": { - "__id__": 966 + "__id__": 1011 }, "_lpos": { "__type__": "cc.Vec3", @@ -22640,11 +23678,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 1006 }, "_enabled": true, "__prefab": { - "__id__": 963 + "__id__": 1008 }, "_contentSize": { "__type__": "cc.Size", @@ -22668,11 +23706,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 1006 }, "_enabled": true, "__prefab": { - "__id__": 965 + "__id__": 1010 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22726,11 +23764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 936 + "__id__": 981 }, "_enabled": true, "__prefab": { - "__id__": 968 + "__id__": 1013 }, "_contentSize": { "__type__": "cc.Size", @@ -22767,27 +23805,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 858 }, "_children": [ { - "__id__": 971 + "__id__": 1016 } ], "_active": false, "_components": [ { - "__id__": 979 + "__id__": 1024 }, { - "__id__": 981 + "__id__": 1026 }, { - "__id__": 983 + "__id__": 1028 } ], "_prefab": { - "__id__": 985 + "__id__": 1030 }, "_lpos": { "__type__": "cc.Vec3", @@ -22824,23 +23862,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 970 + "__id__": 1015 }, "_children": [], "_active": true, "_components": [ { - "__id__": 972 + "__id__": 1017 }, { - "__id__": 974 + "__id__": 1019 }, { - "__id__": 976 + "__id__": 1021 } ], "_prefab": { - "__id__": 978 + "__id__": 1023 }, "_lpos": { "__type__": "cc.Vec3", @@ -22877,11 +23915,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 971 + "__id__": 1016 }, "_enabled": true, "__prefab": { - "__id__": 973 + "__id__": 1018 }, "_contentSize": { "__type__": "cc.Size", @@ -22905,11 +23943,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 971 + "__id__": 1016 }, "_enabled": true, "__prefab": { - "__id__": 975 + "__id__": 1020 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22950,11 +23988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 971 + "__id__": 1016 }, "_enabled": true, "__prefab": { - "__id__": 977 + "__id__": 1022 }, "_alignFlags": 40, "_target": null, @@ -22999,11 +24037,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 1015 }, "_enabled": true, "__prefab": { - "__id__": 980 + "__id__": 1025 }, "_contentSize": { "__type__": "cc.Size", @@ -23027,11 +24065,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 1015 }, "_enabled": false, "__prefab": { - "__id__": 982 + "__id__": 1027 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23072,14 +24110,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 1015 }, "_enabled": true, "__prefab": { - "__id__": 984 + "__id__": 1029 }, "_barSprite": { - "__id__": 974 + "__id__": 1019 }, "_mode": 2, "_totalLength": 1, @@ -23110,11 +24148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 858 }, "_enabled": true, "__prefab": { - "__id__": 987 + "__id__": 1032 }, "_contentSize": { "__type__": "cc.Size", @@ -23151,23 +24189,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 990 + "__id__": 1035 }, { - "__id__": 992 + "__id__": 1037 }, { - "__id__": 994 + "__id__": 1039 } ], "_prefab": { - "__id__": 998 + "__id__": 1043 }, "_lpos": { "__type__": "cc.Vec3", @@ -23204,11 +24242,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 1034 }, "_enabled": true, "__prefab": { - "__id__": 991 + "__id__": 1036 }, "_contentSize": { "__type__": "cc.Size", @@ -23232,11 +24270,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 1034 }, "_enabled": true, "__prefab": { - "__id__": 993 + "__id__": 1038 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23274,18 +24312,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 1034 }, "_enabled": true, "__prefab": { - "__id__": 995 + "__id__": 1040 }, "clickEvents": [ { - "__id__": 996 + "__id__": 1041 }, { - "__id__": 997 + "__id__": 1042 } ], "_interactable": true, @@ -23325,7 +24363,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 790 + "__id__": 835 }, "_id": "" }, @@ -23336,7 +24374,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -23346,7 +24384,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -23372,23 +24410,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1000 + "__id__": 1045 }, { - "__id__": 1002 + "__id__": 1047 }, { - "__id__": 1004 + "__id__": 1049 } ], "_prefab": { - "__id__": 1008 + "__id__": 1053 }, "_lpos": { "__type__": "cc.Vec3", @@ -23425,11 +24463,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 1044 }, "_enabled": true, "__prefab": { - "__id__": 1001 + "__id__": 1046 }, "_contentSize": { "__type__": "cc.Size", @@ -23453,11 +24491,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 1044 }, "_enabled": true, "__prefab": { - "__id__": 1003 + "__id__": 1048 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23495,18 +24533,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 1044 }, "_enabled": true, "__prefab": { - "__id__": 1005 + "__id__": 1050 }, "clickEvents": [ { - "__id__": 1006 + "__id__": 1051 }, { - "__id__": 1007 + "__id__": 1052 } ], "_interactable": true, @@ -23546,7 +24584,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 790 + "__id__": 835 }, "_id": "" }, @@ -23557,7 +24595,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -23567,7 +24605,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -23593,20 +24631,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 790 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1010 + "__id__": 1055 }, { - "__id__": 1012 + "__id__": 1057 } ], "_prefab": { - "__id__": 1014 + "__id__": 1059 }, "_lpos": { "__type__": "cc.Vec3", @@ -23643,11 +24681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 1054 }, "_enabled": true, "__prefab": { - "__id__": 1011 + "__id__": 1056 }, "_contentSize": { "__type__": "cc.Size", @@ -23671,11 +24709,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1009 + "__id__": 1054 }, "_enabled": true, "__prefab": { - "__id__": 1013 + "__id__": 1058 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23752,11 +24790,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 790 + "__id__": 835 }, "_enabled": true, "__prefab": { - "__id__": 1016 + "__id__": 1061 }, "_contentSize": { "__type__": "cc.Size", @@ -23793,39 +24831,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 834 }, "_children": [ { - "__id__": 1019 + "__id__": 1064 }, { - "__id__": 1027 + "__id__": 1072 }, { - "__id__": 1035 + "__id__": 1080 }, { - "__id__": 1041 + "__id__": 1086 }, { - "__id__": 1217 + "__id__": 1262 }, { - "__id__": 1227 + "__id__": 1272 }, { - "__id__": 1237 + "__id__": 1282 } ], "_active": true, "_components": [ { - "__id__": 1243 + "__id__": 1288 } ], "_prefab": { - "__id__": 1245 + "__id__": 1290 }, "_lpos": { "__type__": "cc.Vec3", @@ -23862,23 +24900,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1020 + "__id__": 1065 }, { - "__id__": 1022 + "__id__": 1067 }, { - "__id__": 1024 + "__id__": 1069 } ], "_prefab": { - "__id__": 1026 + "__id__": 1071 }, "_lpos": { "__type__": "cc.Vec3", @@ -23915,11 +24953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1019 + "__id__": 1064 }, "_enabled": true, "__prefab": { - "__id__": 1021 + "__id__": 1066 }, "_contentSize": { "__type__": "cc.Size", @@ -23943,11 +24981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1019 + "__id__": 1064 }, "_enabled": true, "__prefab": { - "__id__": 1023 + "__id__": 1068 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23988,11 +25026,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1019 + "__id__": 1064 }, "_enabled": true, "__prefab": { - "__id__": 1025 + "__id__": 1070 }, "playOnLoad": true, "_clips": [ @@ -24030,23 +25068,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1028 + "__id__": 1073 }, { - "__id__": 1030 + "__id__": 1075 }, { - "__id__": 1032 + "__id__": 1077 } ], "_prefab": { - "__id__": 1034 + "__id__": 1079 }, "_lpos": { "__type__": "cc.Vec3", @@ -24083,11 +25121,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 1072 }, "_enabled": true, "__prefab": { - "__id__": 1029 + "__id__": 1074 }, "_contentSize": { "__type__": "cc.Size", @@ -24111,11 +25149,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 1072 }, "_enabled": true, "__prefab": { - "__id__": 1031 + "__id__": 1076 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24156,11 +25194,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1027 + "__id__": 1072 }, "_enabled": true, "__prefab": { - "__id__": 1033 + "__id__": 1078 }, "_alignFlags": 45, "_target": null, @@ -24205,20 +25243,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1036 + "__id__": 1081 }, { - "__id__": 1038 + "__id__": 1083 } ], "_prefab": { - "__id__": 1040 + "__id__": 1085 }, "_lpos": { "__type__": "cc.Vec3", @@ -24255,11 +25293,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1035 + "__id__": 1080 }, "_enabled": true, "__prefab": { - "__id__": 1037 + "__id__": 1082 }, "_contentSize": { "__type__": "cc.Size", @@ -24283,11 +25321,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1035 + "__id__": 1080 }, "_enabled": true, "__prefab": { - "__id__": 1039 + "__id__": 1084 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24341,54 +25379,54 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [ { - "__id__": 1042 + "__id__": 1087 }, { - "__id__": 1050 + "__id__": 1095 }, { - "__id__": 1058 + "__id__": 1103 }, { - "__id__": 1066 + "__id__": 1111 }, { - "__id__": 1074 + "__id__": 1119 }, { - "__id__": 1082 + "__id__": 1127 }, { - "__id__": 1088 + "__id__": 1133 }, { - "__id__": 1098 + "__id__": 1143 }, { - "__id__": 1114 + "__id__": 1159 }, { - "__id__": 1136 + "__id__": 1181 }, { - "__id__": 1164 + "__id__": 1209 }, { - "__id__": 1198 + "__id__": 1243 } ], "_active": true, "_components": [ { - "__id__": 1214 + "__id__": 1259 } ], "_prefab": { - "__id__": 1216 + "__id__": 1261 }, "_lpos": { "__type__": "cc.Vec3", @@ -24425,23 +25463,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1043 + "__id__": 1088 }, { - "__id__": 1045 + "__id__": 1090 }, { - "__id__": 1047 + "__id__": 1092 } ], "_prefab": { - "__id__": 1049 + "__id__": 1094 }, "_lpos": { "__type__": "cc.Vec3", @@ -24478,11 +25516,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1042 + "__id__": 1087 }, "_enabled": true, "__prefab": { - "__id__": 1044 + "__id__": 1089 }, "_contentSize": { "__type__": "cc.Size", @@ -24506,11 +25544,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1042 + "__id__": 1087 }, "_enabled": true, "__prefab": { - "__id__": 1046 + "__id__": 1091 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24551,11 +25589,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1042 + "__id__": 1087 }, "_enabled": true, "__prefab": { - "__id__": 1048 + "__id__": 1093 }, "_alignFlags": 45, "_target": null, @@ -24600,23 +25638,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1051 + "__id__": 1096 }, { - "__id__": 1053 + "__id__": 1098 }, { - "__id__": 1055 + "__id__": 1100 } ], "_prefab": { - "__id__": 1057 + "__id__": 1102 }, "_lpos": { "__type__": "cc.Vec3", @@ -24653,11 +25691,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1050 + "__id__": 1095 }, "_enabled": true, "__prefab": { - "__id__": 1052 + "__id__": 1097 }, "_contentSize": { "__type__": "cc.Size", @@ -24681,11 +25719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1050 + "__id__": 1095 }, "_enabled": true, "__prefab": { - "__id__": 1054 + "__id__": 1099 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24726,11 +25764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1050 + "__id__": 1095 }, "_enabled": true, "__prefab": { - "__id__": 1056 + "__id__": 1101 }, "_alignFlags": 45, "_target": null, @@ -24775,23 +25813,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1059 + "__id__": 1104 }, { - "__id__": 1061 + "__id__": 1106 }, { - "__id__": 1063 + "__id__": 1108 } ], "_prefab": { - "__id__": 1065 + "__id__": 1110 }, "_lpos": { "__type__": "cc.Vec3", @@ -24828,11 +25866,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1058 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1060 + "__id__": 1105 }, "_contentSize": { "__type__": "cc.Size", @@ -24856,11 +25894,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1058 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1062 + "__id__": 1107 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24901,11 +25939,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1058 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1064 + "__id__": 1109 }, "_alignFlags": 45, "_target": null, @@ -24950,23 +25988,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1067 + "__id__": 1112 }, { - "__id__": 1069 + "__id__": 1114 }, { - "__id__": 1071 + "__id__": 1116 } ], "_prefab": { - "__id__": 1073 + "__id__": 1118 }, "_lpos": { "__type__": "cc.Vec3", @@ -25003,11 +26041,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1066 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1068 + "__id__": 1113 }, "_contentSize": { "__type__": "cc.Size", @@ -25031,11 +26069,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1066 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1070 + "__id__": 1115 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25076,11 +26114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1066 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1072 + "__id__": 1117 }, "_alignFlags": 45, "_target": null, @@ -25125,23 +26163,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1075 + "__id__": 1120 }, { - "__id__": 1077 + "__id__": 1122 }, { - "__id__": 1079 + "__id__": 1124 } ], "_prefab": { - "__id__": 1081 + "__id__": 1126 }, "_lpos": { "__type__": "cc.Vec3", @@ -25178,11 +26216,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1074 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1076 + "__id__": 1121 }, "_contentSize": { "__type__": "cc.Size", @@ -25206,11 +26244,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1074 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1078 + "__id__": 1123 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25251,11 +26289,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1074 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1080 + "__id__": 1125 }, "_alignFlags": 45, "_target": null, @@ -25300,20 +26338,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1083 + "__id__": 1128 }, { - "__id__": 1085 + "__id__": 1130 } ], "_prefab": { - "__id__": 1087 + "__id__": 1132 }, "_lpos": { "__type__": "cc.Vec3", @@ -25350,11 +26388,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1082 + "__id__": 1127 }, "_enabled": true, "__prefab": { - "__id__": 1084 + "__id__": 1129 }, "_contentSize": { "__type__": "cc.Size", @@ -25378,11 +26416,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1082 + "__id__": 1127 }, "_enabled": true, "__prefab": { - "__id__": 1086 + "__id__": 1131 }, "_customMaterial": { "__uuid__": "2fcd55a9-38ca-45aa-9164-68e48aaf51ce", @@ -25439,21 +26477,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1089 + "__id__": 1134 } ], "_active": false, "_components": [ { - "__id__": 1095 + "__id__": 1140 } ], "_prefab": { - "__id__": 1097 + "__id__": 1142 }, "_lpos": { "__type__": "cc.Vec3", @@ -25490,20 +26528,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1088 + "__id__": 1133 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1090 + "__id__": 1135 }, { - "__id__": 1092 + "__id__": 1137 } ], "_prefab": { - "__id__": 1094 + "__id__": 1139 }, "_lpos": { "__type__": "cc.Vec3", @@ -25540,11 +26578,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1089 + "__id__": 1134 }, "_enabled": true, "__prefab": { - "__id__": 1091 + "__id__": 1136 }, "_contentSize": { "__type__": "cc.Size", @@ -25568,11 +26606,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1089 + "__id__": 1134 }, "_enabled": true, "__prefab": { - "__id__": 1093 + "__id__": 1138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25626,11 +26664,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1088 + "__id__": 1133 }, "_enabled": true, "__prefab": { - "__id__": 1096 + "__id__": 1141 }, "_contentSize": { "__type__": "cc.Size", @@ -25667,24 +26705,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1099 + "__id__": 1144 }, { - "__id__": 1105 + "__id__": 1150 } ], "_active": false, "_components": [ { - "__id__": 1111 + "__id__": 1156 } ], "_prefab": { - "__id__": 1113 + "__id__": 1158 }, "_lpos": { "__type__": "cc.Vec3", @@ -25721,20 +26759,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1098 + "__id__": 1143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1100 + "__id__": 1145 }, { - "__id__": 1102 + "__id__": 1147 } ], "_prefab": { - "__id__": 1104 + "__id__": 1149 }, "_lpos": { "__type__": "cc.Vec3", @@ -25771,11 +26809,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1099 + "__id__": 1144 }, "_enabled": true, "__prefab": { - "__id__": 1101 + "__id__": 1146 }, "_contentSize": { "__type__": "cc.Size", @@ -25799,11 +26837,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1099 + "__id__": 1144 }, "_enabled": true, "__prefab": { - "__id__": 1103 + "__id__": 1148 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25857,20 +26895,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1098 + "__id__": 1143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1106 + "__id__": 1151 }, { - "__id__": 1108 + "__id__": 1153 } ], "_prefab": { - "__id__": 1110 + "__id__": 1155 }, "_lpos": { "__type__": "cc.Vec3", @@ -25907,11 +26945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1105 + "__id__": 1150 }, "_enabled": true, "__prefab": { - "__id__": 1107 + "__id__": 1152 }, "_contentSize": { "__type__": "cc.Size", @@ -25935,11 +26973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1105 + "__id__": 1150 }, "_enabled": true, "__prefab": { - "__id__": 1109 + "__id__": 1154 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -25993,11 +27031,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1098 + "__id__": 1143 }, "_enabled": true, "__prefab": { - "__id__": 1112 + "__id__": 1157 }, "_contentSize": { "__type__": "cc.Size", @@ -26034,27 +27072,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1115 + "__id__": 1160 }, { - "__id__": 1121 + "__id__": 1166 }, { - "__id__": 1127 + "__id__": 1172 } ], "_active": false, "_components": [ { - "__id__": 1133 + "__id__": 1178 } ], "_prefab": { - "__id__": 1135 + "__id__": 1180 }, "_lpos": { "__type__": "cc.Vec3", @@ -26091,20 +27129,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1114 + "__id__": 1159 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1116 + "__id__": 1161 }, { - "__id__": 1118 + "__id__": 1163 } ], "_prefab": { - "__id__": 1120 + "__id__": 1165 }, "_lpos": { "__type__": "cc.Vec3", @@ -26141,11 +27179,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1115 + "__id__": 1160 }, "_enabled": true, "__prefab": { - "__id__": 1117 + "__id__": 1162 }, "_contentSize": { "__type__": "cc.Size", @@ -26169,11 +27207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1115 + "__id__": 1160 }, "_enabled": true, "__prefab": { - "__id__": 1119 + "__id__": 1164 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -26227,20 +27265,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1114 + "__id__": 1159 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1122 + "__id__": 1167 }, { - "__id__": 1124 + "__id__": 1169 } ], "_prefab": { - "__id__": 1126 + "__id__": 1171 }, "_lpos": { "__type__": "cc.Vec3", @@ -26277,11 +27315,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1166 }, "_enabled": true, "__prefab": { - "__id__": 1123 + "__id__": 1168 }, "_contentSize": { "__type__": "cc.Size", @@ -26305,11 +27343,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1166 }, "_enabled": true, "__prefab": { - "__id__": 1125 + "__id__": 1170 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -26363,20 +27401,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1114 + "__id__": 1159 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1128 + "__id__": 1173 }, { - "__id__": 1130 + "__id__": 1175 } ], "_prefab": { - "__id__": 1132 + "__id__": 1177 }, "_lpos": { "__type__": "cc.Vec3", @@ -26413,11 +27451,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1127 + "__id__": 1172 }, "_enabled": true, "__prefab": { - "__id__": 1129 + "__id__": 1174 }, "_contentSize": { "__type__": "cc.Size", @@ -26441,11 +27479,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1127 + "__id__": 1172 }, "_enabled": true, "__prefab": { - "__id__": 1131 + "__id__": 1176 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -26499,11 +27537,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1114 + "__id__": 1159 }, "_enabled": true, "__prefab": { - "__id__": 1134 + "__id__": 1179 }, "_contentSize": { "__type__": "cc.Size", @@ -26540,30 +27578,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1137 + "__id__": 1182 }, { - "__id__": 1143 + "__id__": 1188 }, { - "__id__": 1149 + "__id__": 1194 }, { - "__id__": 1155 + "__id__": 1200 } ], "_active": false, "_components": [ { - "__id__": 1161 + "__id__": 1206 } ], "_prefab": { - "__id__": 1163 + "__id__": 1208 }, "_lpos": { "__type__": "cc.Vec3", @@ -26600,20 +27638,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1136 + "__id__": 1181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1138 + "__id__": 1183 }, { - "__id__": 1140 + "__id__": 1185 } ], "_prefab": { - "__id__": 1142 + "__id__": 1187 }, "_lpos": { "__type__": "cc.Vec3", @@ -26650,11 +27688,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1137 + "__id__": 1182 }, "_enabled": true, "__prefab": { - "__id__": 1139 + "__id__": 1184 }, "_contentSize": { "__type__": "cc.Size", @@ -26678,11 +27716,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1137 + "__id__": 1182 }, "_enabled": true, "__prefab": { - "__id__": 1141 + "__id__": 1186 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -26736,20 +27774,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1136 + "__id__": 1181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1144 + "__id__": 1189 }, { - "__id__": 1146 + "__id__": 1191 } ], "_prefab": { - "__id__": 1148 + "__id__": 1193 }, "_lpos": { "__type__": "cc.Vec3", @@ -26786,11 +27824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1143 + "__id__": 1188 }, "_enabled": true, "__prefab": { - "__id__": 1145 + "__id__": 1190 }, "_contentSize": { "__type__": "cc.Size", @@ -26814,11 +27852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1143 + "__id__": 1188 }, "_enabled": true, "__prefab": { - "__id__": 1147 + "__id__": 1192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -26872,20 +27910,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1136 + "__id__": 1181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1150 + "__id__": 1195 }, { - "__id__": 1152 + "__id__": 1197 } ], "_prefab": { - "__id__": 1154 + "__id__": 1199 }, "_lpos": { "__type__": "cc.Vec3", @@ -26922,11 +27960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1149 + "__id__": 1194 }, "_enabled": true, "__prefab": { - "__id__": 1151 + "__id__": 1196 }, "_contentSize": { "__type__": "cc.Size", @@ -26950,11 +27988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1149 + "__id__": 1194 }, "_enabled": true, "__prefab": { - "__id__": 1153 + "__id__": 1198 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27008,20 +28046,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1136 + "__id__": 1181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1156 + "__id__": 1201 }, { - "__id__": 1158 + "__id__": 1203 } ], "_prefab": { - "__id__": 1160 + "__id__": 1205 }, "_lpos": { "__type__": "cc.Vec3", @@ -27058,11 +28096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1155 + "__id__": 1200 }, "_enabled": true, "__prefab": { - "__id__": 1157 + "__id__": 1202 }, "_contentSize": { "__type__": "cc.Size", @@ -27086,11 +28124,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1155 + "__id__": 1200 }, "_enabled": true, "__prefab": { - "__id__": 1159 + "__id__": 1204 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27144,11 +28182,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1136 + "__id__": 1181 }, "_enabled": true, "__prefab": { - "__id__": 1162 + "__id__": 1207 }, "_contentSize": { "__type__": "cc.Size", @@ -27185,33 +28223,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1165 + "__id__": 1210 }, { - "__id__": 1171 + "__id__": 1216 }, { - "__id__": 1177 + "__id__": 1222 }, { - "__id__": 1183 + "__id__": 1228 }, { - "__id__": 1189 + "__id__": 1234 } ], "_active": true, "_components": [ { - "__id__": 1195 + "__id__": 1240 } ], "_prefab": { - "__id__": 1197 + "__id__": 1242 }, "_lpos": { "__type__": "cc.Vec3", @@ -27248,20 +28286,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1164 + "__id__": 1209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1166 + "__id__": 1211 }, { - "__id__": 1168 + "__id__": 1213 } ], "_prefab": { - "__id__": 1170 + "__id__": 1215 }, "_lpos": { "__type__": "cc.Vec3", @@ -27298,11 +28336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1165 + "__id__": 1210 }, "_enabled": true, "__prefab": { - "__id__": 1167 + "__id__": 1212 }, "_contentSize": { "__type__": "cc.Size", @@ -27326,11 +28364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1165 + "__id__": 1210 }, "_enabled": true, "__prefab": { - "__id__": 1169 + "__id__": 1214 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27384,20 +28422,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1164 + "__id__": 1209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1172 + "__id__": 1217 }, { - "__id__": 1174 + "__id__": 1219 } ], "_prefab": { - "__id__": 1176 + "__id__": 1221 }, "_lpos": { "__type__": "cc.Vec3", @@ -27434,11 +28472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1171 + "__id__": 1216 }, "_enabled": true, "__prefab": { - "__id__": 1173 + "__id__": 1218 }, "_contentSize": { "__type__": "cc.Size", @@ -27462,11 +28500,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1171 + "__id__": 1216 }, "_enabled": true, "__prefab": { - "__id__": 1175 + "__id__": 1220 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27520,20 +28558,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1164 + "__id__": 1209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1178 + "__id__": 1223 }, { - "__id__": 1180 + "__id__": 1225 } ], "_prefab": { - "__id__": 1182 + "__id__": 1227 }, "_lpos": { "__type__": "cc.Vec3", @@ -27570,11 +28608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1177 + "__id__": 1222 }, "_enabled": true, "__prefab": { - "__id__": 1179 + "__id__": 1224 }, "_contentSize": { "__type__": "cc.Size", @@ -27598,11 +28636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1177 + "__id__": 1222 }, "_enabled": true, "__prefab": { - "__id__": 1181 + "__id__": 1226 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27656,20 +28694,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1164 + "__id__": 1209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1184 + "__id__": 1229 }, { - "__id__": 1186 + "__id__": 1231 } ], "_prefab": { - "__id__": 1188 + "__id__": 1233 }, "_lpos": { "__type__": "cc.Vec3", @@ -27706,11 +28744,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1183 + "__id__": 1228 }, "_enabled": true, "__prefab": { - "__id__": 1185 + "__id__": 1230 }, "_contentSize": { "__type__": "cc.Size", @@ -27734,11 +28772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1183 + "__id__": 1228 }, "_enabled": true, "__prefab": { - "__id__": 1187 + "__id__": 1232 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27792,20 +28830,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1164 + "__id__": 1209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1190 + "__id__": 1235 }, { - "__id__": 1192 + "__id__": 1237 } ], "_prefab": { - "__id__": 1194 + "__id__": 1239 }, "_lpos": { "__type__": "cc.Vec3", @@ -27842,11 +28880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1189 + "__id__": 1234 }, "_enabled": true, "__prefab": { - "__id__": 1191 + "__id__": 1236 }, "_contentSize": { "__type__": "cc.Size", @@ -27870,11 +28908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1189 + "__id__": 1234 }, "_enabled": true, "__prefab": { - "__id__": 1193 + "__id__": 1238 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -27928,11 +28966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1164 + "__id__": 1209 }, "_enabled": true, "__prefab": { - "__id__": 1196 + "__id__": 1241 }, "_contentSize": { "__type__": "cc.Size", @@ -27969,27 +29007,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1041 + "__id__": 1086 }, "_children": [ { - "__id__": 1199 + "__id__": 1244 } ], "_active": false, "_components": [ { - "__id__": 1207 + "__id__": 1252 }, { - "__id__": 1209 + "__id__": 1254 }, { - "__id__": 1211 + "__id__": 1256 } ], "_prefab": { - "__id__": 1213 + "__id__": 1258 }, "_lpos": { "__type__": "cc.Vec3", @@ -28026,23 +29064,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1198 + "__id__": 1243 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1200 + "__id__": 1245 }, { - "__id__": 1202 + "__id__": 1247 }, { - "__id__": 1204 + "__id__": 1249 } ], "_prefab": { - "__id__": 1206 + "__id__": 1251 }, "_lpos": { "__type__": "cc.Vec3", @@ -28079,11 +29117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1244 }, "_enabled": true, "__prefab": { - "__id__": 1201 + "__id__": 1246 }, "_contentSize": { "__type__": "cc.Size", @@ -28107,11 +29145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1244 }, "_enabled": true, "__prefab": { - "__id__": 1203 + "__id__": 1248 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -28152,11 +29190,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1244 }, "_enabled": true, "__prefab": { - "__id__": 1205 + "__id__": 1250 }, "_alignFlags": 40, "_target": null, @@ -28201,11 +29239,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1198 + "__id__": 1243 }, "_enabled": true, "__prefab": { - "__id__": 1208 + "__id__": 1253 }, "_contentSize": { "__type__": "cc.Size", @@ -28229,11 +29267,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1198 + "__id__": 1243 }, "_enabled": false, "__prefab": { - "__id__": 1210 + "__id__": 1255 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -28274,14 +29312,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1198 + "__id__": 1243 }, "_enabled": true, "__prefab": { - "__id__": 1212 + "__id__": 1257 }, "_barSprite": { - "__id__": 1202 + "__id__": 1247 }, "_mode": 2, "_totalLength": 1, @@ -28312,11 +29350,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1041 + "__id__": 1086 }, "_enabled": true, "__prefab": { - "__id__": 1215 + "__id__": 1260 }, "_contentSize": { "__type__": "cc.Size", @@ -28353,23 +29391,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1218 + "__id__": 1263 }, { - "__id__": 1220 + "__id__": 1265 }, { - "__id__": 1222 + "__id__": 1267 } ], "_prefab": { - "__id__": 1226 + "__id__": 1271 }, "_lpos": { "__type__": "cc.Vec3", @@ -28406,11 +29444,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1217 + "__id__": 1262 }, "_enabled": true, "__prefab": { - "__id__": 1219 + "__id__": 1264 }, "_contentSize": { "__type__": "cc.Size", @@ -28434,11 +29472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1217 + "__id__": 1262 }, "_enabled": true, "__prefab": { - "__id__": 1221 + "__id__": 1266 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -28476,18 +29514,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1217 + "__id__": 1262 }, "_enabled": true, "__prefab": { - "__id__": 1223 + "__id__": 1268 }, "clickEvents": [ { - "__id__": 1224 + "__id__": 1269 }, { - "__id__": 1225 + "__id__": 1270 } ], "_interactable": true, @@ -28527,7 +29565,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1018 + "__id__": 1063 }, "_id": "" }, @@ -28538,7 +29576,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -28548,7 +29586,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -28574,23 +29612,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1228 + "__id__": 1273 }, { - "__id__": 1230 + "__id__": 1275 }, { - "__id__": 1232 + "__id__": 1277 } ], "_prefab": { - "__id__": 1236 + "__id__": 1281 }, "_lpos": { "__type__": "cc.Vec3", @@ -28627,11 +29665,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1227 + "__id__": 1272 }, "_enabled": true, "__prefab": { - "__id__": 1229 + "__id__": 1274 }, "_contentSize": { "__type__": "cc.Size", @@ -28655,11 +29693,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1227 + "__id__": 1272 }, "_enabled": true, "__prefab": { - "__id__": 1231 + "__id__": 1276 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -28697,18 +29735,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1227 + "__id__": 1272 }, "_enabled": true, "__prefab": { - "__id__": 1233 + "__id__": 1278 }, "clickEvents": [ { - "__id__": 1234 + "__id__": 1279 }, { - "__id__": 1235 + "__id__": 1280 } ], "_interactable": true, @@ -28748,7 +29786,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1018 + "__id__": 1063 }, "_id": "" }, @@ -28759,7 +29797,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -28769,7 +29807,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -28795,20 +29833,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1018 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1238 + "__id__": 1283 }, { - "__id__": 1240 + "__id__": 1285 } ], "_prefab": { - "__id__": 1242 + "__id__": 1287 }, "_lpos": { "__type__": "cc.Vec3", @@ -28845,11 +29883,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1237 + "__id__": 1282 }, "_enabled": true, "__prefab": { - "__id__": 1239 + "__id__": 1284 }, "_contentSize": { "__type__": "cc.Size", @@ -28873,11 +29911,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1237 + "__id__": 1282 }, "_enabled": true, "__prefab": { - "__id__": 1241 + "__id__": 1286 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -28954,11 +29992,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1018 + "__id__": 1063 }, "_enabled": true, "__prefab": { - "__id__": 1244 + "__id__": 1289 }, "_contentSize": { "__type__": "cc.Size", @@ -28995,39 +30033,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 834 }, "_children": [ { - "__id__": 1247 + "__id__": 1292 }, { - "__id__": 1255 + "__id__": 1300 }, { - "__id__": 1263 + "__id__": 1308 }, { - "__id__": 1269 + "__id__": 1314 }, { - "__id__": 1445 + "__id__": 1490 }, { - "__id__": 1455 + "__id__": 1500 }, { - "__id__": 1465 + "__id__": 1510 } ], "_active": true, "_components": [ { - "__id__": 1471 + "__id__": 1516 } ], "_prefab": { - "__id__": 1473 + "__id__": 1518 }, "_lpos": { "__type__": "cc.Vec3", @@ -29064,23 +30102,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1248 + "__id__": 1293 }, { - "__id__": 1250 + "__id__": 1295 }, { - "__id__": 1252 + "__id__": 1297 } ], "_prefab": { - "__id__": 1254 + "__id__": 1299 }, "_lpos": { "__type__": "cc.Vec3", @@ -29117,11 +30155,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1247 + "__id__": 1292 }, "_enabled": true, "__prefab": { - "__id__": 1249 + "__id__": 1294 }, "_contentSize": { "__type__": "cc.Size", @@ -29145,11 +30183,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1247 + "__id__": 1292 }, "_enabled": true, "__prefab": { - "__id__": 1251 + "__id__": 1296 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -29190,11 +30228,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1247 + "__id__": 1292 }, "_enabled": true, "__prefab": { - "__id__": 1253 + "__id__": 1298 }, "playOnLoad": true, "_clips": [ @@ -29232,23 +30270,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1256 + "__id__": 1301 }, { - "__id__": 1258 + "__id__": 1303 }, { - "__id__": 1260 + "__id__": 1305 } ], "_prefab": { - "__id__": 1262 + "__id__": 1307 }, "_lpos": { "__type__": "cc.Vec3", @@ -29285,11 +30323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1255 + "__id__": 1300 }, "_enabled": true, "__prefab": { - "__id__": 1257 + "__id__": 1302 }, "_contentSize": { "__type__": "cc.Size", @@ -29313,11 +30351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1255 + "__id__": 1300 }, "_enabled": true, "__prefab": { - "__id__": 1259 + "__id__": 1304 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -29358,11 +30396,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1255 + "__id__": 1300 }, "_enabled": true, "__prefab": { - "__id__": 1261 + "__id__": 1306 }, "_alignFlags": 45, "_target": null, @@ -29407,20 +30445,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1264 + "__id__": 1309 }, { - "__id__": 1266 + "__id__": 1311 } ], "_prefab": { - "__id__": 1268 + "__id__": 1313 }, "_lpos": { "__type__": "cc.Vec3", @@ -29457,11 +30495,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1263 + "__id__": 1308 }, "_enabled": true, "__prefab": { - "__id__": 1265 + "__id__": 1310 }, "_contentSize": { "__type__": "cc.Size", @@ -29485,11 +30523,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1263 + "__id__": 1308 }, "_enabled": true, "__prefab": { - "__id__": 1267 + "__id__": 1312 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -29543,54 +30581,54 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [ { - "__id__": 1270 + "__id__": 1315 }, { - "__id__": 1278 + "__id__": 1323 }, { - "__id__": 1286 + "__id__": 1331 }, { - "__id__": 1294 + "__id__": 1339 }, { - "__id__": 1302 + "__id__": 1347 }, { - "__id__": 1310 + "__id__": 1355 }, { - "__id__": 1316 + "__id__": 1361 }, { - "__id__": 1350 + "__id__": 1395 }, { - "__id__": 1378 + "__id__": 1423 }, { - "__id__": 1400 + "__id__": 1445 }, { - "__id__": 1416 + "__id__": 1461 }, { - "__id__": 1426 + "__id__": 1471 } ], "_active": true, "_components": [ { - "__id__": 1442 + "__id__": 1487 } ], "_prefab": { - "__id__": 1444 + "__id__": 1489 }, "_lpos": { "__type__": "cc.Vec3", @@ -29627,23 +30665,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1271 + "__id__": 1316 }, { - "__id__": 1273 + "__id__": 1318 }, { - "__id__": 1275 + "__id__": 1320 } ], "_prefab": { - "__id__": 1277 + "__id__": 1322 }, "_lpos": { "__type__": "cc.Vec3", @@ -29680,11 +30718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1315 }, "_enabled": true, "__prefab": { - "__id__": 1272 + "__id__": 1317 }, "_contentSize": { "__type__": "cc.Size", @@ -29708,11 +30746,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1315 }, "_enabled": true, "__prefab": { - "__id__": 1274 + "__id__": 1319 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -29753,11 +30791,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1315 }, "_enabled": true, "__prefab": { - "__id__": 1276 + "__id__": 1321 }, "_alignFlags": 45, "_target": null, @@ -29802,23 +30840,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1279 + "__id__": 1324 }, { - "__id__": 1281 + "__id__": 1326 }, { - "__id__": 1283 + "__id__": 1328 } ], "_prefab": { - "__id__": 1285 + "__id__": 1330 }, "_lpos": { "__type__": "cc.Vec3", @@ -29855,11 +30893,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1278 + "__id__": 1323 }, "_enabled": true, "__prefab": { - "__id__": 1280 + "__id__": 1325 }, "_contentSize": { "__type__": "cc.Size", @@ -29883,11 +30921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1278 + "__id__": 1323 }, "_enabled": true, "__prefab": { - "__id__": 1282 + "__id__": 1327 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -29928,11 +30966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1278 + "__id__": 1323 }, "_enabled": true, "__prefab": { - "__id__": 1284 + "__id__": 1329 }, "_alignFlags": 45, "_target": null, @@ -29977,23 +31015,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1287 + "__id__": 1332 }, { - "__id__": 1289 + "__id__": 1334 }, { - "__id__": 1291 + "__id__": 1336 } ], "_prefab": { - "__id__": 1293 + "__id__": 1338 }, "_lpos": { "__type__": "cc.Vec3", @@ -30030,11 +31068,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1286 + "__id__": 1331 }, "_enabled": true, "__prefab": { - "__id__": 1288 + "__id__": 1333 }, "_contentSize": { "__type__": "cc.Size", @@ -30058,11 +31096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1286 + "__id__": 1331 }, "_enabled": true, "__prefab": { - "__id__": 1290 + "__id__": 1335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -30103,11 +31141,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1286 + "__id__": 1331 }, "_enabled": true, "__prefab": { - "__id__": 1292 + "__id__": 1337 }, "_alignFlags": 45, "_target": null, @@ -30152,23 +31190,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1295 + "__id__": 1340 }, { - "__id__": 1297 + "__id__": 1342 }, { - "__id__": 1299 + "__id__": 1344 } ], "_prefab": { - "__id__": 1301 + "__id__": 1346 }, "_lpos": { "__type__": "cc.Vec3", @@ -30205,11 +31243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1294 + "__id__": 1339 }, "_enabled": true, "__prefab": { - "__id__": 1296 + "__id__": 1341 }, "_contentSize": { "__type__": "cc.Size", @@ -30233,11 +31271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1294 + "__id__": 1339 }, "_enabled": true, "__prefab": { - "__id__": 1298 + "__id__": 1343 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -30278,11 +31316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1294 + "__id__": 1339 }, "_enabled": true, "__prefab": { - "__id__": 1300 + "__id__": 1345 }, "_alignFlags": 45, "_target": null, @@ -30327,23 +31365,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1303 + "__id__": 1348 }, { - "__id__": 1305 + "__id__": 1350 }, { - "__id__": 1307 + "__id__": 1352 } ], "_prefab": { - "__id__": 1309 + "__id__": 1354 }, "_lpos": { "__type__": "cc.Vec3", @@ -30380,11 +31418,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1302 + "__id__": 1347 }, "_enabled": true, "__prefab": { - "__id__": 1304 + "__id__": 1349 }, "_contentSize": { "__type__": "cc.Size", @@ -30408,11 +31446,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1302 + "__id__": 1347 }, "_enabled": true, "__prefab": { - "__id__": 1306 + "__id__": 1351 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -30453,11 +31491,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1302 + "__id__": 1347 }, "_enabled": true, "__prefab": { - "__id__": 1308 + "__id__": 1353 }, "_alignFlags": 45, "_target": null, @@ -30502,20 +31540,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1311 + "__id__": 1356 }, { - "__id__": 1313 + "__id__": 1358 } ], "_prefab": { - "__id__": 1315 + "__id__": 1360 }, "_lpos": { "__type__": "cc.Vec3", @@ -30552,11 +31590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1310 + "__id__": 1355 }, "_enabled": true, "__prefab": { - "__id__": 1312 + "__id__": 1357 }, "_contentSize": { "__type__": "cc.Size", @@ -30580,11 +31618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1310 + "__id__": 1355 }, "_enabled": true, "__prefab": { - "__id__": 1314 + "__id__": 1359 }, "_customMaterial": { "__uuid__": "2fcd55a9-38ca-45aa-9164-68e48aaf51ce", @@ -30641,33 +31679,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1317 + "__id__": 1362 }, { - "__id__": 1323 + "__id__": 1368 }, { - "__id__": 1329 + "__id__": 1374 }, { - "__id__": 1335 + "__id__": 1380 }, { - "__id__": 1341 + "__id__": 1386 } ], "_active": true, "_components": [ { - "__id__": 1347 + "__id__": 1392 } ], "_prefab": { - "__id__": 1349 + "__id__": 1394 }, "_lpos": { "__type__": "cc.Vec3", @@ -30704,20 +31742,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1316 + "__id__": 1361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1318 + "__id__": 1363 }, { - "__id__": 1320 + "__id__": 1365 } ], "_prefab": { - "__id__": 1322 + "__id__": 1367 }, "_lpos": { "__type__": "cc.Vec3", @@ -30754,11 +31792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1317 + "__id__": 1362 }, "_enabled": true, "__prefab": { - "__id__": 1319 + "__id__": 1364 }, "_contentSize": { "__type__": "cc.Size", @@ -30782,11 +31820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1317 + "__id__": 1362 }, "_enabled": true, "__prefab": { - "__id__": 1321 + "__id__": 1366 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -30840,20 +31878,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1316 + "__id__": 1361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1324 + "__id__": 1369 }, { - "__id__": 1326 + "__id__": 1371 } ], "_prefab": { - "__id__": 1328 + "__id__": 1373 }, "_lpos": { "__type__": "cc.Vec3", @@ -30890,11 +31928,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1323 + "__id__": 1368 }, "_enabled": true, "__prefab": { - "__id__": 1325 + "__id__": 1370 }, "_contentSize": { "__type__": "cc.Size", @@ -30918,11 +31956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1323 + "__id__": 1368 }, "_enabled": true, "__prefab": { - "__id__": 1327 + "__id__": 1372 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -30976,20 +32014,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1316 + "__id__": 1361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1330 + "__id__": 1375 }, { - "__id__": 1332 + "__id__": 1377 } ], "_prefab": { - "__id__": 1334 + "__id__": 1379 }, "_lpos": { "__type__": "cc.Vec3", @@ -31026,11 +32064,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1329 + "__id__": 1374 }, "_enabled": true, "__prefab": { - "__id__": 1331 + "__id__": 1376 }, "_contentSize": { "__type__": "cc.Size", @@ -31054,11 +32092,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1329 + "__id__": 1374 }, "_enabled": true, "__prefab": { - "__id__": 1333 + "__id__": 1378 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31112,20 +32150,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1316 + "__id__": 1361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1336 + "__id__": 1381 }, { - "__id__": 1338 + "__id__": 1383 } ], "_prefab": { - "__id__": 1340 + "__id__": 1385 }, "_lpos": { "__type__": "cc.Vec3", @@ -31162,11 +32200,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1335 + "__id__": 1380 }, "_enabled": true, "__prefab": { - "__id__": 1337 + "__id__": 1382 }, "_contentSize": { "__type__": "cc.Size", @@ -31190,11 +32228,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1335 + "__id__": 1380 }, "_enabled": true, "__prefab": { - "__id__": 1339 + "__id__": 1384 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31248,20 +32286,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1316 + "__id__": 1361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1342 + "__id__": 1387 }, { - "__id__": 1344 + "__id__": 1389 } ], "_prefab": { - "__id__": 1346 + "__id__": 1391 }, "_lpos": { "__type__": "cc.Vec3", @@ -31298,11 +32336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1341 + "__id__": 1386 }, "_enabled": true, "__prefab": { - "__id__": 1343 + "__id__": 1388 }, "_contentSize": { "__type__": "cc.Size", @@ -31326,11 +32364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1341 + "__id__": 1386 }, "_enabled": true, "__prefab": { - "__id__": 1345 + "__id__": 1390 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31384,11 +32422,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1316 + "__id__": 1361 }, "_enabled": true, "__prefab": { - "__id__": 1348 + "__id__": 1393 }, "_contentSize": { "__type__": "cc.Size", @@ -31425,30 +32463,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1351 + "__id__": 1396 }, { - "__id__": 1357 + "__id__": 1402 }, { - "__id__": 1363 + "__id__": 1408 }, { - "__id__": 1369 + "__id__": 1414 } ], "_active": false, "_components": [ { - "__id__": 1375 + "__id__": 1420 } ], "_prefab": { - "__id__": 1377 + "__id__": 1422 }, "_lpos": { "__type__": "cc.Vec3", @@ -31485,20 +32523,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1350 + "__id__": 1395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1352 + "__id__": 1397 }, { - "__id__": 1354 + "__id__": 1399 } ], "_prefab": { - "__id__": 1356 + "__id__": 1401 }, "_lpos": { "__type__": "cc.Vec3", @@ -31535,11 +32573,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1351 + "__id__": 1396 }, "_enabled": true, "__prefab": { - "__id__": 1353 + "__id__": 1398 }, "_contentSize": { "__type__": "cc.Size", @@ -31563,11 +32601,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1351 + "__id__": 1396 }, "_enabled": true, "__prefab": { - "__id__": 1355 + "__id__": 1400 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31621,20 +32659,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1350 + "__id__": 1395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1358 + "__id__": 1403 }, { - "__id__": 1360 + "__id__": 1405 } ], "_prefab": { - "__id__": 1362 + "__id__": 1407 }, "_lpos": { "__type__": "cc.Vec3", @@ -31671,11 +32709,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1357 + "__id__": 1402 }, "_enabled": true, "__prefab": { - "__id__": 1359 + "__id__": 1404 }, "_contentSize": { "__type__": "cc.Size", @@ -31699,11 +32737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1357 + "__id__": 1402 }, "_enabled": true, "__prefab": { - "__id__": 1361 + "__id__": 1406 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31757,20 +32795,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1350 + "__id__": 1395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1364 + "__id__": 1409 }, { - "__id__": 1366 + "__id__": 1411 } ], "_prefab": { - "__id__": 1368 + "__id__": 1413 }, "_lpos": { "__type__": "cc.Vec3", @@ -31807,11 +32845,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1363 + "__id__": 1408 }, "_enabled": true, "__prefab": { - "__id__": 1365 + "__id__": 1410 }, "_contentSize": { "__type__": "cc.Size", @@ -31835,11 +32873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1363 + "__id__": 1408 }, "_enabled": true, "__prefab": { - "__id__": 1367 + "__id__": 1412 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -31893,20 +32931,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1350 + "__id__": 1395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1370 + "__id__": 1415 }, { - "__id__": 1372 + "__id__": 1417 } ], "_prefab": { - "__id__": 1374 + "__id__": 1419 }, "_lpos": { "__type__": "cc.Vec3", @@ -31943,11 +32981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1369 + "__id__": 1414 }, "_enabled": true, "__prefab": { - "__id__": 1371 + "__id__": 1416 }, "_contentSize": { "__type__": "cc.Size", @@ -31971,11 +33009,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1369 + "__id__": 1414 }, "_enabled": true, "__prefab": { - "__id__": 1373 + "__id__": 1418 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32029,11 +33067,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1350 + "__id__": 1395 }, "_enabled": true, "__prefab": { - "__id__": 1376 + "__id__": 1421 }, "_contentSize": { "__type__": "cc.Size", @@ -32070,27 +33108,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1379 + "__id__": 1424 }, { - "__id__": 1385 + "__id__": 1430 }, { - "__id__": 1391 + "__id__": 1436 } ], "_active": false, "_components": [ { - "__id__": 1397 + "__id__": 1442 } ], "_prefab": { - "__id__": 1399 + "__id__": 1444 }, "_lpos": { "__type__": "cc.Vec3", @@ -32127,20 +33165,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1378 + "__id__": 1423 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1380 + "__id__": 1425 }, { - "__id__": 1382 + "__id__": 1427 } ], "_prefab": { - "__id__": 1384 + "__id__": 1429 }, "_lpos": { "__type__": "cc.Vec3", @@ -32177,11 +33215,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1379 + "__id__": 1424 }, "_enabled": true, "__prefab": { - "__id__": 1381 + "__id__": 1426 }, "_contentSize": { "__type__": "cc.Size", @@ -32205,11 +33243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1379 + "__id__": 1424 }, "_enabled": true, "__prefab": { - "__id__": 1383 + "__id__": 1428 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32263,20 +33301,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1378 + "__id__": 1423 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1386 + "__id__": 1431 }, { - "__id__": 1388 + "__id__": 1433 } ], "_prefab": { - "__id__": 1390 + "__id__": 1435 }, "_lpos": { "__type__": "cc.Vec3", @@ -32313,11 +33351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1385 + "__id__": 1430 }, "_enabled": true, "__prefab": { - "__id__": 1387 + "__id__": 1432 }, "_contentSize": { "__type__": "cc.Size", @@ -32341,11 +33379,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1385 + "__id__": 1430 }, "_enabled": true, "__prefab": { - "__id__": 1389 + "__id__": 1434 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32399,20 +33437,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1378 + "__id__": 1423 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1392 + "__id__": 1437 }, { - "__id__": 1394 + "__id__": 1439 } ], "_prefab": { - "__id__": 1396 + "__id__": 1441 }, "_lpos": { "__type__": "cc.Vec3", @@ -32449,11 +33487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1391 + "__id__": 1436 }, "_enabled": true, "__prefab": { - "__id__": 1393 + "__id__": 1438 }, "_contentSize": { "__type__": "cc.Size", @@ -32477,11 +33515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1391 + "__id__": 1436 }, "_enabled": true, "__prefab": { - "__id__": 1395 + "__id__": 1440 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32535,11 +33573,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1378 + "__id__": 1423 }, "_enabled": true, "__prefab": { - "__id__": 1398 + "__id__": 1443 }, "_contentSize": { "__type__": "cc.Size", @@ -32576,24 +33614,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1401 + "__id__": 1446 }, { - "__id__": 1407 + "__id__": 1452 } ], "_active": false, "_components": [ { - "__id__": 1413 + "__id__": 1458 } ], "_prefab": { - "__id__": 1415 + "__id__": 1460 }, "_lpos": { "__type__": "cc.Vec3", @@ -32630,20 +33668,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1400 + "__id__": 1445 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1402 + "__id__": 1447 }, { - "__id__": 1404 + "__id__": 1449 } ], "_prefab": { - "__id__": 1406 + "__id__": 1451 }, "_lpos": { "__type__": "cc.Vec3", @@ -32680,11 +33718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1401 + "__id__": 1446 }, "_enabled": true, "__prefab": { - "__id__": 1403 + "__id__": 1448 }, "_contentSize": { "__type__": "cc.Size", @@ -32708,11 +33746,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1401 + "__id__": 1446 }, "_enabled": true, "__prefab": { - "__id__": 1405 + "__id__": 1450 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32766,20 +33804,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1400 + "__id__": 1445 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1408 + "__id__": 1453 }, { - "__id__": 1410 + "__id__": 1455 } ], "_prefab": { - "__id__": 1412 + "__id__": 1457 }, "_lpos": { "__type__": "cc.Vec3", @@ -32816,11 +33854,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1407 + "__id__": 1452 }, "_enabled": true, "__prefab": { - "__id__": 1409 + "__id__": 1454 }, "_contentSize": { "__type__": "cc.Size", @@ -32844,11 +33882,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1407 + "__id__": 1452 }, "_enabled": true, "__prefab": { - "__id__": 1411 + "__id__": 1456 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -32902,11 +33940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1400 + "__id__": 1445 }, "_enabled": true, "__prefab": { - "__id__": 1414 + "__id__": 1459 }, "_contentSize": { "__type__": "cc.Size", @@ -32943,21 +33981,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1417 + "__id__": 1462 } ], "_active": false, "_components": [ { - "__id__": 1423 + "__id__": 1468 } ], "_prefab": { - "__id__": 1425 + "__id__": 1470 }, "_lpos": { "__type__": "cc.Vec3", @@ -32994,20 +34032,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1416 + "__id__": 1461 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1418 + "__id__": 1463 }, { - "__id__": 1420 + "__id__": 1465 } ], "_prefab": { - "__id__": 1422 + "__id__": 1467 }, "_lpos": { "__type__": "cc.Vec3", @@ -33044,11 +34082,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1417 + "__id__": 1462 }, "_enabled": true, "__prefab": { - "__id__": 1419 + "__id__": 1464 }, "_contentSize": { "__type__": "cc.Size", @@ -33072,11 +34110,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1417 + "__id__": 1462 }, "_enabled": true, "__prefab": { - "__id__": 1421 + "__id__": 1466 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -33130,11 +34168,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1416 + "__id__": 1461 }, "_enabled": true, "__prefab": { - "__id__": 1424 + "__id__": 1469 }, "_contentSize": { "__type__": "cc.Size", @@ -33171,27 +34209,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1314 }, "_children": [ { - "__id__": 1427 + "__id__": 1472 } ], "_active": false, "_components": [ { - "__id__": 1435 + "__id__": 1480 }, { - "__id__": 1437 + "__id__": 1482 }, { - "__id__": 1439 + "__id__": 1484 } ], "_prefab": { - "__id__": 1441 + "__id__": 1486 }, "_lpos": { "__type__": "cc.Vec3", @@ -33228,23 +34266,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1426 + "__id__": 1471 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1428 + "__id__": 1473 }, { - "__id__": 1430 + "__id__": 1475 }, { - "__id__": 1432 + "__id__": 1477 } ], "_prefab": { - "__id__": 1434 + "__id__": 1479 }, "_lpos": { "__type__": "cc.Vec3", @@ -33281,11 +34319,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1427 + "__id__": 1472 }, "_enabled": true, "__prefab": { - "__id__": 1429 + "__id__": 1474 }, "_contentSize": { "__type__": "cc.Size", @@ -33309,11 +34347,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1427 + "__id__": 1472 }, "_enabled": true, "__prefab": { - "__id__": 1431 + "__id__": 1476 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -33354,11 +34392,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1427 + "__id__": 1472 }, "_enabled": true, "__prefab": { - "__id__": 1433 + "__id__": 1478 }, "_alignFlags": 40, "_target": null, @@ -33403,11 +34441,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1426 + "__id__": 1471 }, "_enabled": true, "__prefab": { - "__id__": 1436 + "__id__": 1481 }, "_contentSize": { "__type__": "cc.Size", @@ -33431,11 +34469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1426 + "__id__": 1471 }, "_enabled": false, "__prefab": { - "__id__": 1438 + "__id__": 1483 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -33476,14 +34514,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1426 + "__id__": 1471 }, "_enabled": true, "__prefab": { - "__id__": 1440 + "__id__": 1485 }, "_barSprite": { - "__id__": 1430 + "__id__": 1475 }, "_mode": 2, "_totalLength": 1, @@ -33514,11 +34552,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1314 }, "_enabled": true, "__prefab": { - "__id__": 1443 + "__id__": 1488 }, "_contentSize": { "__type__": "cc.Size", @@ -33555,23 +34593,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1446 + "__id__": 1491 }, { - "__id__": 1448 + "__id__": 1493 }, { - "__id__": 1450 + "__id__": 1495 } ], "_prefab": { - "__id__": 1454 + "__id__": 1499 }, "_lpos": { "__type__": "cc.Vec3", @@ -33608,11 +34646,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1445 + "__id__": 1490 }, "_enabled": true, "__prefab": { - "__id__": 1447 + "__id__": 1492 }, "_contentSize": { "__type__": "cc.Size", @@ -33636,11 +34674,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1445 + "__id__": 1490 }, "_enabled": true, "__prefab": { - "__id__": 1449 + "__id__": 1494 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -33678,18 +34716,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1445 + "__id__": 1490 }, "_enabled": true, "__prefab": { - "__id__": 1451 + "__id__": 1496 }, "clickEvents": [ { - "__id__": 1452 + "__id__": 1497 }, { - "__id__": 1453 + "__id__": 1498 } ], "_interactable": true, @@ -33729,7 +34767,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1246 + "__id__": 1291 }, "_id": "" }, @@ -33740,7 +34778,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -33750,7 +34788,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -33776,23 +34814,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1456 + "__id__": 1501 }, { - "__id__": 1458 + "__id__": 1503 }, { - "__id__": 1460 + "__id__": 1505 } ], "_prefab": { - "__id__": 1464 + "__id__": 1509 }, "_lpos": { "__type__": "cc.Vec3", @@ -33829,11 +34867,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1455 + "__id__": 1500 }, "_enabled": true, "__prefab": { - "__id__": 1457 + "__id__": 1502 }, "_contentSize": { "__type__": "cc.Size", @@ -33857,11 +34895,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1455 + "__id__": 1500 }, "_enabled": true, "__prefab": { - "__id__": 1459 + "__id__": 1504 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -33899,18 +34937,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1455 + "__id__": 1500 }, "_enabled": true, "__prefab": { - "__id__": 1461 + "__id__": 1506 }, "clickEvents": [ { - "__id__": 1462 + "__id__": 1507 }, { - "__id__": 1463 + "__id__": 1508 } ], "_interactable": true, @@ -33950,7 +34988,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1246 + "__id__": 1291 }, "_id": "" }, @@ -33961,7 +34999,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -33971,7 +35009,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 780 + "__id__": 825 }, "component": "", "_componentId": "a8fa7y4aulCvYtUdRC1dXV2", @@ -33997,20 +35035,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1246 + "__id__": 1291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1466 + "__id__": 1511 }, { - "__id__": 1468 + "__id__": 1513 } ], "_prefab": { - "__id__": 1470 + "__id__": 1515 }, "_lpos": { "__type__": "cc.Vec3", @@ -34047,11 +35085,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1465 + "__id__": 1510 }, "_enabled": true, "__prefab": { - "__id__": 1467 + "__id__": 1512 }, "_contentSize": { "__type__": "cc.Size", @@ -34075,11 +35113,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1465 + "__id__": 1510 }, "_enabled": true, "__prefab": { - "__id__": 1469 + "__id__": 1514 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -34156,11 +35194,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1246 + "__id__": 1291 }, "_enabled": true, "__prefab": { - "__id__": 1472 + "__id__": 1517 }, "_contentSize": { "__type__": "cc.Size", @@ -34197,11 +35235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 834 }, "_enabled": true, "__prefab": { - "__id__": 1475 + "__id__": 1520 }, "_contentSize": { "__type__": "cc.Size", @@ -34225,11 +35263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 834 }, "_enabled": true, "__prefab": { - "__id__": 1477 + "__id__": 1522 }, "_resizeMode": 0, "_layoutType": 3, @@ -34263,11 +35301,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 834 }, "_enabled": true, "__prefab": { - "__id__": 1479 + "__id__": 1524 }, "_alignFlags": 1, "_target": null, @@ -34312,39 +35350,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 780 + "__id__": 825 }, "_children": [ { - "__id__": 1482 + "__id__": 1527 }, { - "__id__": 1488 + "__id__": 1533 }, { - "__id__": 1494 + "__id__": 1539 } ], "_active": true, "_components": [ { - "__id__": 1502 + "__id__": 1547 }, { - "__id__": 1504 + "__id__": 1549 }, { - "__id__": 1506 + "__id__": 1551 }, { - "__id__": 1508 + "__id__": 1553 }, { - "__id__": 1510 + "__id__": 1555 } ], "_prefab": { - "__id__": 1512 + "__id__": 1557 }, "_lpos": { "__type__": "cc.Vec3", @@ -34381,20 +35419,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1481 + "__id__": 1526 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1483 + "__id__": 1528 }, { - "__id__": 1485 + "__id__": 1530 } ], "_prefab": { - "__id__": 1487 + "__id__": 1532 }, "_lpos": { "__type__": "cc.Vec3", @@ -34431,11 +35469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1482 + "__id__": 1527 }, "_enabled": true, "__prefab": { - "__id__": 1484 + "__id__": 1529 }, "_contentSize": { "__type__": "cc.Size", @@ -34459,11 +35497,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1482 + "__id__": 1527 }, "_enabled": true, "__prefab": { - "__id__": 1486 + "__id__": 1531 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -34517,20 +35555,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1481 + "__id__": 1526 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1489 + "__id__": 1534 }, { - "__id__": 1491 + "__id__": 1536 } ], "_prefab": { - "__id__": 1493 + "__id__": 1538 }, "_lpos": { "__type__": "cc.Vec3", @@ -34567,11 +35605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1488 + "__id__": 1533 }, "_enabled": true, "__prefab": { - "__id__": 1490 + "__id__": 1535 }, "_contentSize": { "__type__": "cc.Size", @@ -34595,11 +35633,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1488 + "__id__": 1533 }, "_enabled": true, "__prefab": { - "__id__": 1492 + "__id__": 1537 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -34653,23 +35691,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1481 + "__id__": 1526 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1495 + "__id__": 1540 }, { - "__id__": 1497 + "__id__": 1542 }, { - "__id__": 1499 + "__id__": 1544 } ], "_prefab": { - "__id__": 1501 + "__id__": 1546 }, "_lpos": { "__type__": "cc.Vec3", @@ -34706,11 +35744,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1494 + "__id__": 1539 }, "_enabled": true, "__prefab": { - "__id__": 1496 + "__id__": 1541 }, "_contentSize": { "__type__": "cc.Size", @@ -34734,11 +35772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1494 + "__id__": 1539 }, "_enabled": true, "__prefab": { - "__id__": 1498 + "__id__": 1543 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -34802,11 +35840,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1494 + "__id__": 1539 }, "_enabled": true, "__prefab": { - "__id__": 1500 + "__id__": 1545 }, "templateMode": true, "watchPath": "", @@ -34840,11 +35878,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1481 + "__id__": 1526 }, "_enabled": true, "__prefab": { - "__id__": 1503 + "__id__": 1548 }, "_contentSize": { "__type__": "cc.Size", @@ -34868,11 +35906,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1481 + "__id__": 1526 }, "_enabled": true, "__prefab": { - "__id__": 1505 + "__id__": 1550 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -34913,14 +35951,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1481 + "__id__": 1526 }, "_enabled": true, "__prefab": { - "__id__": 1507 + "__id__": 1552 }, "_barSprite": { - "__id__": 1485 + "__id__": 1530 }, "_mode": 0, "_totalLength": 300, @@ -34938,11 +35976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1481 + "__id__": 1526 }, "_enabled": true, "__prefab": { - "__id__": 1509 + "__id__": 1554 }, "controller": false, "watchPath": "", @@ -34966,11 +36004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1481 + "__id__": 1526 }, "_enabled": true, "__prefab": { - "__id__": 1511 + "__id__": 1556 }, "_alignFlags": 1, "_target": null, @@ -35015,20 +36053,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 780 + "__id__": 825 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1514 + "__id__": 1559 }, { - "__id__": 1516 + "__id__": 1561 } ], "_prefab": { - "__id__": 1518 + "__id__": 1563 }, "_lpos": { "__type__": "cc.Vec3", @@ -35065,11 +36103,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1513 + "__id__": 1558 }, "_enabled": true, "__prefab": { - "__id__": 1515 + "__id__": 1560 }, "_contentSize": { "__type__": "cc.Size", @@ -35093,11 +36131,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1513 + "__id__": 1558 }, "_enabled": true, "__prefab": { - "__id__": 1517 + "__id__": 1562 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -35174,11 +36212,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 780 + "__id__": 825 }, "_enabled": true, "__prefab": { - "__id__": 1520 + "__id__": 1565 }, "_contentSize": { "__type__": "cc.Size", @@ -35202,11 +36240,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 780 + "__id__": 825 }, "_enabled": true, "__prefab": { - "__id__": 1522 + "__id__": 1567 }, "_alignFlags": 12, "_target": null, @@ -35238,11 +36276,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 780 + "__id__": 825 }, "_enabled": true, "__prefab": { - "__id__": 1524 + "__id__": 1569 }, "_id": "" }, @@ -35273,32 +36311,32 @@ }, "_children": [ { - "__id__": 1527 + "__id__": 1572 }, { - "__id__": 1535 + "__id__": 1580 }, { - "__id__": 1818 + "__id__": 1863 }, { - "__id__": 1850 + "__id__": 1895 } ], "_active": true, "_components": [ { - "__id__": 1856 + "__id__": 1901 }, { - "__id__": 1858 + "__id__": 1903 }, { - "__id__": 1860 + "__id__": 1905 } ], "_prefab": { - "__id__": 1862 + "__id__": 1907 }, "_lpos": { "__type__": "cc.Vec3", @@ -35335,23 +36373,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1526 + "__id__": 1571 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1528 + "__id__": 1573 }, { - "__id__": 1530 + "__id__": 1575 }, { - "__id__": 1532 + "__id__": 1577 } ], "_prefab": { - "__id__": 1534 + "__id__": 1579 }, "_lpos": { "__type__": "cc.Vec3", @@ -35388,11 +36426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1527 + "__id__": 1572 }, "_enabled": true, "__prefab": { - "__id__": 1529 + "__id__": 1574 }, "_contentSize": { "__type__": "cc.Size", @@ -35416,11 +36454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1527 + "__id__": 1572 }, "_enabled": true, "__prefab": { - "__id__": 1531 + "__id__": 1576 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -35461,11 +36499,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1527 + "__id__": 1572 }, "_enabled": true, "__prefab": { - "__id__": 1533 + "__id__": 1578 }, "_alignFlags": 45, "_target": null, @@ -35510,36 +36548,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1526 + "__id__": 1571 }, "_children": [ { - "__id__": 1536 + "__id__": 1581 }, { - "__id__": 1626 + "__id__": 1671 }, { - "__id__": 1716 + "__id__": 1761 } ], "_active": true, "_components": [ { - "__id__": 1809 + "__id__": 1854 }, { - "__id__": 1811 + "__id__": 1856 }, { - "__id__": 1813 + "__id__": 1858 }, { - "__id__": 1815 + "__id__": 1860 } ], "_prefab": { - "__id__": 1817 + "__id__": 1862 }, "_lpos": { "__type__": "cc.Vec3", @@ -35576,39 +36614,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1535 + "__id__": 1580 }, "_children": [ { - "__id__": 1537 + "__id__": 1582 }, { - "__id__": 1545 + "__id__": 1590 }, { - "__id__": 1553 + "__id__": 1598 }, { - "__id__": 1559 + "__id__": 1604 }, { - "__id__": 1597 + "__id__": 1642 }, { - "__id__": 1609 + "__id__": 1654 }, { - "__id__": 1617 + "__id__": 1662 } ], "_active": true, "_components": [ { - "__id__": 1623 + "__id__": 1668 } ], "_prefab": { - "__id__": 1625 + "__id__": 1670 }, "_lpos": { "__type__": "cc.Vec3", @@ -35645,23 +36683,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1538 + "__id__": 1583 }, { - "__id__": 1540 + "__id__": 1585 }, { - "__id__": 1542 + "__id__": 1587 } ], "_prefab": { - "__id__": 1544 + "__id__": 1589 }, "_lpos": { "__type__": "cc.Vec3", @@ -35698,11 +36736,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1537 + "__id__": 1582 }, "_enabled": true, "__prefab": { - "__id__": 1539 + "__id__": 1584 }, "_contentSize": { "__type__": "cc.Size", @@ -35726,11 +36764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1537 + "__id__": 1582 }, "_enabled": true, "__prefab": { - "__id__": 1541 + "__id__": 1586 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -35771,11 +36809,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1537 + "__id__": 1582 }, "_enabled": true, "__prefab": { - "__id__": 1543 + "__id__": 1588 }, "playOnLoad": true, "_clips": [ @@ -35813,23 +36851,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1546 + "__id__": 1591 }, { - "__id__": 1548 + "__id__": 1593 }, { - "__id__": 1550 + "__id__": 1595 } ], "_prefab": { - "__id__": 1552 + "__id__": 1597 }, "_lpos": { "__type__": "cc.Vec3", @@ -35866,11 +36904,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1545 + "__id__": 1590 }, "_enabled": true, "__prefab": { - "__id__": 1547 + "__id__": 1592 }, "_contentSize": { "__type__": "cc.Size", @@ -35894,11 +36932,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1545 + "__id__": 1590 }, "_enabled": true, "__prefab": { - "__id__": 1549 + "__id__": 1594 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -35939,11 +36977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1545 + "__id__": 1590 }, "_enabled": true, "__prefab": { - "__id__": 1551 + "__id__": 1596 }, "_alignFlags": 45, "_target": null, @@ -35988,20 +37026,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1554 + "__id__": 1599 }, { - "__id__": 1556 + "__id__": 1601 } ], "_prefab": { - "__id__": 1558 + "__id__": 1603 }, "_lpos": { "__type__": "cc.Vec3", @@ -36038,11 +37076,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1553 + "__id__": 1598 }, "_enabled": true, "__prefab": { - "__id__": 1555 + "__id__": 1600 }, "_contentSize": { "__type__": "cc.Size", @@ -36066,11 +37104,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1553 + "__id__": 1598 }, "_enabled": true, "__prefab": { - "__id__": 1557 + "__id__": 1602 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36124,33 +37162,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [ { - "__id__": 1560 + "__id__": 1605 }, { - "__id__": 1568 + "__id__": 1613 }, { - "__id__": 1574 + "__id__": 1619 } ], "_active": true, "_components": [ { - "__id__": 1590 + "__id__": 1635 }, { - "__id__": 1592 + "__id__": 1637 }, { - "__id__": 1594 + "__id__": 1639 } ], "_prefab": { - "__id__": 1596 + "__id__": 1641 }, "_lpos": { "__type__": "cc.Vec3", @@ -36187,23 +37225,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1559 + "__id__": 1604 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1561 + "__id__": 1606 }, { - "__id__": 1563 + "__id__": 1608 }, { - "__id__": 1565 + "__id__": 1610 } ], "_prefab": { - "__id__": 1567 + "__id__": 1612 }, "_lpos": { "__type__": "cc.Vec3", @@ -36240,11 +37278,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1560 + "__id__": 1605 }, "_enabled": true, "__prefab": { - "__id__": 1562 + "__id__": 1607 }, "_contentSize": { "__type__": "cc.Size", @@ -36268,11 +37306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1560 + "__id__": 1605 }, "_enabled": true, "__prefab": { - "__id__": 1564 + "__id__": 1609 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36313,11 +37351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1560 + "__id__": 1605 }, "_enabled": true, "__prefab": { - "__id__": 1566 + "__id__": 1611 }, "_alignFlags": 45, "_target": null, @@ -36362,20 +37400,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1559 + "__id__": 1604 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1569 + "__id__": 1614 }, { - "__id__": 1571 + "__id__": 1616 } ], "_prefab": { - "__id__": 1573 + "__id__": 1618 }, "_lpos": { "__type__": "cc.Vec3", @@ -36412,11 +37450,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1568 + "__id__": 1613 }, "_enabled": true, "__prefab": { - "__id__": 1570 + "__id__": 1615 }, "_contentSize": { "__type__": "cc.Size", @@ -36440,11 +37478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1568 + "__id__": 1613 }, "_enabled": true, "__prefab": { - "__id__": 1572 + "__id__": 1617 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36498,27 +37536,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1559 + "__id__": 1604 }, "_children": [ { - "__id__": 1575 + "__id__": 1620 } ], "_active": true, "_components": [ { - "__id__": 1583 + "__id__": 1628 }, { - "__id__": 1585 + "__id__": 1630 }, { - "__id__": 1587 + "__id__": 1632 } ], "_prefab": { - "__id__": 1589 + "__id__": 1634 }, "_lpos": { "__type__": "cc.Vec3", @@ -36555,23 +37593,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1574 + "__id__": 1619 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1576 + "__id__": 1621 }, { - "__id__": 1578 + "__id__": 1623 }, { - "__id__": 1580 + "__id__": 1625 } ], "_prefab": { - "__id__": 1582 + "__id__": 1627 }, "_lpos": { "__type__": "cc.Vec3", @@ -36608,11 +37646,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1575 + "__id__": 1620 }, "_enabled": true, "__prefab": { - "__id__": 1577 + "__id__": 1622 }, "_contentSize": { "__type__": "cc.Size", @@ -36636,11 +37674,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1575 + "__id__": 1620 }, "_enabled": true, "__prefab": { - "__id__": 1579 + "__id__": 1624 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36681,11 +37719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1575 + "__id__": 1620 }, "_enabled": true, "__prefab": { - "__id__": 1581 + "__id__": 1626 }, "_alignFlags": 40, "_target": null, @@ -36730,11 +37768,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1574 + "__id__": 1619 }, "_enabled": true, "__prefab": { - "__id__": 1584 + "__id__": 1629 }, "_contentSize": { "__type__": "cc.Size", @@ -36758,11 +37796,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1574 + "__id__": 1619 }, "_enabled": false, "__prefab": { - "__id__": 1586 + "__id__": 1631 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36803,14 +37841,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1574 + "__id__": 1619 }, "_enabled": true, "__prefab": { - "__id__": 1588 + "__id__": 1633 }, "_barSprite": { - "__id__": 1578 + "__id__": 1623 }, "_mode": 2, "_totalLength": 1, @@ -36841,11 +37879,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1559 + "__id__": 1604 }, "_enabled": true, "__prefab": { - "__id__": 1591 + "__id__": 1636 }, "_contentSize": { "__type__": "cc.Size", @@ -36869,11 +37907,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1559 + "__id__": 1604 }, "_enabled": true, "__prefab": { - "__id__": 1593 + "__id__": 1638 }, "_type": 3, "_inverted": false, @@ -36891,11 +37929,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1559 + "__id__": 1604 }, "_enabled": true, "__prefab": { - "__id__": 1595 + "__id__": 1640 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -36949,26 +37987,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1598 + "__id__": 1643 }, { - "__id__": 1600 + "__id__": 1645 }, { - "__id__": 1602 + "__id__": 1647 }, { - "__id__": 1604 + "__id__": 1649 } ], "_prefab": { - "__id__": 1608 + "__id__": 1653 }, "_lpos": { "__type__": "cc.Vec3", @@ -37005,11 +38043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1597 + "__id__": 1642 }, "_enabled": true, "__prefab": { - "__id__": 1599 + "__id__": 1644 }, "_contentSize": { "__type__": "cc.Size", @@ -37033,11 +38071,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1597 + "__id__": 1642 }, "_enabled": true, "__prefab": { - "__id__": 1601 + "__id__": 1646 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -37075,11 +38113,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1597 + "__id__": 1642 }, "_enabled": true, "__prefab": { - "__id__": 1603 + "__id__": 1648 }, "playOnLoad": true, "_clips": [ @@ -37104,18 +38142,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1597 + "__id__": 1642 }, "_enabled": true, "__prefab": { - "__id__": 1605 + "__id__": 1650 }, "clickEvents": [ { - "__id__": 1606 + "__id__": 1651 }, { - "__id__": 1607 + "__id__": 1652 } ], "_interactable": true, @@ -37155,7 +38193,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1536 + "__id__": 1581 }, "_id": "" }, @@ -37166,7 +38204,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -37176,7 +38214,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -37202,23 +38240,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1610 + "__id__": 1655 }, { - "__id__": 1612 + "__id__": 1657 }, { - "__id__": 1614 + "__id__": 1659 } ], "_prefab": { - "__id__": 1616 + "__id__": 1661 }, "_lpos": { "__type__": "cc.Vec3", @@ -37255,11 +38293,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1609 + "__id__": 1654 }, "_enabled": true, "__prefab": { - "__id__": 1611 + "__id__": 1656 }, "_contentSize": { "__type__": "cc.Size", @@ -37283,11 +38321,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1609 + "__id__": 1654 }, "_enabled": true, "__prefab": { - "__id__": 1613 + "__id__": 1658 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -37325,11 +38363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1609 + "__id__": 1654 }, "_enabled": true, "__prefab": { - "__id__": 1615 + "__id__": 1660 }, "playOnLoad": true, "_clips": [ @@ -37367,20 +38405,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1536 + "__id__": 1581 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1618 + "__id__": 1663 }, { - "__id__": 1620 + "__id__": 1665 } ], "_prefab": { - "__id__": 1622 + "__id__": 1667 }, "_lpos": { "__type__": "cc.Vec3", @@ -37417,11 +38455,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1617 + "__id__": 1662 }, "_enabled": true, "__prefab": { - "__id__": 1619 + "__id__": 1664 }, "_contentSize": { "__type__": "cc.Size", @@ -37445,11 +38483,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1617 + "__id__": 1662 }, "_enabled": true, "__prefab": { - "__id__": 1621 + "__id__": 1666 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -37526,11 +38564,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1536 + "__id__": 1581 }, "_enabled": true, "__prefab": { - "__id__": 1624 + "__id__": 1669 }, "_contentSize": { "__type__": "cc.Size", @@ -37567,39 +38605,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1535 + "__id__": 1580 }, "_children": [ { - "__id__": 1627 + "__id__": 1672 }, { - "__id__": 1635 + "__id__": 1680 }, { - "__id__": 1643 + "__id__": 1688 }, { - "__id__": 1649 + "__id__": 1694 }, { - "__id__": 1687 + "__id__": 1732 }, { - "__id__": 1699 + "__id__": 1744 }, { - "__id__": 1707 + "__id__": 1752 } ], "_active": true, "_components": [ { - "__id__": 1713 + "__id__": 1758 } ], "_prefab": { - "__id__": 1715 + "__id__": 1760 }, "_lpos": { "__type__": "cc.Vec3", @@ -37636,23 +38674,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1628 + "__id__": 1673 }, { - "__id__": 1630 + "__id__": 1675 }, { - "__id__": 1632 + "__id__": 1677 } ], "_prefab": { - "__id__": 1634 + "__id__": 1679 }, "_lpos": { "__type__": "cc.Vec3", @@ -37689,11 +38727,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1627 + "__id__": 1672 }, "_enabled": true, "__prefab": { - "__id__": 1629 + "__id__": 1674 }, "_contentSize": { "__type__": "cc.Size", @@ -37717,11 +38755,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1627 + "__id__": 1672 }, "_enabled": true, "__prefab": { - "__id__": 1631 + "__id__": 1676 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -37762,11 +38800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1627 + "__id__": 1672 }, "_enabled": true, "__prefab": { - "__id__": 1633 + "__id__": 1678 }, "playOnLoad": true, "_clips": [ @@ -37804,23 +38842,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1636 + "__id__": 1681 }, { - "__id__": 1638 + "__id__": 1683 }, { - "__id__": 1640 + "__id__": 1685 } ], "_prefab": { - "__id__": 1642 + "__id__": 1687 }, "_lpos": { "__type__": "cc.Vec3", @@ -37857,11 +38895,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1635 + "__id__": 1680 }, "_enabled": true, "__prefab": { - "__id__": 1637 + "__id__": 1682 }, "_contentSize": { "__type__": "cc.Size", @@ -37885,11 +38923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1635 + "__id__": 1680 }, "_enabled": true, "__prefab": { - "__id__": 1639 + "__id__": 1684 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -37930,11 +38968,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1635 + "__id__": 1680 }, "_enabled": true, "__prefab": { - "__id__": 1641 + "__id__": 1686 }, "_alignFlags": 45, "_target": null, @@ -37979,20 +39017,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1644 + "__id__": 1689 }, { - "__id__": 1646 + "__id__": 1691 } ], "_prefab": { - "__id__": 1648 + "__id__": 1693 }, "_lpos": { "__type__": "cc.Vec3", @@ -38029,11 +39067,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1643 + "__id__": 1688 }, "_enabled": true, "__prefab": { - "__id__": 1645 + "__id__": 1690 }, "_contentSize": { "__type__": "cc.Size", @@ -38057,11 +39095,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1643 + "__id__": 1688 }, "_enabled": true, "__prefab": { - "__id__": 1647 + "__id__": 1692 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38115,33 +39153,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [ { - "__id__": 1650 + "__id__": 1695 }, { - "__id__": 1658 + "__id__": 1703 }, { - "__id__": 1664 + "__id__": 1709 } ], "_active": true, "_components": [ { - "__id__": 1680 + "__id__": 1725 }, { - "__id__": 1682 + "__id__": 1727 }, { - "__id__": 1684 + "__id__": 1729 } ], "_prefab": { - "__id__": 1686 + "__id__": 1731 }, "_lpos": { "__type__": "cc.Vec3", @@ -38178,23 +39216,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1649 + "__id__": 1694 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1651 + "__id__": 1696 }, { - "__id__": 1653 + "__id__": 1698 }, { - "__id__": 1655 + "__id__": 1700 } ], "_prefab": { - "__id__": 1657 + "__id__": 1702 }, "_lpos": { "__type__": "cc.Vec3", @@ -38231,11 +39269,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1650 + "__id__": 1695 }, "_enabled": true, "__prefab": { - "__id__": 1652 + "__id__": 1697 }, "_contentSize": { "__type__": "cc.Size", @@ -38259,11 +39297,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1650 + "__id__": 1695 }, "_enabled": true, "__prefab": { - "__id__": 1654 + "__id__": 1699 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38304,11 +39342,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1650 + "__id__": 1695 }, "_enabled": true, "__prefab": { - "__id__": 1656 + "__id__": 1701 }, "_alignFlags": 45, "_target": null, @@ -38353,20 +39391,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1649 + "__id__": 1694 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1659 + "__id__": 1704 }, { - "__id__": 1661 + "__id__": 1706 } ], "_prefab": { - "__id__": 1663 + "__id__": 1708 }, "_lpos": { "__type__": "cc.Vec3", @@ -38403,11 +39441,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1658 + "__id__": 1703 }, "_enabled": true, "__prefab": { - "__id__": 1660 + "__id__": 1705 }, "_contentSize": { "__type__": "cc.Size", @@ -38431,11 +39469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1658 + "__id__": 1703 }, "_enabled": true, "__prefab": { - "__id__": 1662 + "__id__": 1707 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38489,27 +39527,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1649 + "__id__": 1694 }, "_children": [ { - "__id__": 1665 + "__id__": 1710 } ], "_active": true, "_components": [ { - "__id__": 1673 + "__id__": 1718 }, { - "__id__": 1675 + "__id__": 1720 }, { - "__id__": 1677 + "__id__": 1722 } ], "_prefab": { - "__id__": 1679 + "__id__": 1724 }, "_lpos": { "__type__": "cc.Vec3", @@ -38546,23 +39584,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1664 + "__id__": 1709 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1666 + "__id__": 1711 }, { - "__id__": 1668 + "__id__": 1713 }, { - "__id__": 1670 + "__id__": 1715 } ], "_prefab": { - "__id__": 1672 + "__id__": 1717 }, "_lpos": { "__type__": "cc.Vec3", @@ -38599,11 +39637,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1665 + "__id__": 1710 }, "_enabled": true, "__prefab": { - "__id__": 1667 + "__id__": 1712 }, "_contentSize": { "__type__": "cc.Size", @@ -38627,11 +39665,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1665 + "__id__": 1710 }, "_enabled": true, "__prefab": { - "__id__": 1669 + "__id__": 1714 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38672,11 +39710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1665 + "__id__": 1710 }, "_enabled": true, "__prefab": { - "__id__": 1671 + "__id__": 1716 }, "_alignFlags": 40, "_target": null, @@ -38721,11 +39759,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1664 + "__id__": 1709 }, "_enabled": true, "__prefab": { - "__id__": 1674 + "__id__": 1719 }, "_contentSize": { "__type__": "cc.Size", @@ -38749,11 +39787,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1664 + "__id__": 1709 }, "_enabled": false, "__prefab": { - "__id__": 1676 + "__id__": 1721 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38794,14 +39832,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1664 + "__id__": 1709 }, "_enabled": true, "__prefab": { - "__id__": 1678 + "__id__": 1723 }, "_barSprite": { - "__id__": 1668 + "__id__": 1713 }, "_mode": 2, "_totalLength": 1, @@ -38832,11 +39870,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1649 + "__id__": 1694 }, "_enabled": true, "__prefab": { - "__id__": 1681 + "__id__": 1726 }, "_contentSize": { "__type__": "cc.Size", @@ -38860,11 +39898,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1649 + "__id__": 1694 }, "_enabled": true, "__prefab": { - "__id__": 1683 + "__id__": 1728 }, "_type": 3, "_inverted": false, @@ -38882,11 +39920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1649 + "__id__": 1694 }, "_enabled": true, "__prefab": { - "__id__": 1685 + "__id__": 1730 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -38940,26 +39978,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1688 + "__id__": 1733 }, { - "__id__": 1690 + "__id__": 1735 }, { - "__id__": 1692 + "__id__": 1737 }, { - "__id__": 1694 + "__id__": 1739 } ], "_prefab": { - "__id__": 1698 + "__id__": 1743 }, "_lpos": { "__type__": "cc.Vec3", @@ -38996,11 +40034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1687 + "__id__": 1732 }, "_enabled": true, "__prefab": { - "__id__": 1689 + "__id__": 1734 }, "_contentSize": { "__type__": "cc.Size", @@ -39024,11 +40062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1687 + "__id__": 1732 }, "_enabled": true, "__prefab": { - "__id__": 1691 + "__id__": 1736 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -39066,11 +40104,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1687 + "__id__": 1732 }, "_enabled": true, "__prefab": { - "__id__": 1693 + "__id__": 1738 }, "playOnLoad": true, "_clips": [ @@ -39095,18 +40133,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1687 + "__id__": 1732 }, "_enabled": true, "__prefab": { - "__id__": 1695 + "__id__": 1740 }, "clickEvents": [ { - "__id__": 1696 + "__id__": 1741 }, { - "__id__": 1697 + "__id__": 1742 } ], "_interactable": true, @@ -39146,7 +40184,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1626 + "__id__": 1671 }, "_id": "" }, @@ -39157,7 +40195,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -39167,7 +40205,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -39193,23 +40231,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1700 + "__id__": 1745 }, { - "__id__": 1702 + "__id__": 1747 }, { - "__id__": 1704 + "__id__": 1749 } ], "_prefab": { - "__id__": 1706 + "__id__": 1751 }, "_lpos": { "__type__": "cc.Vec3", @@ -39246,11 +40284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1699 + "__id__": 1744 }, "_enabled": true, "__prefab": { - "__id__": 1701 + "__id__": 1746 }, "_contentSize": { "__type__": "cc.Size", @@ -39274,11 +40312,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1699 + "__id__": 1744 }, "_enabled": true, "__prefab": { - "__id__": 1703 + "__id__": 1748 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -39316,11 +40354,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1699 + "__id__": 1744 }, "_enabled": true, "__prefab": { - "__id__": 1705 + "__id__": 1750 }, "playOnLoad": true, "_clips": [ @@ -39358,20 +40396,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1626 + "__id__": 1671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1708 + "__id__": 1753 }, { - "__id__": 1710 + "__id__": 1755 } ], "_prefab": { - "__id__": 1712 + "__id__": 1757 }, "_lpos": { "__type__": "cc.Vec3", @@ -39408,11 +40446,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1707 + "__id__": 1752 }, "_enabled": true, "__prefab": { - "__id__": 1709 + "__id__": 1754 }, "_contentSize": { "__type__": "cc.Size", @@ -39436,11 +40474,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1707 + "__id__": 1752 }, "_enabled": true, "__prefab": { - "__id__": 1711 + "__id__": 1756 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -39517,11 +40555,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1626 + "__id__": 1671 }, "_enabled": true, "__prefab": { - "__id__": 1714 + "__id__": 1759 }, "_contentSize": { "__type__": "cc.Size", @@ -39558,42 +40596,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1535 + "__id__": 1580 }, "_children": [ { - "__id__": 1717 + "__id__": 1762 }, { - "__id__": 1725 + "__id__": 1770 }, { - "__id__": 1733 + "__id__": 1778 }, { - "__id__": 1739 + "__id__": 1784 }, { - "__id__": 1777 + "__id__": 1822 }, { - "__id__": 1789 + "__id__": 1834 }, { - "__id__": 1797 + "__id__": 1842 } ], "_active": true, "_components": [ { - "__id__": 1803 + "__id__": 1848 }, { - "__id__": 1805 + "__id__": 1850 } ], "_prefab": { - "__id__": 1808 + "__id__": 1853 }, "_lpos": { "__type__": "cc.Vec3", @@ -39630,23 +40668,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1718 + "__id__": 1763 }, { - "__id__": 1720 + "__id__": 1765 }, { - "__id__": 1722 + "__id__": 1767 } ], "_prefab": { - "__id__": 1724 + "__id__": 1769 }, "_lpos": { "__type__": "cc.Vec3", @@ -39683,11 +40721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1717 + "__id__": 1762 }, "_enabled": true, "__prefab": { - "__id__": 1719 + "__id__": 1764 }, "_contentSize": { "__type__": "cc.Size", @@ -39711,11 +40749,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1717 + "__id__": 1762 }, "_enabled": true, "__prefab": { - "__id__": 1721 + "__id__": 1766 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -39756,11 +40794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1717 + "__id__": 1762 }, "_enabled": true, "__prefab": { - "__id__": 1723 + "__id__": 1768 }, "playOnLoad": true, "_clips": [ @@ -39798,23 +40836,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1726 + "__id__": 1771 }, { - "__id__": 1728 + "__id__": 1773 }, { - "__id__": 1730 + "__id__": 1775 } ], "_prefab": { - "__id__": 1732 + "__id__": 1777 }, "_lpos": { "__type__": "cc.Vec3", @@ -39851,11 +40889,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1725 + "__id__": 1770 }, "_enabled": true, "__prefab": { - "__id__": 1727 + "__id__": 1772 }, "_contentSize": { "__type__": "cc.Size", @@ -39879,11 +40917,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1725 + "__id__": 1770 }, "_enabled": true, "__prefab": { - "__id__": 1729 + "__id__": 1774 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -39924,11 +40962,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1725 + "__id__": 1770 }, "_enabled": true, "__prefab": { - "__id__": 1731 + "__id__": 1776 }, "_alignFlags": 45, "_target": null, @@ -39973,20 +41011,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1734 + "__id__": 1779 }, { - "__id__": 1736 + "__id__": 1781 } ], "_prefab": { - "__id__": 1738 + "__id__": 1783 }, "_lpos": { "__type__": "cc.Vec3", @@ -40023,11 +41061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1733 + "__id__": 1778 }, "_enabled": true, "__prefab": { - "__id__": 1735 + "__id__": 1780 }, "_contentSize": { "__type__": "cc.Size", @@ -40051,11 +41089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1733 + "__id__": 1778 }, "_enabled": true, "__prefab": { - "__id__": 1737 + "__id__": 1782 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40109,33 +41147,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [ { - "__id__": 1740 + "__id__": 1785 }, { - "__id__": 1748 + "__id__": 1793 }, { - "__id__": 1754 + "__id__": 1799 } ], "_active": true, "_components": [ { - "__id__": 1770 + "__id__": 1815 }, { - "__id__": 1772 + "__id__": 1817 }, { - "__id__": 1774 + "__id__": 1819 } ], "_prefab": { - "__id__": 1776 + "__id__": 1821 }, "_lpos": { "__type__": "cc.Vec3", @@ -40172,23 +41210,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1739 + "__id__": 1784 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1741 + "__id__": 1786 }, { - "__id__": 1743 + "__id__": 1788 }, { - "__id__": 1745 + "__id__": 1790 } ], "_prefab": { - "__id__": 1747 + "__id__": 1792 }, "_lpos": { "__type__": "cc.Vec3", @@ -40225,11 +41263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1740 + "__id__": 1785 }, "_enabled": true, "__prefab": { - "__id__": 1742 + "__id__": 1787 }, "_contentSize": { "__type__": "cc.Size", @@ -40253,11 +41291,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1740 + "__id__": 1785 }, "_enabled": true, "__prefab": { - "__id__": 1744 + "__id__": 1789 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40298,11 +41336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1740 + "__id__": 1785 }, "_enabled": true, "__prefab": { - "__id__": 1746 + "__id__": 1791 }, "_alignFlags": 45, "_target": null, @@ -40347,20 +41385,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1739 + "__id__": 1784 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1749 + "__id__": 1794 }, { - "__id__": 1751 + "__id__": 1796 } ], "_prefab": { - "__id__": 1753 + "__id__": 1798 }, "_lpos": { "__type__": "cc.Vec3", @@ -40397,11 +41435,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1748 + "__id__": 1793 }, "_enabled": true, "__prefab": { - "__id__": 1750 + "__id__": 1795 }, "_contentSize": { "__type__": "cc.Size", @@ -40425,11 +41463,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1748 + "__id__": 1793 }, "_enabled": true, "__prefab": { - "__id__": 1752 + "__id__": 1797 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40483,27 +41521,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1739 + "__id__": 1784 }, "_children": [ { - "__id__": 1755 + "__id__": 1800 } ], "_active": true, "_components": [ { - "__id__": 1763 + "__id__": 1808 }, { - "__id__": 1765 + "__id__": 1810 }, { - "__id__": 1767 + "__id__": 1812 } ], "_prefab": { - "__id__": 1769 + "__id__": 1814 }, "_lpos": { "__type__": "cc.Vec3", @@ -40540,23 +41578,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1754 + "__id__": 1799 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1756 + "__id__": 1801 }, { - "__id__": 1758 + "__id__": 1803 }, { - "__id__": 1760 + "__id__": 1805 } ], "_prefab": { - "__id__": 1762 + "__id__": 1807 }, "_lpos": { "__type__": "cc.Vec3", @@ -40593,11 +41631,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1755 + "__id__": 1800 }, "_enabled": true, "__prefab": { - "__id__": 1757 + "__id__": 1802 }, "_contentSize": { "__type__": "cc.Size", @@ -40621,11 +41659,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1755 + "__id__": 1800 }, "_enabled": true, "__prefab": { - "__id__": 1759 + "__id__": 1804 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40666,11 +41704,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1755 + "__id__": 1800 }, "_enabled": true, "__prefab": { - "__id__": 1761 + "__id__": 1806 }, "_alignFlags": 40, "_target": null, @@ -40715,11 +41753,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1754 + "__id__": 1799 }, "_enabled": true, "__prefab": { - "__id__": 1764 + "__id__": 1809 }, "_contentSize": { "__type__": "cc.Size", @@ -40743,11 +41781,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1754 + "__id__": 1799 }, "_enabled": false, "__prefab": { - "__id__": 1766 + "__id__": 1811 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40788,14 +41826,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1754 + "__id__": 1799 }, "_enabled": true, "__prefab": { - "__id__": 1768 + "__id__": 1813 }, "_barSprite": { - "__id__": 1758 + "__id__": 1803 }, "_mode": 2, "_totalLength": 1, @@ -40826,11 +41864,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1739 + "__id__": 1784 }, "_enabled": true, "__prefab": { - "__id__": 1771 + "__id__": 1816 }, "_contentSize": { "__type__": "cc.Size", @@ -40854,11 +41892,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1739 + "__id__": 1784 }, "_enabled": true, "__prefab": { - "__id__": 1773 + "__id__": 1818 }, "_type": 3, "_inverted": false, @@ -40876,11 +41914,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1739 + "__id__": 1784 }, "_enabled": true, "__prefab": { - "__id__": 1775 + "__id__": 1820 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -40934,26 +41972,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1778 + "__id__": 1823 }, { - "__id__": 1780 + "__id__": 1825 }, { - "__id__": 1782 + "__id__": 1827 }, { - "__id__": 1784 + "__id__": 1829 } ], "_prefab": { - "__id__": 1788 + "__id__": 1833 }, "_lpos": { "__type__": "cc.Vec3", @@ -40990,11 +42028,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1777 + "__id__": 1822 }, "_enabled": true, "__prefab": { - "__id__": 1779 + "__id__": 1824 }, "_contentSize": { "__type__": "cc.Size", @@ -41018,11 +42056,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1777 + "__id__": 1822 }, "_enabled": true, "__prefab": { - "__id__": 1781 + "__id__": 1826 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -41060,11 +42098,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1777 + "__id__": 1822 }, "_enabled": true, "__prefab": { - "__id__": 1783 + "__id__": 1828 }, "playOnLoad": true, "_clips": [ @@ -41089,18 +42127,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1777 + "__id__": 1822 }, "_enabled": true, "__prefab": { - "__id__": 1785 + "__id__": 1830 }, "clickEvents": [ { - "__id__": 1786 + "__id__": 1831 }, { - "__id__": 1787 + "__id__": 1832 } ], "_interactable": true, @@ -41140,7 +42178,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1716 + "__id__": 1761 }, "_id": "" }, @@ -41151,7 +42189,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -41161,7 +42199,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -41187,23 +42225,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1790 + "__id__": 1835 }, { - "__id__": 1792 + "__id__": 1837 }, { - "__id__": 1794 + "__id__": 1839 } ], "_prefab": { - "__id__": 1796 + "__id__": 1841 }, "_lpos": { "__type__": "cc.Vec3", @@ -41240,11 +42278,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1789 + "__id__": 1834 }, "_enabled": true, "__prefab": { - "__id__": 1791 + "__id__": 1836 }, "_contentSize": { "__type__": "cc.Size", @@ -41268,11 +42306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1789 + "__id__": 1834 }, "_enabled": true, "__prefab": { - "__id__": 1793 + "__id__": 1838 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -41310,11 +42348,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1789 + "__id__": 1834 }, "_enabled": true, "__prefab": { - "__id__": 1795 + "__id__": 1840 }, "playOnLoad": true, "_clips": [ @@ -41352,20 +42390,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1716 + "__id__": 1761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1798 + "__id__": 1843 }, { - "__id__": 1800 + "__id__": 1845 } ], "_prefab": { - "__id__": 1802 + "__id__": 1847 }, "_lpos": { "__type__": "cc.Vec3", @@ -41402,11 +42440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1797 + "__id__": 1842 }, "_enabled": true, "__prefab": { - "__id__": 1799 + "__id__": 1844 }, "_contentSize": { "__type__": "cc.Size", @@ -41430,11 +42468,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1797 + "__id__": 1842 }, "_enabled": true, "__prefab": { - "__id__": 1801 + "__id__": 1846 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -41511,11 +42549,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1716 + "__id__": 1761 }, "_enabled": true, "__prefab": { - "__id__": 1804 + "__id__": 1849 }, "_contentSize": { "__type__": "cc.Size", @@ -41539,15 +42577,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1716 + "__id__": 1761 }, "_enabled": true, "__prefab": { - "__id__": 1806 + "__id__": 1851 }, "clickEvents": [ { - "__id__": 1807 + "__id__": 1852 } ], "_interactable": true, @@ -41596,7 +42634,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 1526 + "__id__": 1571 }, "component": "", "_componentId": "b3161gbAyNBAI1NS2hSnTwZ", @@ -41622,11 +42660,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1535 + "__id__": 1580 }, "_enabled": true, "__prefab": { - "__id__": 1810 + "__id__": 1855 }, "_contentSize": { "__type__": "cc.Size", @@ -41650,11 +42688,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1535 + "__id__": 1580 }, "_enabled": true, "__prefab": { - "__id__": 1812 + "__id__": 1857 }, "_resizeMode": 0, "_layoutType": 0, @@ -41688,11 +42726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1535 + "__id__": 1580 }, "_enabled": true, "__prefab": { - "__id__": 1814 + "__id__": 1859 }, "_resizeMode": 0, "_layoutType": 3, @@ -41726,11 +42764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1535 + "__id__": 1580 }, "_enabled": true, "__prefab": { - "__id__": 1816 + "__id__": 1861 }, "_alignFlags": 1, "_target": null, @@ -41775,39 +42813,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1526 + "__id__": 1571 }, "_children": [ { - "__id__": 1819 + "__id__": 1864 }, { - "__id__": 1825 + "__id__": 1870 }, { - "__id__": 1831 + "__id__": 1876 } ], "_active": true, "_components": [ { - "__id__": 1839 + "__id__": 1884 }, { - "__id__": 1841 + "__id__": 1886 }, { - "__id__": 1843 + "__id__": 1888 }, { - "__id__": 1845 + "__id__": 1890 }, { - "__id__": 1847 + "__id__": 1892 } ], "_prefab": { - "__id__": 1849 + "__id__": 1894 }, "_lpos": { "__type__": "cc.Vec3", @@ -41844,20 +42882,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1818 + "__id__": 1863 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1820 + "__id__": 1865 }, { - "__id__": 1822 + "__id__": 1867 } ], "_prefab": { - "__id__": 1824 + "__id__": 1869 }, "_lpos": { "__type__": "cc.Vec3", @@ -41894,11 +42932,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1819 + "__id__": 1864 }, "_enabled": true, "__prefab": { - "__id__": 1821 + "__id__": 1866 }, "_contentSize": { "__type__": "cc.Size", @@ -41922,11 +42960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1819 + "__id__": 1864 }, "_enabled": true, "__prefab": { - "__id__": 1823 + "__id__": 1868 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -41980,20 +43018,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1818 + "__id__": 1863 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1826 + "__id__": 1871 }, { - "__id__": 1828 + "__id__": 1873 } ], "_prefab": { - "__id__": 1830 + "__id__": 1875 }, "_lpos": { "__type__": "cc.Vec3", @@ -42030,11 +43068,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1825 + "__id__": 1870 }, "_enabled": true, "__prefab": { - "__id__": 1827 + "__id__": 1872 }, "_contentSize": { "__type__": "cc.Size", @@ -42058,11 +43096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1825 + "__id__": 1870 }, "_enabled": true, "__prefab": { - "__id__": 1829 + "__id__": 1874 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -42116,23 +43154,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1818 + "__id__": 1863 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1832 + "__id__": 1877 }, { - "__id__": 1834 + "__id__": 1879 }, { - "__id__": 1836 + "__id__": 1881 } ], "_prefab": { - "__id__": 1838 + "__id__": 1883 }, "_lpos": { "__type__": "cc.Vec3", @@ -42169,11 +43207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1831 + "__id__": 1876 }, "_enabled": true, "__prefab": { - "__id__": 1833 + "__id__": 1878 }, "_contentSize": { "__type__": "cc.Size", @@ -42197,11 +43235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1831 + "__id__": 1876 }, "_enabled": true, "__prefab": { - "__id__": 1835 + "__id__": 1880 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -42265,11 +43303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1831 + "__id__": 1876 }, "_enabled": true, "__prefab": { - "__id__": 1837 + "__id__": 1882 }, "templateMode": true, "watchPath": "", @@ -42303,11 +43341,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1818 + "__id__": 1863 }, "_enabled": true, "__prefab": { - "__id__": 1840 + "__id__": 1885 }, "_contentSize": { "__type__": "cc.Size", @@ -42331,11 +43369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1818 + "__id__": 1863 }, "_enabled": true, "__prefab": { - "__id__": 1842 + "__id__": 1887 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -42376,14 +43414,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1818 + "__id__": 1863 }, "_enabled": true, "__prefab": { - "__id__": 1844 + "__id__": 1889 }, "_barSprite": { - "__id__": 1822 + "__id__": 1867 }, "_mode": 0, "_totalLength": 300, @@ -42401,11 +43439,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1818 + "__id__": 1863 }, "_enabled": true, "__prefab": { - "__id__": 1846 + "__id__": 1891 }, "controller": false, "watchPath": "", @@ -42429,11 +43467,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1818 + "__id__": 1863 }, "_enabled": true, "__prefab": { - "__id__": 1848 + "__id__": 1893 }, "_alignFlags": 1, "_target": null, @@ -42478,20 +43516,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1526 + "__id__": 1571 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1851 + "__id__": 1896 }, { - "__id__": 1853 + "__id__": 1898 } ], "_prefab": { - "__id__": 1855 + "__id__": 1900 }, "_lpos": { "__type__": "cc.Vec3", @@ -42528,11 +43566,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1850 + "__id__": 1895 }, "_enabled": true, "__prefab": { - "__id__": 1852 + "__id__": 1897 }, "_contentSize": { "__type__": "cc.Size", @@ -42556,11 +43594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1850 + "__id__": 1895 }, "_enabled": true, "__prefab": { - "__id__": 1854 + "__id__": 1899 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -42637,11 +43675,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1526 + "__id__": 1571 }, "_enabled": true, "__prefab": { - "__id__": 1857 + "__id__": 1902 }, "_contentSize": { "__type__": "cc.Size", @@ -42665,11 +43703,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1526 + "__id__": 1571 }, "_enabled": true, "__prefab": { - "__id__": 1859 + "__id__": 1904 }, "_alignFlags": 36, "_target": null, @@ -42701,11 +43739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1526 + "__id__": 1571 }, "_enabled": true, "__prefab": { - "__id__": 1861 + "__id__": 1906 }, "_id": "" }, @@ -42736,29 +43774,29 @@ }, "_children": [ { - "__id__": 1864 + "__id__": 1909 }, { - "__id__": 1937 + "__id__": 1982 }, { - "__id__": 1959 + "__id__": 2004 } ], "_active": true, "_components": [ { - "__id__": 2032 + "__id__": 2077 }, { - "__id__": 2034 + "__id__": 2079 }, { - "__id__": 2036 + "__id__": 2081 } ], "_prefab": { - "__id__": 2038 + "__id__": 2083 }, "_lpos": { "__type__": "cc.Vec3", @@ -42795,42 +43833,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1863 + "__id__": 1908 }, "_children": [ { - "__id__": 1865 + "__id__": 1910 }, { - "__id__": 1871 + "__id__": 1916 }, { - "__id__": 1877 + "__id__": 1922 }, { - "__id__": 1891 + "__id__": 1936 }, { - "__id__": 1897 + "__id__": 1942 } ], "_active": false, "_components": [ { - "__id__": 1927 + "__id__": 1972 }, { - "__id__": 1929 + "__id__": 1974 }, { - "__id__": 1931 + "__id__": 1976 }, { - "__id__": 1934 + "__id__": 1979 } ], "_prefab": { - "__id__": 1936 + "__id__": 1981 }, "_lpos": { "__type__": "cc.Vec3", @@ -42867,20 +43905,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1864 + "__id__": 1909 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1866 + "__id__": 1911 }, { - "__id__": 1868 + "__id__": 1913 } ], "_prefab": { - "__id__": 1870 + "__id__": 1915 }, "_lpos": { "__type__": "cc.Vec3", @@ -42917,11 +43955,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1865 + "__id__": 1910 }, "_enabled": true, "__prefab": { - "__id__": 1867 + "__id__": 1912 }, "_contentSize": { "__type__": "cc.Size", @@ -42945,11 +43983,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1865 + "__id__": 1910 }, "_enabled": true, "__prefab": { - "__id__": 1869 + "__id__": 1914 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43003,20 +44041,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1864 + "__id__": 1909 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1872 + "__id__": 1917 }, { - "__id__": 1874 + "__id__": 1919 } ], "_prefab": { - "__id__": 1876 + "__id__": 1921 }, "_lpos": { "__type__": "cc.Vec3", @@ -43053,11 +44091,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1871 + "__id__": 1916 }, "_enabled": true, "__prefab": { - "__id__": 1873 + "__id__": 1918 }, "_contentSize": { "__type__": "cc.Size", @@ -43081,11 +44119,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1871 + "__id__": 1916 }, "_enabled": true, "__prefab": { - "__id__": 1875 + "__id__": 1920 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43139,24 +44177,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1864 + "__id__": 1909 }, "_children": [ { - "__id__": 1878 + "__id__": 1923 } ], "_active": true, "_components": [ { - "__id__": 1886 + "__id__": 1931 }, { - "__id__": 1888 + "__id__": 1933 } ], "_prefab": { - "__id__": 1890 + "__id__": 1935 }, "_lpos": { "__type__": "cc.Vec3", @@ -43193,23 +44231,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1877 + "__id__": 1922 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1879 + "__id__": 1924 }, { - "__id__": 1881 + "__id__": 1926 }, { - "__id__": 1883 + "__id__": 1928 } ], "_prefab": { - "__id__": 1885 + "__id__": 1930 }, "_lpos": { "__type__": "cc.Vec3", @@ -43246,11 +44284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1878 + "__id__": 1923 }, "_enabled": true, "__prefab": { - "__id__": 1880 + "__id__": 1925 }, "_contentSize": { "__type__": "cc.Size", @@ -43274,11 +44312,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1878 + "__id__": 1923 }, "_enabled": true, "__prefab": { - "__id__": 1882 + "__id__": 1927 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43342,11 +44380,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1878 + "__id__": 1923 }, "_enabled": true, "__prefab": { - "__id__": 1884 + "__id__": 1929 }, "templateMode": false, "watchPath": "data.mission_data.refresh_gold", @@ -43377,11 +44415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1877 + "__id__": 1922 }, "_enabled": true, "__prefab": { - "__id__": 1887 + "__id__": 1932 }, "_contentSize": { "__type__": "cc.Size", @@ -43405,11 +44443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1877 + "__id__": 1922 }, "_enabled": true, "__prefab": { - "__id__": 1889 + "__id__": 1934 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43463,20 +44501,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 1864 + "__id__": 1909 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1892 + "__id__": 1937 }, { - "__id__": 1894 + "__id__": 1939 } ], "_prefab": { - "__id__": 1896 + "__id__": 1941 }, "_lpos": { "__type__": "cc.Vec3", @@ -43513,11 +44551,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1891 + "__id__": 1936 }, "_enabled": true, "__prefab": { - "__id__": 1893 + "__id__": 1938 }, "_contentSize": { "__type__": "cc.Size", @@ -43541,11 +44579,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1891 + "__id__": 1936 }, "_enabled": true, "__prefab": { - "__id__": 1895 + "__id__": 1940 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43622,27 +44660,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1864 + "__id__": 1909 }, "_children": [ { - "__id__": 1898 + "__id__": 1943 }, { - "__id__": 1906 + "__id__": 1951 }, { - "__id__": 1914 + "__id__": 1959 } ], "_active": false, "_components": [ { - "__id__": 1924 + "__id__": 1969 } ], "_prefab": { - "__id__": 1926 + "__id__": 1971 }, "_lpos": { "__type__": "cc.Vec3", @@ -43679,23 +44717,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1897 + "__id__": 1942 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1899 + "__id__": 1944 }, { - "__id__": 1901 + "__id__": 1946 }, { - "__id__": 1903 + "__id__": 1948 } ], "_prefab": { - "__id__": 1905 + "__id__": 1950 }, "_lpos": { "__type__": "cc.Vec3", @@ -43732,11 +44770,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1898 + "__id__": 1943 }, "_enabled": true, "__prefab": { - "__id__": 1900 + "__id__": 1945 }, "_contentSize": { "__type__": "cc.Size", @@ -43760,11 +44798,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1898 + "__id__": 1943 }, "_enabled": true, "__prefab": { - "__id__": 1902 + "__id__": 1947 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43805,11 +44843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1898 + "__id__": 1943 }, "_enabled": true, "__prefab": { - "__id__": 1904 + "__id__": 1949 }, "_alignFlags": 45, "_target": null, @@ -43854,23 +44892,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1897 + "__id__": 1942 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1907 + "__id__": 1952 }, { - "__id__": 1909 + "__id__": 1954 }, { - "__id__": 1911 + "__id__": 1956 } ], "_prefab": { - "__id__": 1913 + "__id__": 1958 }, "_lpos": { "__type__": "cc.Vec3", @@ -43907,11 +44945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1906 + "__id__": 1951 }, "_enabled": true, "__prefab": { - "__id__": 1908 + "__id__": 1953 }, "_contentSize": { "__type__": "cc.Size", @@ -43935,11 +44973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1906 + "__id__": 1951 }, "_enabled": true, "__prefab": { - "__id__": 1910 + "__id__": 1955 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -43980,11 +45018,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1906 + "__id__": 1951 }, "_enabled": true, "__prefab": { - "__id__": 1912 + "__id__": 1957 }, "_alignFlags": 8, "_target": null, @@ -44029,26 +45067,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1897 + "__id__": 1942 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1915 + "__id__": 1960 }, { - "__id__": 1917 + "__id__": 1962 }, { - "__id__": 1919 + "__id__": 1964 }, { - "__id__": 1921 + "__id__": 1966 } ], "_prefab": { - "__id__": 1923 + "__id__": 1968 }, "_lpos": { "__type__": "cc.Vec3", @@ -44085,11 +45123,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1914 + "__id__": 1959 }, "_enabled": true, "__prefab": { - "__id__": 1916 + "__id__": 1961 }, "_contentSize": { "__type__": "cc.Size", @@ -44113,11 +45151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1914 + "__id__": 1959 }, "_enabled": true, "__prefab": { - "__id__": 1918 + "__id__": 1963 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -44181,11 +45219,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1914 + "__id__": 1959 }, "_enabled": true, "__prefab": { - "__id__": 1920 + "__id__": 1965 }, "_alignFlags": 40, "_target": null, @@ -44217,11 +45255,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1914 + "__id__": 1959 }, "_enabled": true, "__prefab": { - "__id__": 1922 + "__id__": 1967 }, "templateMode": false, "watchPath": "data.mission_data.gold", @@ -44252,11 +45290,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1897 + "__id__": 1942 }, "_enabled": true, "__prefab": { - "__id__": 1925 + "__id__": 1970 }, "_contentSize": { "__type__": "cc.Size", @@ -44293,11 +45331,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1864 + "__id__": 1909 }, "_enabled": true, "__prefab": { - "__id__": 1928 + "__id__": 1973 }, "_contentSize": { "__type__": "cc.Size", @@ -44321,11 +45359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1864 + "__id__": 1909 }, "_enabled": true, "__prefab": { - "__id__": 1930 + "__id__": 1975 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -44363,15 +45401,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1864 + "__id__": 1909 }, "_enabled": true, "__prefab": { - "__id__": 1932 + "__id__": 1977 }, "clickEvents": [ { - "__id__": 1933 + "__id__": 1978 } ], "_interactable": true, @@ -44411,7 +45449,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1864 + "__id__": 1909 }, "_id": "" }, @@ -44435,11 +45473,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1864 + "__id__": 1909 }, "_enabled": true, "__prefab": { - "__id__": 1935 + "__id__": 1980 }, "_alignFlags": 20, "_target": null, @@ -44484,24 +45522,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1863 + "__id__": 1908 }, "_children": [ { - "__id__": 1938 + "__id__": 1983 }, { - "__id__": 1946 + "__id__": 1991 } ], "_active": true, "_components": [ { - "__id__": 1956 + "__id__": 2001 } ], "_prefab": { - "__id__": 1958 + "__id__": 2003 }, "_lpos": { "__type__": "cc.Vec3", @@ -44538,23 +45576,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1937 + "__id__": 1982 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1939 + "__id__": 1984 }, { - "__id__": 1941 + "__id__": 1986 }, { - "__id__": 1943 + "__id__": 1988 } ], "_prefab": { - "__id__": 1945 + "__id__": 1990 }, "_lpos": { "__type__": "cc.Vec3", @@ -44591,11 +45629,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1938 + "__id__": 1983 }, "_enabled": true, "__prefab": { - "__id__": 1940 + "__id__": 1985 }, "_contentSize": { "__type__": "cc.Size", @@ -44619,11 +45657,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1938 + "__id__": 1983 }, "_enabled": true, "__prefab": { - "__id__": 1942 + "__id__": 1987 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -44664,11 +45702,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1938 + "__id__": 1983 }, "_enabled": true, "__prefab": { - "__id__": 1944 + "__id__": 1989 }, "_alignFlags": 18, "_target": null, @@ -44713,26 +45751,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1937 + "__id__": 1982 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1947 + "__id__": 1992 }, { - "__id__": 1949 + "__id__": 1994 }, { - "__id__": 1951 + "__id__": 1996 }, { - "__id__": 1953 + "__id__": 1998 } ], "_prefab": { - "__id__": 1955 + "__id__": 2000 }, "_lpos": { "__type__": "cc.Vec3", @@ -44769,11 +45807,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1946 + "__id__": 1991 }, "_enabled": true, "__prefab": { - "__id__": 1948 + "__id__": 1993 }, "_contentSize": { "__type__": "cc.Size", @@ -44797,11 +45835,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1946 + "__id__": 1991 }, "_enabled": true, "__prefab": { - "__id__": 1950 + "__id__": 1995 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -44865,11 +45903,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1946 + "__id__": 1991 }, "_enabled": true, "__prefab": { - "__id__": 1952 + "__id__": 1997 }, "_alignFlags": 18, "_target": null, @@ -44901,11 +45939,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1946 + "__id__": 1991 }, "_enabled": true, "__prefab": { - "__id__": 1954 + "__id__": 1999 }, "templateMode": false, "watchPath": "data.mission_data.gold", @@ -44936,11 +45974,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1937 + "__id__": 1982 }, "_enabled": true, "__prefab": { - "__id__": 1957 + "__id__": 2002 }, "_contentSize": { "__type__": "cc.Size", @@ -44977,42 +46015,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1863 + "__id__": 1908 }, "_children": [ { - "__id__": 1960 + "__id__": 2005 }, { - "__id__": 1966 + "__id__": 2011 }, { - "__id__": 1972 + "__id__": 2017 }, { - "__id__": 1986 + "__id__": 2031 }, { - "__id__": 1992 + "__id__": 2037 } ], "_active": true, "_components": [ { - "__id__": 2022 + "__id__": 2067 }, { - "__id__": 2024 + "__id__": 2069 }, { - "__id__": 2026 + "__id__": 2071 }, { - "__id__": 2029 + "__id__": 2074 } ], "_prefab": { - "__id__": 2031 + "__id__": 2076 }, "_lpos": { "__type__": "cc.Vec3", @@ -45049,20 +46087,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1959 + "__id__": 2004 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1961 + "__id__": 2006 }, { - "__id__": 1963 + "__id__": 2008 } ], "_prefab": { - "__id__": 1965 + "__id__": 2010 }, "_lpos": { "__type__": "cc.Vec3", @@ -45099,11 +46137,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1960 + "__id__": 2005 }, "_enabled": true, "__prefab": { - "__id__": 1962 + "__id__": 2007 }, "_contentSize": { "__type__": "cc.Size", @@ -45127,11 +46165,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1960 + "__id__": 2005 }, "_enabled": true, "__prefab": { - "__id__": 1964 + "__id__": 2009 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45185,20 +46223,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1959 + "__id__": 2004 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1967 + "__id__": 2012 }, { - "__id__": 1969 + "__id__": 2014 } ], "_prefab": { - "__id__": 1971 + "__id__": 2016 }, "_lpos": { "__type__": "cc.Vec3", @@ -45235,11 +46273,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1966 + "__id__": 2011 }, "_enabled": true, "__prefab": { - "__id__": 1968 + "__id__": 2013 }, "_contentSize": { "__type__": "cc.Size", @@ -45263,11 +46301,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1966 + "__id__": 2011 }, "_enabled": true, "__prefab": { - "__id__": 1970 + "__id__": 2015 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45321,24 +46359,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1959 + "__id__": 2004 }, "_children": [ { - "__id__": 1973 + "__id__": 2018 } ], "_active": true, "_components": [ { - "__id__": 1981 + "__id__": 2026 }, { - "__id__": 1983 + "__id__": 2028 } ], "_prefab": { - "__id__": 1985 + "__id__": 2030 }, "_lpos": { "__type__": "cc.Vec3", @@ -45375,23 +46413,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1972 + "__id__": 2017 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1974 + "__id__": 2019 }, { - "__id__": 1976 + "__id__": 2021 }, { - "__id__": 1978 + "__id__": 2023 } ], "_prefab": { - "__id__": 1980 + "__id__": 2025 }, "_lpos": { "__type__": "cc.Vec3", @@ -45428,11 +46466,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1973 + "__id__": 2018 }, "_enabled": true, "__prefab": { - "__id__": 1975 + "__id__": 2020 }, "_contentSize": { "__type__": "cc.Size", @@ -45456,11 +46494,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1973 + "__id__": 2018 }, "_enabled": true, "__prefab": { - "__id__": 1977 + "__id__": 2022 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45524,11 +46562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1973 + "__id__": 2018 }, "_enabled": true, "__prefab": { - "__id__": 1979 + "__id__": 2024 }, "templateMode": false, "watchPath": "data.mission_data.refresh_gold", @@ -45559,11 +46597,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1972 + "__id__": 2017 }, "_enabled": true, "__prefab": { - "__id__": 1982 + "__id__": 2027 }, "_contentSize": { "__type__": "cc.Size", @@ -45587,11 +46625,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1972 + "__id__": 2017 }, "_enabled": true, "__prefab": { - "__id__": 1984 + "__id__": 2029 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45645,20 +46683,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 1959 + "__id__": 2004 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1987 + "__id__": 2032 }, { - "__id__": 1989 + "__id__": 2034 } ], "_prefab": { - "__id__": 1991 + "__id__": 2036 }, "_lpos": { "__type__": "cc.Vec3", @@ -45695,11 +46733,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1986 + "__id__": 2031 }, "_enabled": true, "__prefab": { - "__id__": 1988 + "__id__": 2033 }, "_contentSize": { "__type__": "cc.Size", @@ -45723,11 +46761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1986 + "__id__": 2031 }, "_enabled": true, "__prefab": { - "__id__": 1990 + "__id__": 2035 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45804,27 +46842,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1959 + "__id__": 2004 }, "_children": [ { - "__id__": 1993 + "__id__": 2038 }, { - "__id__": 2001 + "__id__": 2046 }, { - "__id__": 2009 + "__id__": 2054 } ], "_active": false, "_components": [ { - "__id__": 2019 + "__id__": 2064 } ], "_prefab": { - "__id__": 2021 + "__id__": 2066 }, "_lpos": { "__type__": "cc.Vec3", @@ -45861,23 +46899,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1992 + "__id__": 2037 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1994 + "__id__": 2039 }, { - "__id__": 1996 + "__id__": 2041 }, { - "__id__": 1998 + "__id__": 2043 } ], "_prefab": { - "__id__": 2000 + "__id__": 2045 }, "_lpos": { "__type__": "cc.Vec3", @@ -45914,11 +46952,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1993 + "__id__": 2038 }, "_enabled": true, "__prefab": { - "__id__": 1995 + "__id__": 2040 }, "_contentSize": { "__type__": "cc.Size", @@ -45942,11 +46980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1993 + "__id__": 2038 }, "_enabled": true, "__prefab": { - "__id__": 1997 + "__id__": 2042 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -45987,11 +47025,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1993 + "__id__": 2038 }, "_enabled": true, "__prefab": { - "__id__": 1999 + "__id__": 2044 }, "_alignFlags": 45, "_target": null, @@ -46036,23 +47074,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1992 + "__id__": 2037 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2002 + "__id__": 2047 }, { - "__id__": 2004 + "__id__": 2049 }, { - "__id__": 2006 + "__id__": 2051 } ], "_prefab": { - "__id__": 2008 + "__id__": 2053 }, "_lpos": { "__type__": "cc.Vec3", @@ -46089,11 +47127,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2001 + "__id__": 2046 }, "_enabled": true, "__prefab": { - "__id__": 2003 + "__id__": 2048 }, "_contentSize": { "__type__": "cc.Size", @@ -46117,11 +47155,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2001 + "__id__": 2046 }, "_enabled": true, "__prefab": { - "__id__": 2005 + "__id__": 2050 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -46162,11 +47200,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2001 + "__id__": 2046 }, "_enabled": true, "__prefab": { - "__id__": 2007 + "__id__": 2052 }, "_alignFlags": 8, "_target": null, @@ -46211,26 +47249,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1992 + "__id__": 2037 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2010 + "__id__": 2055 }, { - "__id__": 2012 + "__id__": 2057 }, { - "__id__": 2014 + "__id__": 2059 }, { - "__id__": 2016 + "__id__": 2061 } ], "_prefab": { - "__id__": 2018 + "__id__": 2063 }, "_lpos": { "__type__": "cc.Vec3", @@ -46267,11 +47305,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2009 + "__id__": 2054 }, "_enabled": true, "__prefab": { - "__id__": 2011 + "__id__": 2056 }, "_contentSize": { "__type__": "cc.Size", @@ -46295,11 +47333,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2009 + "__id__": 2054 }, "_enabled": true, "__prefab": { - "__id__": 2013 + "__id__": 2058 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -46363,11 +47401,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2009 + "__id__": 2054 }, "_enabled": true, "__prefab": { - "__id__": 2015 + "__id__": 2060 }, "_alignFlags": 40, "_target": null, @@ -46399,11 +47437,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2009 + "__id__": 2054 }, "_enabled": true, "__prefab": { - "__id__": 2017 + "__id__": 2062 }, "templateMode": false, "watchPath": "data.mission_data.gold", @@ -46434,11 +47472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1992 + "__id__": 2037 }, "_enabled": true, "__prefab": { - "__id__": 2020 + "__id__": 2065 }, "_contentSize": { "__type__": "cc.Size", @@ -46475,11 +47513,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1959 + "__id__": 2004 }, "_enabled": true, "__prefab": { - "__id__": 2023 + "__id__": 2068 }, "_contentSize": { "__type__": "cc.Size", @@ -46503,11 +47541,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1959 + "__id__": 2004 }, "_enabled": true, "__prefab": { - "__id__": 2025 + "__id__": 2070 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -46545,15 +47583,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1959 + "__id__": 2004 }, "_enabled": true, "__prefab": { - "__id__": 2027 + "__id__": 2072 }, "clickEvents": [ { - "__id__": 2028 + "__id__": 2073 } ], "_interactable": true, @@ -46593,7 +47631,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1959 + "__id__": 2004 }, "_id": "" }, @@ -46617,11 +47655,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1959 + "__id__": 2004 }, "_enabled": true, "__prefab": { - "__id__": 2030 + "__id__": 2075 }, "_alignFlags": 20, "_target": null, @@ -46666,11 +47704,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1863 + "__id__": 1908 }, "_enabled": true, "__prefab": { - "__id__": 2033 + "__id__": 2078 }, "_contentSize": { "__type__": "cc.Size", @@ -46694,11 +47732,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1863 + "__id__": 1908 }, "_enabled": true, "__prefab": { - "__id__": 2035 + "__id__": 2080 }, "_resizeMode": 1, "_layoutType": 1, @@ -46732,11 +47770,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1863 + "__id__": 1908 }, "_enabled": true, "__prefab": { - "__id__": 2037 + "__id__": 2082 }, "_alignFlags": 44, "_target": null, @@ -46785,44 +47823,44 @@ }, "_children": [ { - "__id__": 2040 + "__id__": 2085 }, { - "__id__": 2048 + "__id__": 2093 }, { - "__id__": 2062 + "__id__": 2107 }, { - "__id__": 2095 + "__id__": 2140 }, { - "__id__": 2128 + "__id__": 2173 }, { - "__id__": 2218 + "__id__": 2263 } ], "_active": true, "_components": [ { - "__id__": 2312 + "__id__": 2357 }, { - "__id__": 2314 + "__id__": 2359 }, { - "__id__": 2316 + "__id__": 2361 }, { - "__id__": 2318 + "__id__": 2363 }, { - "__id__": 2320 + "__id__": 2365 } ], "_prefab": { - "__id__": 2322 + "__id__": 2367 }, "_lpos": { "__type__": "cc.Vec3", @@ -46859,23 +47897,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2041 + "__id__": 2086 }, { - "__id__": 2043 + "__id__": 2088 }, { - "__id__": 2045 + "__id__": 2090 } ], "_prefab": { - "__id__": 2047 + "__id__": 2092 }, "_lpos": { "__type__": "cc.Vec3", @@ -46912,11 +47950,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2040 + "__id__": 2085 }, "_enabled": true, "__prefab": { - "__id__": 2042 + "__id__": 2087 }, "_contentSize": { "__type__": "cc.Size", @@ -46940,11 +47978,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2040 + "__id__": 2085 }, "_enabled": true, "__prefab": { - "__id__": 2044 + "__id__": 2089 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -46985,11 +48023,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2040 + "__id__": 2085 }, "_enabled": false, "__prefab": { - "__id__": 2046 + "__id__": 2091 }, "_alignFlags": 45, "_target": null, @@ -47034,24 +48072,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [ { - "__id__": 2049 + "__id__": 2094 } ], "_active": true, "_components": [ { - "__id__": 2057 + "__id__": 2102 }, { - "__id__": 2059 + "__id__": 2104 } ], "_prefab": { - "__id__": 2061 + "__id__": 2106 }, "_lpos": { "__type__": "cc.Vec3", @@ -47088,23 +48126,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2048 + "__id__": 2093 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2050 + "__id__": 2095 }, { - "__id__": 2052 + "__id__": 2097 }, { - "__id__": 2054 + "__id__": 2099 } ], "_prefab": { - "__id__": 2056 + "__id__": 2101 }, "_lpos": { "__type__": "cc.Vec3", @@ -47141,11 +48179,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2049 + "__id__": 2094 }, "_enabled": true, "__prefab": { - "__id__": 2051 + "__id__": 2096 }, "_contentSize": { "__type__": "cc.Size", @@ -47169,11 +48207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2049 + "__id__": 2094 }, "_enabled": true, "__prefab": { - "__id__": 2053 + "__id__": 2098 }, "_alignFlags": 45, "_target": null, @@ -47205,11 +48243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2049 + "__id__": 2094 }, "_enabled": true, "__prefab": { - "__id__": 2055 + "__id__": 2100 }, "_id": "" }, @@ -47236,11 +48274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2048 + "__id__": 2093 }, "_enabled": true, "__prefab": { - "__id__": 2058 + "__id__": 2103 }, "_contentSize": { "__type__": "cc.Size", @@ -47264,11 +48302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2048 + "__id__": 2093 }, "_enabled": true, "__prefab": { - "__id__": 2060 + "__id__": 2105 }, "_alignFlags": 5, "_target": null, @@ -47313,36 +48351,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [ { - "__id__": 2063 + "__id__": 2108 }, { - "__id__": 2069 + "__id__": 2114 }, { - "__id__": 2075 + "__id__": 2120 }, { - "__id__": 2081 + "__id__": 2126 } ], "_active": true, "_components": [ { - "__id__": 2087 + "__id__": 2132 }, { - "__id__": 2089 + "__id__": 2134 }, { - "__id__": 2091 + "__id__": 2136 } ], "_prefab": { - "__id__": 2094 + "__id__": 2139 }, "_lpos": { "__type__": "cc.Vec3", @@ -47379,20 +48417,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2062 + "__id__": 2107 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2064 + "__id__": 2109 }, { - "__id__": 2066 + "__id__": 2111 } ], "_prefab": { - "__id__": 2068 + "__id__": 2113 }, "_lpos": { "__type__": "cc.Vec3", @@ -47429,11 +48467,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2063 + "__id__": 2108 }, "_enabled": true, "__prefab": { - "__id__": 2065 + "__id__": 2110 }, "_contentSize": { "__type__": "cc.Size", @@ -47457,11 +48495,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2063 + "__id__": 2108 }, "_enabled": true, "__prefab": { - "__id__": 2067 + "__id__": 2112 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -47515,20 +48553,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2062 + "__id__": 2107 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2070 + "__id__": 2115 }, { - "__id__": 2072 + "__id__": 2117 } ], "_prefab": { - "__id__": 2074 + "__id__": 2119 }, "_lpos": { "__type__": "cc.Vec3", @@ -47565,11 +48603,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2069 + "__id__": 2114 }, "_enabled": true, "__prefab": { - "__id__": 2071 + "__id__": 2116 }, "_contentSize": { "__type__": "cc.Size", @@ -47593,11 +48631,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2069 + "__id__": 2114 }, "_enabled": true, "__prefab": { - "__id__": 2073 + "__id__": 2118 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -47651,20 +48689,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2062 + "__id__": 2107 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2076 + "__id__": 2121 }, { - "__id__": 2078 + "__id__": 2123 } ], "_prefab": { - "__id__": 2080 + "__id__": 2125 }, "_lpos": { "__type__": "cc.Vec3", @@ -47701,11 +48739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2075 + "__id__": 2120 }, "_enabled": true, "__prefab": { - "__id__": 2077 + "__id__": 2122 }, "_contentSize": { "__type__": "cc.Size", @@ -47729,11 +48767,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2075 + "__id__": 2120 }, "_enabled": true, "__prefab": { - "__id__": 2079 + "__id__": 2124 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -47810,20 +48848,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2062 + "__id__": 2107 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2082 + "__id__": 2127 }, { - "__id__": 2084 + "__id__": 2129 } ], "_prefab": { - "__id__": 2086 + "__id__": 2131 }, "_lpos": { "__type__": "cc.Vec3", @@ -47860,11 +48898,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2081 + "__id__": 2126 }, "_enabled": true, "__prefab": { - "__id__": 2083 + "__id__": 2128 }, "_contentSize": { "__type__": "cc.Size", @@ -47888,11 +48926,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2081 + "__id__": 2126 }, "_enabled": true, "__prefab": { - "__id__": 2085 + "__id__": 2130 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -47969,11 +49007,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2062 + "__id__": 2107 }, "_enabled": true, "__prefab": { - "__id__": 2088 + "__id__": 2133 }, "_contentSize": { "__type__": "cc.Size", @@ -47997,11 +49035,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2062 + "__id__": 2107 }, "_enabled": true, "__prefab": { - "__id__": 2090 + "__id__": 2135 }, "playOnLoad": true, "_clips": [ @@ -48026,15 +49064,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2062 + "__id__": 2107 }, "_enabled": true, "__prefab": { - "__id__": 2092 + "__id__": 2137 }, "clickEvents": [ { - "__id__": 2093 + "__id__": 2138 } ], "_interactable": true, @@ -48083,7 +49121,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 2039 + "__id__": 2084 }, "component": "", "_componentId": "3d183Ezxg1EwJM/pim+pDMx", @@ -48109,27 +49147,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [ { - "__id__": 2096 + "__id__": 2141 }, { - "__id__": 2107 + "__id__": 2152 }, { - "__id__": 2116 + "__id__": 2161 } ], "_active": true, "_components": [ { - "__id__": 2125 + "__id__": 2170 } ], "_prefab": { - "__id__": 2127 + "__id__": 2172 }, "_lpos": { "__type__": "cc.Vec3", @@ -48164,17 +49202,17 @@ "__type__": "cc.Node", "_objFlags": 512, "_parent": { - "__id__": 2095 + "__id__": 2140 }, "_prefab": { - "__id__": 2097 + "__id__": 2142 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2096 + "__id__": 2141 }, "asset": { "__uuid__": "2849e90f-15b2-4082-a7b6-1ff1362f537b", @@ -48182,7 +49220,7 @@ }, "fileId": "73zWbS9wVHvpxXjUD9UG9z", "instance": { - "__id__": 2098 + "__id__": 2143 }, "targetOverrides": null }, @@ -48196,22 +49234,22 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2099 + "__id__": 2144 }, { - "__id__": 2101 + "__id__": 2146 }, { - "__id__": 2102 + "__id__": 2147 }, { - "__id__": 2103 + "__id__": 2148 }, { - "__id__": 2104 + "__id__": 2149 }, { - "__id__": 2106 + "__id__": 2151 } ], "removedComponents": [] @@ -48219,7 +49257,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2100 + "__id__": 2145 }, "propertyPath": [ "_name" @@ -48235,7 +49273,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2100 + "__id__": 2145 }, "propertyPath": [ "_lpos" @@ -48250,7 +49288,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2100 + "__id__": 2145 }, "propertyPath": [ "_lrot" @@ -48266,7 +49304,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2100 + "__id__": 2145 }, "propertyPath": [ "_euler" @@ -48281,7 +49319,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2105 + "__id__": 2150 }, "propertyPath": [ "_active" @@ -48297,7 +49335,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2100 + "__id__": 2145 }, "propertyPath": [ "_active" @@ -48308,17 +49346,17 @@ "__type__": "cc.Node", "_objFlags": 512, "_parent": { - "__id__": 2095 + "__id__": 2140 }, "_prefab": { - "__id__": 2108 + "__id__": 2153 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2107 + "__id__": 2152 }, "asset": { "__uuid__": "2849e90f-15b2-4082-a7b6-1ff1362f537b", @@ -48326,7 +49364,7 @@ }, "fileId": "73zWbS9wVHvpxXjUD9UG9z", "instance": { - "__id__": 2109 + "__id__": 2154 }, "targetOverrides": null }, @@ -48340,19 +49378,19 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2110 + "__id__": 2155 }, { - "__id__": 2112 + "__id__": 2157 }, { - "__id__": 2113 + "__id__": 2158 }, { - "__id__": 2114 + "__id__": 2159 }, { - "__id__": 2115 + "__id__": 2160 } ], "removedComponents": [] @@ -48360,7 +49398,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2111 + "__id__": 2156 }, "propertyPath": [ "_name" @@ -48376,7 +49414,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2111 + "__id__": 2156 }, "propertyPath": [ "_lpos" @@ -48391,7 +49429,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2111 + "__id__": 2156 }, "propertyPath": [ "_lrot" @@ -48407,7 +49445,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2111 + "__id__": 2156 }, "propertyPath": [ "_euler" @@ -48422,7 +49460,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2111 + "__id__": 2156 }, "propertyPath": [ "_active" @@ -48433,17 +49471,17 @@ "__type__": "cc.Node", "_objFlags": 512, "_parent": { - "__id__": 2095 + "__id__": 2140 }, "_prefab": { - "__id__": 2117 + "__id__": 2162 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2116 + "__id__": 2161 }, "asset": { "__uuid__": "2849e90f-15b2-4082-a7b6-1ff1362f537b", @@ -48451,7 +49489,7 @@ }, "fileId": "73zWbS9wVHvpxXjUD9UG9z", "instance": { - "__id__": 2118 + "__id__": 2163 }, "targetOverrides": null }, @@ -48465,19 +49503,19 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2119 + "__id__": 2164 }, { - "__id__": 2121 + "__id__": 2166 }, { - "__id__": 2122 + "__id__": 2167 }, { - "__id__": 2123 + "__id__": 2168 }, { - "__id__": 2124 + "__id__": 2169 } ], "removedComponents": [] @@ -48485,7 +49523,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2120 + "__id__": 2165 }, "propertyPath": [ "_name" @@ -48501,7 +49539,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2120 + "__id__": 2165 }, "propertyPath": [ "_lpos" @@ -48516,7 +49554,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2120 + "__id__": 2165 }, "propertyPath": [ "_lrot" @@ -48532,7 +49570,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2120 + "__id__": 2165 }, "propertyPath": [ "_euler" @@ -48547,7 +49585,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2120 + "__id__": 2165 }, "propertyPath": [ "_active" @@ -48560,11 +49598,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2095 + "__id__": 2140 }, "_enabled": true, "__prefab": { - "__id__": 2126 + "__id__": 2171 }, "_contentSize": { "__type__": "cc.Size", @@ -48601,24 +49639,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [ { - "__id__": 2129 + "__id__": 2174 } ], "_active": true, "_components": [ { - "__id__": 2213 + "__id__": 2258 }, { - "__id__": 2215 + "__id__": 2260 } ], "_prefab": { - "__id__": 2217 + "__id__": 2262 }, "_lpos": { "__type__": "cc.Vec3", @@ -48655,45 +49693,45 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2128 + "__id__": 2173 }, "_children": [ { - "__id__": 2130 + "__id__": 2175 }, { - "__id__": 2156 + "__id__": 2201 }, { - "__id__": 2162 + "__id__": 2207 }, { - "__id__": 2168 + "__id__": 2213 }, { - "__id__": 2174 + "__id__": 2219 }, { - "__id__": 2180 + "__id__": 2225 }, { - "__id__": 2186 + "__id__": 2231 }, { - "__id__": 2194 + "__id__": 2239 }, { - "__id__": 2202 + "__id__": 2247 } ], "_active": true, "_components": [ { - "__id__": 2210 + "__id__": 2255 } ], "_prefab": { - "__id__": 2212 + "__id__": 2257 }, "_lpos": { "__type__": "cc.Vec3", @@ -48730,24 +49768,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [ { - "__id__": 2131 + "__id__": 2176 } ], "_active": true, "_components": [ { - "__id__": 2151 + "__id__": 2196 }, { - "__id__": 2153 + "__id__": 2198 } ], "_prefab": { - "__id__": 2155 + "__id__": 2200 }, "_lpos": { "__type__": "cc.Vec3", @@ -48784,30 +49822,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2130 + "__id__": 2175 }, "_children": [ { - "__id__": 2132 + "__id__": 2177 }, { - "__id__": 2138 + "__id__": 2183 } ], "_active": true, "_components": [ { - "__id__": 2144 + "__id__": 2189 }, { - "__id__": 2146 + "__id__": 2191 }, { - "__id__": 2148 + "__id__": 2193 } ], "_prefab": { - "__id__": 2150 + "__id__": 2195 }, "_lpos": { "__type__": "cc.Vec3", @@ -48844,20 +49882,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2131 + "__id__": 2176 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2133 + "__id__": 2178 }, { - "__id__": 2135 + "__id__": 2180 } ], "_prefab": { - "__id__": 2137 + "__id__": 2182 }, "_lpos": { "__type__": "cc.Vec3", @@ -48894,11 +49932,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2132 + "__id__": 2177 }, "_enabled": true, "__prefab": { - "__id__": 2134 + "__id__": 2179 }, "_contentSize": { "__type__": "cc.Size", @@ -48922,11 +49960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2132 + "__id__": 2177 }, "_enabled": true, "__prefab": { - "__id__": 2136 + "__id__": 2181 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -48980,20 +50018,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2131 + "__id__": 2176 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2139 + "__id__": 2184 }, { - "__id__": 2141 + "__id__": 2186 } ], "_prefab": { - "__id__": 2143 + "__id__": 2188 }, "_lpos": { "__type__": "cc.Vec3", @@ -49030,11 +50068,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2138 + "__id__": 2183 }, "_enabled": true, "__prefab": { - "__id__": 2140 + "__id__": 2185 }, "_contentSize": { "__type__": "cc.Size", @@ -49058,11 +50096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2138 + "__id__": 2183 }, "_enabled": true, "__prefab": { - "__id__": 2142 + "__id__": 2187 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49116,11 +50154,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2131 + "__id__": 2176 }, "_enabled": true, "__prefab": { - "__id__": 2145 + "__id__": 2190 }, "_contentSize": { "__type__": "cc.Size", @@ -49144,11 +50182,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2131 + "__id__": 2176 }, "_enabled": true, "__prefab": { - "__id__": 2147 + "__id__": 2192 }, "_type": 0, "_inverted": false, @@ -49166,11 +50204,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2131 + "__id__": 2176 }, "_enabled": true, "__prefab": { - "__id__": 2149 + "__id__": 2194 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49225,11 +50263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2130 + "__id__": 2175 }, "_enabled": true, "__prefab": { - "__id__": 2152 + "__id__": 2197 }, "_contentSize": { "__type__": "cc.Size", @@ -49253,11 +50291,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2130 + "__id__": 2175 }, "_enabled": true, "__prefab": { - "__id__": 2154 + "__id__": 2199 }, "playOnLoad": true, "_clips": [ @@ -49295,20 +50333,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2157 + "__id__": 2202 }, { - "__id__": 2159 + "__id__": 2204 } ], "_prefab": { - "__id__": 2161 + "__id__": 2206 }, "_lpos": { "__type__": "cc.Vec3", @@ -49345,11 +50383,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2156 + "__id__": 2201 }, "_enabled": true, "__prefab": { - "__id__": 2158 + "__id__": 2203 }, "_contentSize": { "__type__": "cc.Size", @@ -49373,11 +50411,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2156 + "__id__": 2201 }, "_enabled": true, "__prefab": { - "__id__": 2160 + "__id__": 2205 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49431,20 +50469,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2163 + "__id__": 2208 }, { - "__id__": 2165 + "__id__": 2210 } ], "_prefab": { - "__id__": 2167 + "__id__": 2212 }, "_lpos": { "__type__": "cc.Vec3", @@ -49481,11 +50519,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2162 + "__id__": 2207 }, "_enabled": true, "__prefab": { - "__id__": 2164 + "__id__": 2209 }, "_contentSize": { "__type__": "cc.Size", @@ -49509,11 +50547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2162 + "__id__": 2207 }, "_enabled": true, "__prefab": { - "__id__": 2166 + "__id__": 2211 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49567,20 +50605,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2169 + "__id__": 2214 }, { - "__id__": 2171 + "__id__": 2216 } ], "_prefab": { - "__id__": 2173 + "__id__": 2218 }, "_lpos": { "__type__": "cc.Vec3", @@ -49617,11 +50655,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2168 + "__id__": 2213 }, "_enabled": true, "__prefab": { - "__id__": 2170 + "__id__": 2215 }, "_contentSize": { "__type__": "cc.Size", @@ -49645,11 +50683,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2168 + "__id__": 2213 }, "_enabled": true, "__prefab": { - "__id__": 2172 + "__id__": 2217 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49726,20 +50764,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2175 + "__id__": 2220 }, { - "__id__": 2177 + "__id__": 2222 } ], "_prefab": { - "__id__": 2179 + "__id__": 2224 }, "_lpos": { "__type__": "cc.Vec3", @@ -49776,11 +50814,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2174 + "__id__": 2219 }, "_enabled": true, "__prefab": { - "__id__": 2176 + "__id__": 2221 }, "_contentSize": { "__type__": "cc.Size", @@ -49804,11 +50842,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2174 + "__id__": 2219 }, "_enabled": true, "__prefab": { - "__id__": 2178 + "__id__": 2223 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49862,20 +50900,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2181 + "__id__": 2226 }, { - "__id__": 2183 + "__id__": 2228 } ], "_prefab": { - "__id__": 2185 + "__id__": 2230 }, "_lpos": { "__type__": "cc.Vec3", @@ -49912,11 +50950,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2180 + "__id__": 2225 }, "_enabled": true, "__prefab": { - "__id__": 2182 + "__id__": 2227 }, "_contentSize": { "__type__": "cc.Size", @@ -49940,11 +50978,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2180 + "__id__": 2225 }, "_enabled": true, "__prefab": { - "__id__": 2184 + "__id__": 2229 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -49998,23 +51036,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2187 + "__id__": 2232 }, { - "__id__": 2189 + "__id__": 2234 }, { - "__id__": 2191 + "__id__": 2236 } ], "_prefab": { - "__id__": 2193 + "__id__": 2238 }, "_lpos": { "__type__": "cc.Vec3", @@ -50051,11 +51089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2186 + "__id__": 2231 }, "_enabled": true, "__prefab": { - "__id__": 2188 + "__id__": 2233 }, "_contentSize": { "__type__": "cc.Size", @@ -50079,11 +51117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2186 + "__id__": 2231 }, "_enabled": true, "__prefab": { - "__id__": 2190 + "__id__": 2235 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -50124,11 +51162,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2186 + "__id__": 2231 }, "_enabled": true, "__prefab": { - "__id__": 2192 + "__id__": 2237 }, "playOnLoad": true, "_clips": [ @@ -50166,23 +51204,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2195 + "__id__": 2240 }, { - "__id__": 2197 + "__id__": 2242 }, { - "__id__": 2199 + "__id__": 2244 } ], "_prefab": { - "__id__": 2201 + "__id__": 2246 }, "_lpos": { "__type__": "cc.Vec3", @@ -50219,11 +51257,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2194 + "__id__": 2239 }, "_enabled": true, "__prefab": { - "__id__": 2196 + "__id__": 2241 }, "_contentSize": { "__type__": "cc.Size", @@ -50247,11 +51285,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2194 + "__id__": 2239 }, "_enabled": true, "__prefab": { - "__id__": 2198 + "__id__": 2243 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -50292,11 +51330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2194 + "__id__": 2239 }, "_enabled": true, "__prefab": { - "__id__": 2200 + "__id__": 2245 }, "playOnLoad": true, "_clips": [ @@ -50334,23 +51372,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2129 + "__id__": 2174 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2203 + "__id__": 2248 }, { - "__id__": 2205 + "__id__": 2250 }, { - "__id__": 2207 + "__id__": 2252 } ], "_prefab": { - "__id__": 2209 + "__id__": 2254 }, "_lpos": { "__type__": "cc.Vec3", @@ -50387,11 +51425,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2202 + "__id__": 2247 }, "_enabled": true, "__prefab": { - "__id__": 2204 + "__id__": 2249 }, "_contentSize": { "__type__": "cc.Size", @@ -50415,11 +51453,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2202 + "__id__": 2247 }, "_enabled": true, "__prefab": { - "__id__": 2206 + "__id__": 2251 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -50460,11 +51498,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2202 + "__id__": 2247 }, "_enabled": true, "__prefab": { - "__id__": 2208 + "__id__": 2253 }, "playOnLoad": true, "_clips": [ @@ -50502,11 +51540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2129 + "__id__": 2174 }, "_enabled": true, "__prefab": { - "__id__": 2211 + "__id__": 2256 }, "_contentSize": { "__type__": "cc.Size", @@ -50543,11 +51581,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2128 + "__id__": 2173 }, "_enabled": true, "__prefab": { - "__id__": 2214 + "__id__": 2259 }, "_contentSize": { "__type__": "cc.Size", @@ -50571,11 +51609,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2128 + "__id__": 2173 }, "_enabled": true, "__prefab": { - "__id__": 2216 + "__id__": 2261 }, "_alignFlags": 17, "_target": null, @@ -50620,27 +51658,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2039 + "__id__": 2084 }, "_children": [ { - "__id__": 2219 + "__id__": 2264 }, { - "__id__": 2262 + "__id__": 2307 } ], "_active": true, "_components": [ { - "__id__": 2307 + "__id__": 2352 }, { - "__id__": 2309 + "__id__": 2354 } ], "_prefab": { - "__id__": 2311 + "__id__": 2356 }, "_lpos": { "__type__": "cc.Vec3", @@ -50677,30 +51715,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2218 + "__id__": 2263 }, "_children": [ { - "__id__": 2220 + "__id__": 2265 }, { - "__id__": 2248 + "__id__": 2293 } ], "_active": true, "_components": [ { - "__id__": 2254 + "__id__": 2299 }, { - "__id__": 2256 + "__id__": 2301 }, { - "__id__": 2259 + "__id__": 2304 } ], "_prefab": { - "__id__": 2261 + "__id__": 2306 }, "_lpos": { "__type__": "cc.Vec3", @@ -50735,17 +51773,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 2219 + "__id__": 2264 }, "_prefab": { - "__id__": 2221 + "__id__": 2266 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2220 + "__id__": 2265 }, "asset": { "__uuid__": "915a4408-90ea-4c30-9974-05d96c0c27f1", @@ -50753,7 +51791,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 2222 + "__id__": 2267 }, "targetOverrides": null }, @@ -50767,52 +51805,52 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2223 + "__id__": 2268 }, { - "__id__": 2225 + "__id__": 2270 }, { - "__id__": 2226 + "__id__": 2271 }, { - "__id__": 2227 + "__id__": 2272 }, { - "__id__": 2228 + "__id__": 2273 }, { - "__id__": 2230 + "__id__": 2275 }, { - "__id__": 2231 + "__id__": 2276 }, { - "__id__": 2233 + "__id__": 2278 }, { - "__id__": 2235 + "__id__": 2280 }, { - "__id__": 2236 + "__id__": 2281 }, { - "__id__": 2238 + "__id__": 2283 }, { - "__id__": 2240 + "__id__": 2285 }, { - "__id__": 2242 + "__id__": 2287 }, { - "__id__": 2244 + "__id__": 2289 }, { - "__id__": 2245 + "__id__": 2290 }, { - "__id__": 2247 + "__id__": 2292 } ], "removedComponents": [] @@ -50820,7 +51858,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2224 + "__id__": 2269 }, "propertyPath": [ "_name" @@ -50836,7 +51874,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2224 + "__id__": 2269 }, "propertyPath": [ "_lpos" @@ -50851,7 +51889,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2224 + "__id__": 2269 }, "propertyPath": [ "_lrot" @@ -50867,7 +51905,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2224 + "__id__": 2269 }, "propertyPath": [ "_euler" @@ -50882,7 +51920,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2229 + "__id__": 2274 }, "propertyPath": [ "_lscale" @@ -50903,7 +51941,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2229 + "__id__": 2274 }, "propertyPath": [ "_active" @@ -50913,7 +51951,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2232 + "__id__": 2277 }, "propertyPath": [ "_lscale" @@ -50934,7 +51972,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2234 + "__id__": 2279 }, "propertyPath": [ "_contentSize" @@ -50954,7 +51992,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2232 + "__id__": 2277 }, "propertyPath": [ "_active" @@ -50964,7 +52002,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2237 + "__id__": 2282 }, "propertyPath": [ "_contentSize" @@ -50984,7 +52022,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2239 + "__id__": 2284 }, "propertyPath": [ "_color" @@ -51006,7 +52044,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2241 + "__id__": 2286 }, "propertyPath": [ "_active" @@ -51022,7 +52060,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2243 + "__id__": 2288 }, "propertyPath": [ "_spriteFrame" @@ -51041,7 +52079,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2241 + "__id__": 2286 }, "propertyPath": [ "_lscale" @@ -51056,7 +52094,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2246 + "__id__": 2291 }, "propertyPath": [ "_contentSize" @@ -51076,7 +52114,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2243 + "__id__": 2288 }, "propertyPath": [ "_useGrayscale" @@ -51089,20 +52127,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2219 + "__id__": 2264 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2249 + "__id__": 2294 }, { - "__id__": 2251 + "__id__": 2296 } ], "_prefab": { - "__id__": 2253 + "__id__": 2298 }, "_lpos": { "__type__": "cc.Vec3", @@ -51139,11 +52177,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2248 + "__id__": 2293 }, "_enabled": true, "__prefab": { - "__id__": 2250 + "__id__": 2295 }, "_contentSize": { "__type__": "cc.Size", @@ -51167,11 +52205,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2248 + "__id__": 2293 }, "_enabled": true, "__prefab": { - "__id__": 2252 + "__id__": 2297 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -51248,11 +52286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2219 + "__id__": 2264 }, "_enabled": true, "__prefab": { - "__id__": 2255 + "__id__": 2300 }, "_contentSize": { "__type__": "cc.Size", @@ -51276,15 +52314,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2219 + "__id__": 2264 }, "_enabled": true, "__prefab": { - "__id__": 2257 + "__id__": 2302 }, "clickEvents": [ { - "__id__": 2258 + "__id__": 2303 } ], "_interactable": true, @@ -51324,7 +52362,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 2219 + "__id__": 2264 }, "_id": "" }, @@ -51335,7 +52373,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 2039 + "__id__": 2084 }, "component": "", "_componentId": "3d183Ezxg1EwJM/pim+pDMx", @@ -51348,11 +52386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2219 + "__id__": 2264 }, "_enabled": false, "__prefab": { - "__id__": 2260 + "__id__": 2305 }, "_alignFlags": 16, "_target": null, @@ -51397,33 +52435,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2218 + "__id__": 2263 }, "_children": [ { - "__id__": 2263 + "__id__": 2308 }, { - "__id__": 2291 + "__id__": 2336 } ], "_active": true, "_components": [ { - "__id__": 2297 + "__id__": 2342 }, { - "__id__": 2299 + "__id__": 2344 }, { - "__id__": 2301 + "__id__": 2346 }, { - "__id__": 2304 + "__id__": 2349 } ], "_prefab": { - "__id__": 2306 + "__id__": 2351 }, "_lpos": { "__type__": "cc.Vec3", @@ -51458,17 +52496,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 2262 + "__id__": 2307 }, "_prefab": { - "__id__": 2264 + "__id__": 2309 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2263 + "__id__": 2308 }, "asset": { "__uuid__": "915a4408-90ea-4c30-9974-05d96c0c27f1", @@ -51476,7 +52514,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 2265 + "__id__": 2310 }, "targetOverrides": null }, @@ -51490,52 +52528,52 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2266 + "__id__": 2311 }, { - "__id__": 2268 + "__id__": 2313 }, { - "__id__": 2269 + "__id__": 2314 }, { - "__id__": 2270 + "__id__": 2315 }, { - "__id__": 2271 + "__id__": 2316 }, { - "__id__": 2273 + "__id__": 2318 }, { - "__id__": 2274 + "__id__": 2319 }, { - "__id__": 2276 + "__id__": 2321 }, { - "__id__": 2278 + "__id__": 2323 }, { - "__id__": 2279 + "__id__": 2324 }, { - "__id__": 2281 + "__id__": 2326 }, { - "__id__": 2283 + "__id__": 2328 }, { - "__id__": 2285 + "__id__": 2330 }, { - "__id__": 2287 + "__id__": 2332 }, { - "__id__": 2288 + "__id__": 2333 }, { - "__id__": 2290 + "__id__": 2335 } ], "removedComponents": [] @@ -51543,7 +52581,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2267 + "__id__": 2312 }, "propertyPath": [ "_name" @@ -51559,7 +52597,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2267 + "__id__": 2312 }, "propertyPath": [ "_lpos" @@ -51574,7 +52612,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2267 + "__id__": 2312 }, "propertyPath": [ "_lrot" @@ -51590,7 +52628,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2267 + "__id__": 2312 }, "propertyPath": [ "_euler" @@ -51605,7 +52643,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2272 + "__id__": 2317 }, "propertyPath": [ "_lscale" @@ -51626,7 +52664,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2272 + "__id__": 2317 }, "propertyPath": [ "_active" @@ -51636,7 +52674,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2275 + "__id__": 2320 }, "propertyPath": [ "_lscale" @@ -51657,7 +52695,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2277 + "__id__": 2322 }, "propertyPath": [ "_contentSize" @@ -51677,7 +52715,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2275 + "__id__": 2320 }, "propertyPath": [ "_active" @@ -51687,7 +52725,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2280 + "__id__": 2325 }, "propertyPath": [ "_contentSize" @@ -51707,7 +52745,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2282 + "__id__": 2327 }, "propertyPath": [ "_color" @@ -51729,7 +52767,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2284 + "__id__": 2329 }, "propertyPath": [ "_active" @@ -51745,7 +52783,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2286 + "__id__": 2331 }, "propertyPath": [ "_spriteFrame" @@ -51764,7 +52802,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2284 + "__id__": 2329 }, "propertyPath": [ "_lscale" @@ -51779,7 +52817,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2289 + "__id__": 2334 }, "propertyPath": [ "_contentSize" @@ -51799,7 +52837,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2286 + "__id__": 2331 }, "propertyPath": [ "_useGrayscale" @@ -51812,20 +52850,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2262 + "__id__": 2307 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2292 + "__id__": 2337 }, { - "__id__": 2294 + "__id__": 2339 } ], "_prefab": { - "__id__": 2296 + "__id__": 2341 }, "_lpos": { "__type__": "cc.Vec3", @@ -51862,11 +52900,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2291 + "__id__": 2336 }, "_enabled": true, "__prefab": { - "__id__": 2293 + "__id__": 2338 }, "_contentSize": { "__type__": "cc.Size", @@ -51890,11 +52928,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2291 + "__id__": 2336 }, "_enabled": true, "__prefab": { - "__id__": 2295 + "__id__": 2340 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -51971,11 +53009,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2262 + "__id__": 2307 }, "_enabled": true, "__prefab": { - "__id__": 2298 + "__id__": 2343 }, "_contentSize": { "__type__": "cc.Size", @@ -51999,11 +53037,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2262 + "__id__": 2307 }, "_enabled": false, "__prefab": { - "__id__": 2300 + "__id__": 2345 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -52044,15 +53082,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2262 + "__id__": 2307 }, "_enabled": true, "__prefab": { - "__id__": 2302 + "__id__": 2347 }, "clickEvents": [ { - "__id__": 2303 + "__id__": 2348 } ], "_interactable": true, @@ -52092,7 +53130,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 2262 + "__id__": 2307 }, "_id": "" }, @@ -52103,7 +53141,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 2039 + "__id__": 2084 }, "component": "", "_componentId": "3d183Ezxg1EwJM/pim+pDMx", @@ -52116,11 +53154,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2262 + "__id__": 2307 }, "_enabled": false, "__prefab": { - "__id__": 2305 + "__id__": 2350 }, "_alignFlags": 16, "_target": null, @@ -52165,11 +53203,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2218 + "__id__": 2263 }, "_enabled": true, "__prefab": { - "__id__": 2308 + "__id__": 2353 }, "_contentSize": { "__type__": "cc.Size", @@ -52193,11 +53231,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2218 + "__id__": 2263 }, "_enabled": true, "__prefab": { - "__id__": 2310 + "__id__": 2355 }, "_resizeMode": 1, "_layoutType": 1, @@ -52244,11 +53282,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2039 + "__id__": 2084 }, "_enabled": true, "__prefab": { - "__id__": 2313 + "__id__": 2358 }, "_contentSize": { "__type__": "cc.Size", @@ -52272,11 +53310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2039 + "__id__": 2084 }, "_enabled": true, "__prefab": { - "__id__": 2315 + "__id__": 2360 }, "_resizeMode": 0, "_layoutType": 0, @@ -52310,11 +53348,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2039 + "__id__": 2084 }, "_enabled": false, "__prefab": { - "__id__": 2317 + "__id__": 2362 }, "_resizeMode": 0, "_layoutType": 3, @@ -52348,11 +53386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2039 + "__id__": 2084 }, "_enabled": true, "__prefab": { - "__id__": 2319 + "__id__": 2364 }, "_alignFlags": 45, "_target": null, @@ -52384,11 +53422,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2039 + "__id__": 2084 }, "_enabled": true, "__prefab": { - "__id__": 2321 + "__id__": 2366 }, "_id": "" }, @@ -52419,29 +53457,29 @@ }, "_children": [ { - "__id__": 2324 + "__id__": 2369 }, { - "__id__": 2330 + "__id__": 2375 }, { - "__id__": 2336 + "__id__": 2381 } ], "_active": true, "_components": [ { - "__id__": 2342 + "__id__": 2387 }, { - "__id__": 2344 + "__id__": 2389 }, { - "__id__": 2347 + "__id__": 2392 } ], "_prefab": { - "__id__": 2349 + "__id__": 2394 }, "_lpos": { "__type__": "cc.Vec3", @@ -52478,20 +53516,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2323 + "__id__": 2368 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2325 + "__id__": 2370 }, { - "__id__": 2327 + "__id__": 2372 } ], "_prefab": { - "__id__": 2329 + "__id__": 2374 }, "_lpos": { "__type__": "cc.Vec3", @@ -52528,11 +53566,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2324 + "__id__": 2369 }, "_enabled": true, "__prefab": { - "__id__": 2326 + "__id__": 2371 }, "_contentSize": { "__type__": "cc.Size", @@ -52556,11 +53594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2324 + "__id__": 2369 }, "_enabled": true, "__prefab": { - "__id__": 2328 + "__id__": 2373 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -52614,20 +53652,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2323 + "__id__": 2368 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2331 + "__id__": 2376 }, { - "__id__": 2333 + "__id__": 2378 } ], "_prefab": { - "__id__": 2335 + "__id__": 2380 }, "_lpos": { "__type__": "cc.Vec3", @@ -52664,11 +53702,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2330 + "__id__": 2375 }, "_enabled": true, "__prefab": { - "__id__": 2332 + "__id__": 2377 }, "_contentSize": { "__type__": "cc.Size", @@ -52692,11 +53730,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2330 + "__id__": 2375 }, "_enabled": true, "__prefab": { - "__id__": 2334 + "__id__": 2379 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -52750,20 +53788,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2323 + "__id__": 2368 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2337 + "__id__": 2382 }, { - "__id__": 2339 + "__id__": 2384 } ], "_prefab": { - "__id__": 2341 + "__id__": 2386 }, "_lpos": { "__type__": "cc.Vec3", @@ -52800,11 +53838,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2336 + "__id__": 2381 }, "_enabled": true, "__prefab": { - "__id__": 2338 + "__id__": 2383 }, "_contentSize": { "__type__": "cc.Size", @@ -52828,11 +53866,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2336 + "__id__": 2381 }, "_enabled": true, "__prefab": { - "__id__": 2340 + "__id__": 2385 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -52909,11 +53947,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2323 + "__id__": 2368 }, "_enabled": true, "__prefab": { - "__id__": 2343 + "__id__": 2388 }, "_contentSize": { "__type__": "cc.Size", @@ -52937,15 +53975,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2323 + "__id__": 2368 }, "_enabled": true, "__prefab": { - "__id__": 2345 + "__id__": 2390 }, "clickEvents": [ { - "__id__": 2346 + "__id__": 2391 } ], "_interactable": true, @@ -53007,11 +54045,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2323 + "__id__": 2368 }, "_enabled": true, "__prefab": { - "__id__": 2348 + "__id__": 2393 }, "_alignFlags": 9, "_target": null, @@ -53060,62 +54098,62 @@ }, "_children": [ { - "__id__": 2351 + "__id__": 2396 }, { - "__id__": 2359 + "__id__": 2404 }, { - "__id__": 2383 + "__id__": 2428 }, { - "__id__": 2461 + "__id__": 2506 }, { - "__id__": 2467 + "__id__": 2512 }, { - "__id__": 2473 + "__id__": 2518 }, { - "__id__": 2479 + "__id__": 2524 }, { - "__id__": 2487 + "__id__": 2532 }, { - "__id__": 2571 + "__id__": 2616 }, { - "__id__": 2577 + "__id__": 2622 }, { - "__id__": 2583 + "__id__": 2628 }, { - "__id__": 2589 + "__id__": 2634 } ], "_active": true, "_components": [ { - "__id__": 2595 + "__id__": 2640 }, { - "__id__": 2597 + "__id__": 2642 }, { - "__id__": 2599 + "__id__": 2644 }, { - "__id__": 2601 + "__id__": 2646 }, { - "__id__": 2603 + "__id__": 2648 } ], "_prefab": { - "__id__": 2605 + "__id__": 2650 }, "_lpos": { "__type__": "cc.Vec3", @@ -53152,23 +54190,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2352 + "__id__": 2397 }, { - "__id__": 2354 + "__id__": 2399 }, { - "__id__": 2356 + "__id__": 2401 } ], "_prefab": { - "__id__": 2358 + "__id__": 2403 }, "_lpos": { "__type__": "cc.Vec3", @@ -53205,11 +54243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2351 + "__id__": 2396 }, "_enabled": true, "__prefab": { - "__id__": 2353 + "__id__": 2398 }, "_contentSize": { "__type__": "cc.Size", @@ -53233,11 +54271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2351 + "__id__": 2396 }, "_enabled": true, "__prefab": { - "__id__": 2355 + "__id__": 2400 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -53278,11 +54316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2351 + "__id__": 2396 }, "_enabled": false, "__prefab": { - "__id__": 2357 + "__id__": 2402 }, "_alignFlags": 45, "_target": null, @@ -53327,30 +54365,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [ { - "__id__": 2360 + "__id__": 2405 }, { - "__id__": 2368 + "__id__": 2413 } ], "_active": true, "_components": [ { - "__id__": 2376 + "__id__": 2421 }, { - "__id__": 2378 + "__id__": 2423 }, { - "__id__": 2380 + "__id__": 2425 } ], "_prefab": { - "__id__": 2382 + "__id__": 2427 }, "_lpos": { "__type__": "cc.Vec3", @@ -53387,23 +54425,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2359 + "__id__": 2404 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2361 + "__id__": 2406 }, { - "__id__": 2363 + "__id__": 2408 }, { - "__id__": 2365 + "__id__": 2410 } ], "_prefab": { - "__id__": 2367 + "__id__": 2412 }, "_lpos": { "__type__": "cc.Vec3", @@ -53440,11 +54478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2360 + "__id__": 2405 }, "_enabled": true, "__prefab": { - "__id__": 2362 + "__id__": 2407 }, "_contentSize": { "__type__": "cc.Size", @@ -53468,11 +54506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2360 + "__id__": 2405 }, "_enabled": true, "__prefab": { - "__id__": 2364 + "__id__": 2409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -53513,11 +54551,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2360 + "__id__": 2405 }, "_enabled": true, "__prefab": { - "__id__": 2366 + "__id__": 2411 }, "_alignFlags": 45, "_target": null, @@ -53562,23 +54600,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2359 + "__id__": 2404 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2369 + "__id__": 2414 }, { - "__id__": 2371 + "__id__": 2416 }, { - "__id__": 2373 + "__id__": 2418 } ], "_prefab": { - "__id__": 2375 + "__id__": 2420 }, "_lpos": { "__type__": "cc.Vec3", @@ -53615,11 +54653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2368 + "__id__": 2413 }, "_enabled": true, "__prefab": { - "__id__": 2370 + "__id__": 2415 }, "_contentSize": { "__type__": "cc.Size", @@ -53643,11 +54681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2368 + "__id__": 2413 }, "_enabled": true, "__prefab": { - "__id__": 2372 + "__id__": 2417 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -53688,11 +54726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2368 + "__id__": 2413 }, "_enabled": true, "__prefab": { - "__id__": 2374 + "__id__": 2419 }, "_alignFlags": 45, "_target": null, @@ -53737,11 +54775,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2359 + "__id__": 2404 }, "_enabled": true, "__prefab": { - "__id__": 2377 + "__id__": 2422 }, "_contentSize": { "__type__": "cc.Size", @@ -53765,11 +54803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2359 + "__id__": 2404 }, "_enabled": true, "__prefab": { - "__id__": 2379 + "__id__": 2424 }, "_alignFlags": 18, "_target": null, @@ -53801,11 +54839,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2359 + "__id__": 2404 }, "_enabled": true, "__prefab": { - "__id__": 2381 + "__id__": 2426 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -53856,42 +54894,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [ { - "__id__": 2384 + "__id__": 2429 }, { - "__id__": 2410 + "__id__": 2455 }, { - "__id__": 2416 + "__id__": 2461 }, { - "__id__": 2422 + "__id__": 2467 }, { - "__id__": 2428 + "__id__": 2473 }, { - "__id__": 2434 + "__id__": 2479 }, { - "__id__": 2442 + "__id__": 2487 }, { - "__id__": 2450 + "__id__": 2495 } ], "_active": true, "_components": [ { - "__id__": 2458 + "__id__": 2503 } ], "_prefab": { - "__id__": 2460 + "__id__": 2505 }, "_lpos": { "__type__": "cc.Vec3", @@ -53928,24 +54966,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [ { - "__id__": 2385 + "__id__": 2430 } ], "_active": true, "_components": [ { - "__id__": 2405 + "__id__": 2450 }, { - "__id__": 2407 + "__id__": 2452 } ], "_prefab": { - "__id__": 2409 + "__id__": 2454 }, "_lpos": { "__type__": "cc.Vec3", @@ -53982,30 +55020,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2384 + "__id__": 2429 }, "_children": [ { - "__id__": 2386 + "__id__": 2431 }, { - "__id__": 2392 + "__id__": 2437 } ], "_active": true, "_components": [ { - "__id__": 2398 + "__id__": 2443 }, { - "__id__": 2400 + "__id__": 2445 }, { - "__id__": 2402 + "__id__": 2447 } ], "_prefab": { - "__id__": 2404 + "__id__": 2449 }, "_lpos": { "__type__": "cc.Vec3", @@ -54042,20 +55080,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2385 + "__id__": 2430 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2387 + "__id__": 2432 }, { - "__id__": 2389 + "__id__": 2434 } ], "_prefab": { - "__id__": 2391 + "__id__": 2436 }, "_lpos": { "__type__": "cc.Vec3", @@ -54092,11 +55130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2386 + "__id__": 2431 }, "_enabled": true, "__prefab": { - "__id__": 2388 + "__id__": 2433 }, "_contentSize": { "__type__": "cc.Size", @@ -54120,11 +55158,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2386 + "__id__": 2431 }, "_enabled": true, "__prefab": { - "__id__": 2390 + "__id__": 2435 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54178,20 +55216,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2385 + "__id__": 2430 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2393 + "__id__": 2438 }, { - "__id__": 2395 + "__id__": 2440 } ], "_prefab": { - "__id__": 2397 + "__id__": 2442 }, "_lpos": { "__type__": "cc.Vec3", @@ -54228,11 +55266,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2392 + "__id__": 2437 }, "_enabled": true, "__prefab": { - "__id__": 2394 + "__id__": 2439 }, "_contentSize": { "__type__": "cc.Size", @@ -54256,11 +55294,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2392 + "__id__": 2437 }, "_enabled": true, "__prefab": { - "__id__": 2396 + "__id__": 2441 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54314,11 +55352,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2385 + "__id__": 2430 }, "_enabled": true, "__prefab": { - "__id__": 2399 + "__id__": 2444 }, "_contentSize": { "__type__": "cc.Size", @@ -54342,11 +55380,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2385 + "__id__": 2430 }, "_enabled": true, "__prefab": { - "__id__": 2401 + "__id__": 2446 }, "_type": 0, "_inverted": false, @@ -54364,11 +55402,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2385 + "__id__": 2430 }, "_enabled": true, "__prefab": { - "__id__": 2403 + "__id__": 2448 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54423,11 +55461,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2384 + "__id__": 2429 }, "_enabled": true, "__prefab": { - "__id__": 2406 + "__id__": 2451 }, "_contentSize": { "__type__": "cc.Size", @@ -54451,11 +55489,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2384 + "__id__": 2429 }, "_enabled": true, "__prefab": { - "__id__": 2408 + "__id__": 2453 }, "playOnLoad": true, "_clips": [ @@ -54493,20 +55531,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2411 + "__id__": 2456 }, { - "__id__": 2413 + "__id__": 2458 } ], "_prefab": { - "__id__": 2415 + "__id__": 2460 }, "_lpos": { "__type__": "cc.Vec3", @@ -54543,11 +55581,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2410 + "__id__": 2455 }, "_enabled": true, "__prefab": { - "__id__": 2412 + "__id__": 2457 }, "_contentSize": { "__type__": "cc.Size", @@ -54571,11 +55609,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2410 + "__id__": 2455 }, "_enabled": true, "__prefab": { - "__id__": 2414 + "__id__": 2459 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54629,20 +55667,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2417 + "__id__": 2462 }, { - "__id__": 2419 + "__id__": 2464 } ], "_prefab": { - "__id__": 2421 + "__id__": 2466 }, "_lpos": { "__type__": "cc.Vec3", @@ -54679,11 +55717,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2416 + "__id__": 2461 }, "_enabled": true, "__prefab": { - "__id__": 2418 + "__id__": 2463 }, "_contentSize": { "__type__": "cc.Size", @@ -54707,11 +55745,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2416 + "__id__": 2461 }, "_enabled": true, "__prefab": { - "__id__": 2420 + "__id__": 2465 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54788,20 +55826,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2423 + "__id__": 2468 }, { - "__id__": 2425 + "__id__": 2470 } ], "_prefab": { - "__id__": 2427 + "__id__": 2472 }, "_lpos": { "__type__": "cc.Vec3", @@ -54838,11 +55876,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2422 + "__id__": 2467 }, "_enabled": true, "__prefab": { - "__id__": 2424 + "__id__": 2469 }, "_contentSize": { "__type__": "cc.Size", @@ -54866,11 +55904,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2422 + "__id__": 2467 }, "_enabled": true, "__prefab": { - "__id__": 2426 + "__id__": 2471 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -54924,20 +55962,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2429 + "__id__": 2474 }, { - "__id__": 2431 + "__id__": 2476 } ], "_prefab": { - "__id__": 2433 + "__id__": 2478 }, "_lpos": { "__type__": "cc.Vec3", @@ -54974,11 +56012,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2428 + "__id__": 2473 }, "_enabled": true, "__prefab": { - "__id__": 2430 + "__id__": 2475 }, "_contentSize": { "__type__": "cc.Size", @@ -55002,11 +56040,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2428 + "__id__": 2473 }, "_enabled": true, "__prefab": { - "__id__": 2432 + "__id__": 2477 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55060,23 +56098,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2435 + "__id__": 2480 }, { - "__id__": 2437 + "__id__": 2482 }, { - "__id__": 2439 + "__id__": 2484 } ], "_prefab": { - "__id__": 2441 + "__id__": 2486 }, "_lpos": { "__type__": "cc.Vec3", @@ -55113,11 +56151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2434 + "__id__": 2479 }, "_enabled": true, "__prefab": { - "__id__": 2436 + "__id__": 2481 }, "_contentSize": { "__type__": "cc.Size", @@ -55141,11 +56179,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2434 + "__id__": 2479 }, "_enabled": true, "__prefab": { - "__id__": 2438 + "__id__": 2483 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55186,11 +56224,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2434 + "__id__": 2479 }, "_enabled": true, "__prefab": { - "__id__": 2440 + "__id__": 2485 }, "playOnLoad": true, "_clips": [ @@ -55228,23 +56266,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2443 + "__id__": 2488 }, { - "__id__": 2445 + "__id__": 2490 }, { - "__id__": 2447 + "__id__": 2492 } ], "_prefab": { - "__id__": 2449 + "__id__": 2494 }, "_lpos": { "__type__": "cc.Vec3", @@ -55281,11 +56319,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2442 + "__id__": 2487 }, "_enabled": true, "__prefab": { - "__id__": 2444 + "__id__": 2489 }, "_contentSize": { "__type__": "cc.Size", @@ -55309,11 +56347,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2442 + "__id__": 2487 }, "_enabled": true, "__prefab": { - "__id__": 2446 + "__id__": 2491 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55354,11 +56392,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2442 + "__id__": 2487 }, "_enabled": true, "__prefab": { - "__id__": 2448 + "__id__": 2493 }, "playOnLoad": true, "_clips": [ @@ -55396,23 +56434,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2383 + "__id__": 2428 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2451 + "__id__": 2496 }, { - "__id__": 2453 + "__id__": 2498 }, { - "__id__": 2455 + "__id__": 2500 } ], "_prefab": { - "__id__": 2457 + "__id__": 2502 }, "_lpos": { "__type__": "cc.Vec3", @@ -55449,11 +56487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2450 + "__id__": 2495 }, "_enabled": true, "__prefab": { - "__id__": 2452 + "__id__": 2497 }, "_contentSize": { "__type__": "cc.Size", @@ -55477,11 +56515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2450 + "__id__": 2495 }, "_enabled": true, "__prefab": { - "__id__": 2454 + "__id__": 2499 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55522,11 +56560,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2450 + "__id__": 2495 }, "_enabled": true, "__prefab": { - "__id__": 2456 + "__id__": 2501 }, "playOnLoad": true, "_clips": [ @@ -55564,11 +56602,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2383 + "__id__": 2428 }, "_enabled": true, "__prefab": { - "__id__": 2459 + "__id__": 2504 }, "_contentSize": { "__type__": "cc.Size", @@ -55605,20 +56643,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2462 + "__id__": 2507 }, { - "__id__": 2464 + "__id__": 2509 } ], "_prefab": { - "__id__": 2466 + "__id__": 2511 }, "_lpos": { "__type__": "cc.Vec3", @@ -55655,11 +56693,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2461 + "__id__": 2506 }, "_enabled": true, "__prefab": { - "__id__": 2463 + "__id__": 2508 }, "_contentSize": { "__type__": "cc.Size", @@ -55683,11 +56721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2461 + "__id__": 2506 }, "_enabled": true, "__prefab": { - "__id__": 2465 + "__id__": 2510 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55764,20 +56802,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2468 + "__id__": 2513 }, { - "__id__": 2470 + "__id__": 2515 } ], "_prefab": { - "__id__": 2472 + "__id__": 2517 }, "_lpos": { "__type__": "cc.Vec3", @@ -55814,11 +56852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2467 + "__id__": 2512 }, "_enabled": true, "__prefab": { - "__id__": 2469 + "__id__": 2514 }, "_contentSize": { "__type__": "cc.Size", @@ -55842,11 +56880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2467 + "__id__": 2512 }, "_enabled": true, "__prefab": { - "__id__": 2471 + "__id__": 2516 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -55900,20 +56938,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2474 + "__id__": 2519 }, { - "__id__": 2476 + "__id__": 2521 } ], "_prefab": { - "__id__": 2478 + "__id__": 2523 }, "_lpos": { "__type__": "cc.Vec3", @@ -55950,11 +56988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2473 + "__id__": 2518 }, "_enabled": true, "__prefab": { - "__id__": 2475 + "__id__": 2520 }, "_contentSize": { "__type__": "cc.Size", @@ -55978,11 +57016,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2473 + "__id__": 2518 }, "_enabled": true, "__prefab": { - "__id__": 2477 + "__id__": 2522 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -56036,23 +57074,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2480 + "__id__": 2525 }, { - "__id__": 2482 + "__id__": 2527 }, { - "__id__": 2484 + "__id__": 2529 } ], "_prefab": { - "__id__": 2486 + "__id__": 2531 }, "_lpos": { "__type__": "cc.Vec3", @@ -56089,11 +57127,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2479 + "__id__": 2524 }, "_enabled": true, "__prefab": { - "__id__": 2481 + "__id__": 2526 }, "_contentSize": { "__type__": "cc.Size", @@ -56117,11 +57155,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2479 + "__id__": 2524 }, "_enabled": true, "__prefab": { - "__id__": 2483 + "__id__": 2528 }, "_resizeMode": 2, "_layoutType": 3, @@ -56155,11 +57193,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2479 + "__id__": 2524 }, "_enabled": true, "__prefab": { - "__id__": 2485 + "__id__": 2530 }, "_alignFlags": 18, "_target": null, @@ -56204,24 +57242,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [ { - "__id__": 2488 + "__id__": 2533 }, { - "__id__": 2526 + "__id__": 2571 } ], "_active": true, "_components": [ { - "__id__": 2568 + "__id__": 2613 } ], "_prefab": { - "__id__": 2570 + "__id__": 2615 }, "_lpos": { "__type__": "cc.Vec3", @@ -56258,33 +57296,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2487 + "__id__": 2532 }, "_children": [ { - "__id__": 2489 + "__id__": 2534 }, { - "__id__": 2506 + "__id__": 2551 }, { - "__id__": 2512 + "__id__": 2557 } ], "_active": false, "_components": [ { - "__id__": 2518 + "__id__": 2563 }, { - "__id__": 2520 + "__id__": 2565 }, { - "__id__": 2522 + "__id__": 2567 } ], "_prefab": { - "__id__": 2525 + "__id__": 2570 }, "_lpos": { "__type__": "cc.Vec3", @@ -56319,17 +57357,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 2488 + "__id__": 2533 }, "_prefab": { - "__id__": 2490 + "__id__": 2535 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2489 + "__id__": 2534 }, "asset": { "__uuid__": "915a4408-90ea-4c30-9974-05d96c0c27f1", @@ -56337,7 +57375,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 2491 + "__id__": 2536 }, "targetOverrides": null }, @@ -56351,31 +57389,31 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2492 + "__id__": 2537 }, { - "__id__": 2494 + "__id__": 2539 }, { - "__id__": 2495 + "__id__": 2540 }, { - "__id__": 2496 + "__id__": 2541 }, { - "__id__": 2497 + "__id__": 2542 }, { - "__id__": 2499 + "__id__": 2544 }, { - "__id__": 2501 + "__id__": 2546 }, { - "__id__": 2502 + "__id__": 2547 }, { - "__id__": 2504 + "__id__": 2549 } ], "removedComponents": [] @@ -56383,7 +57421,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2493 + "__id__": 2538 }, "propertyPath": [ "_name" @@ -56399,7 +57437,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2493 + "__id__": 2538 }, "propertyPath": [ "_lpos" @@ -56414,7 +57452,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2493 + "__id__": 2538 }, "propertyPath": [ "_lrot" @@ -56430,7 +57468,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2493 + "__id__": 2538 }, "propertyPath": [ "_euler" @@ -56445,7 +57483,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2498 + "__id__": 2543 }, "propertyPath": [ "_contentSize" @@ -56465,7 +57503,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2500 + "__id__": 2545 }, "propertyPath": [ "_lscale" @@ -56486,7 +57524,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2500 + "__id__": 2545 }, "propertyPath": [ "_active" @@ -56496,7 +57534,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2503 + "__id__": 2548 }, "propertyPath": [ "_lscale" @@ -56517,7 +57555,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2505 + "__id__": 2550 }, "propertyPath": [ "_contentSize" @@ -56540,20 +57578,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2488 + "__id__": 2533 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2507 + "__id__": 2552 }, { - "__id__": 2509 + "__id__": 2554 } ], "_prefab": { - "__id__": 2511 + "__id__": 2556 }, "_lpos": { "__type__": "cc.Vec3", @@ -56590,11 +57628,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2506 + "__id__": 2551 }, "_enabled": true, "__prefab": { - "__id__": 2508 + "__id__": 2553 }, "_contentSize": { "__type__": "cc.Size", @@ -56618,11 +57656,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2506 + "__id__": 2551 }, "_enabled": true, "__prefab": { - "__id__": 2510 + "__id__": 2555 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -56676,20 +57714,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2488 + "__id__": 2533 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2513 + "__id__": 2558 }, { - "__id__": 2515 + "__id__": 2560 } ], "_prefab": { - "__id__": 2517 + "__id__": 2562 }, "_lpos": { "__type__": "cc.Vec3", @@ -56726,11 +57764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2512 + "__id__": 2557 }, "_enabled": true, "__prefab": { - "__id__": 2514 + "__id__": 2559 }, "_contentSize": { "__type__": "cc.Size", @@ -56754,11 +57792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2512 + "__id__": 2557 }, "_enabled": true, "__prefab": { - "__id__": 2516 + "__id__": 2561 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -56835,11 +57873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2488 + "__id__": 2533 }, "_enabled": true, "__prefab": { - "__id__": 2519 + "__id__": 2564 }, "_contentSize": { "__type__": "cc.Size", @@ -56863,11 +57901,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2488 + "__id__": 2533 }, "_enabled": false, "__prefab": { - "__id__": 2521 + "__id__": 2566 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -56908,15 +57946,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2488 + "__id__": 2533 }, "_enabled": true, "__prefab": { - "__id__": 2523 + "__id__": 2568 }, "clickEvents": [ { - "__id__": 2524 + "__id__": 2569 } ], "_interactable": true, @@ -56965,7 +58003,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 2350 + "__id__": 2395 }, "component": "", "_componentId": "463c7iN7clDbLBuuJ6fqWQv", @@ -56991,30 +58029,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2487 + "__id__": 2532 }, "_children": [ { - "__id__": 2527 + "__id__": 2572 }, { - "__id__": 2554 + "__id__": 2599 } ], "_active": true, "_components": [ { - "__id__": 2560 + "__id__": 2605 }, { - "__id__": 2562 + "__id__": 2607 }, { - "__id__": 2564 + "__id__": 2609 } ], "_prefab": { - "__id__": 2567 + "__id__": 2612 }, "_lpos": { "__type__": "cc.Vec3", @@ -57049,17 +58087,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 2526 + "__id__": 2571 }, "_prefab": { - "__id__": 2528 + "__id__": 2573 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 2527 + "__id__": 2572 }, "asset": { "__uuid__": "915a4408-90ea-4c30-9974-05d96c0c27f1", @@ -57067,7 +58105,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 2529 + "__id__": 2574 }, "targetOverrides": null }, @@ -57081,49 +58119,49 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 2530 + "__id__": 2575 }, { - "__id__": 2532 + "__id__": 2577 }, { - "__id__": 2533 + "__id__": 2578 }, { - "__id__": 2534 + "__id__": 2579 }, { - "__id__": 2535 + "__id__": 2580 }, { - "__id__": 2537 + "__id__": 2582 }, { - "__id__": 2538 + "__id__": 2583 }, { - "__id__": 2540 + "__id__": 2585 }, { - "__id__": 2542 + "__id__": 2587 }, { - "__id__": 2543 + "__id__": 2588 }, { - "__id__": 2545 + "__id__": 2590 }, { - "__id__": 2547 + "__id__": 2592 }, { - "__id__": 2549 + "__id__": 2594 }, { - "__id__": 2551 + "__id__": 2596 }, { - "__id__": 2552 + "__id__": 2597 } ], "removedComponents": [] @@ -57131,7 +58169,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2531 + "__id__": 2576 }, "propertyPath": [ "_name" @@ -57147,7 +58185,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2531 + "__id__": 2576 }, "propertyPath": [ "_lpos" @@ -57162,7 +58200,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2531 + "__id__": 2576 }, "propertyPath": [ "_lrot" @@ -57178,7 +58216,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2531 + "__id__": 2576 }, "propertyPath": [ "_euler" @@ -57193,7 +58231,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2536 + "__id__": 2581 }, "propertyPath": [ "_lscale" @@ -57214,7 +58252,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2536 + "__id__": 2581 }, "propertyPath": [ "_active" @@ -57224,7 +58262,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2539 + "__id__": 2584 }, "propertyPath": [ "_lscale" @@ -57245,7 +58283,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2541 + "__id__": 2586 }, "propertyPath": [ "_contentSize" @@ -57265,7 +58303,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2539 + "__id__": 2584 }, "propertyPath": [ "_active" @@ -57275,7 +58313,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2544 + "__id__": 2589 }, "propertyPath": [ "_contentSize" @@ -57295,7 +58333,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2546 + "__id__": 2591 }, "propertyPath": [ "_color" @@ -57317,7 +58355,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2548 + "__id__": 2593 }, "propertyPath": [ "_active" @@ -57333,7 +58371,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2550 + "__id__": 2595 }, "propertyPath": [ "_spriteFrame" @@ -57352,7 +58390,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2548 + "__id__": 2593 }, "propertyPath": [ "_lscale" @@ -57367,7 +58405,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 2553 + "__id__": 2598 }, "propertyPath": [ "_contentSize" @@ -57390,20 +58428,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2526 + "__id__": 2571 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2555 + "__id__": 2600 }, { - "__id__": 2557 + "__id__": 2602 } ], "_prefab": { - "__id__": 2559 + "__id__": 2604 }, "_lpos": { "__type__": "cc.Vec3", @@ -57440,11 +58478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2554 + "__id__": 2599 }, "_enabled": true, "__prefab": { - "__id__": 2556 + "__id__": 2601 }, "_contentSize": { "__type__": "cc.Size", @@ -57468,11 +58506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2554 + "__id__": 2599 }, "_enabled": true, "__prefab": { - "__id__": 2558 + "__id__": 2603 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -57549,11 +58587,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2526 + "__id__": 2571 }, "_enabled": true, "__prefab": { - "__id__": 2561 + "__id__": 2606 }, "_contentSize": { "__type__": "cc.Size", @@ -57577,11 +58615,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2526 + "__id__": 2571 }, "_enabled": false, "__prefab": { - "__id__": 2563 + "__id__": 2608 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -57622,15 +58660,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2526 + "__id__": 2571 }, "_enabled": true, "__prefab": { - "__id__": 2565 + "__id__": 2610 }, "clickEvents": [ { - "__id__": 2566 + "__id__": 2611 } ], "_interactable": true, @@ -57679,7 +58717,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 2350 + "__id__": 2395 }, "component": "", "_componentId": "463c7iN7clDbLBuuJ6fqWQv", @@ -57705,11 +58743,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2487 + "__id__": 2532 }, "_enabled": true, "__prefab": { - "__id__": 2569 + "__id__": 2614 }, "_contentSize": { "__type__": "cc.Size", @@ -57746,20 +58784,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2572 + "__id__": 2617 }, { - "__id__": 2574 + "__id__": 2619 } ], "_prefab": { - "__id__": 2576 + "__id__": 2621 }, "_lpos": { "__type__": "cc.Vec3", @@ -57796,11 +58834,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2571 + "__id__": 2616 }, "_enabled": true, "__prefab": { - "__id__": 2573 + "__id__": 2618 }, "_contentSize": { "__type__": "cc.Size", @@ -57824,11 +58862,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2571 + "__id__": 2616 }, "_enabled": true, "__prefab": { - "__id__": 2575 + "__id__": 2620 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -57905,20 +58943,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2578 + "__id__": 2623 }, { - "__id__": 2580 + "__id__": 2625 } ], "_prefab": { - "__id__": 2582 + "__id__": 2627 }, "_lpos": { "__type__": "cc.Vec3", @@ -57955,11 +58993,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2577 + "__id__": 2622 }, "_enabled": true, "__prefab": { - "__id__": 2579 + "__id__": 2624 }, "_contentSize": { "__type__": "cc.Size", @@ -57983,11 +59021,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2577 + "__id__": 2622 }, "_enabled": true, "__prefab": { - "__id__": 2581 + "__id__": 2626 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -58064,20 +59102,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2584 + "__id__": 2629 }, { - "__id__": 2586 + "__id__": 2631 } ], "_prefab": { - "__id__": 2588 + "__id__": 2633 }, "_lpos": { "__type__": "cc.Vec3", @@ -58114,11 +59152,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2583 + "__id__": 2628 }, "_enabled": true, "__prefab": { - "__id__": 2585 + "__id__": 2630 }, "_contentSize": { "__type__": "cc.Size", @@ -58142,11 +59180,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2583 + "__id__": 2628 }, "_enabled": true, "__prefab": { - "__id__": 2587 + "__id__": 2632 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -58223,20 +59261,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2350 + "__id__": 2395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2590 + "__id__": 2635 }, { - "__id__": 2592 + "__id__": 2637 } ], "_prefab": { - "__id__": 2594 + "__id__": 2639 }, "_lpos": { "__type__": "cc.Vec3", @@ -58273,11 +59311,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2589 + "__id__": 2634 }, "_enabled": true, "__prefab": { - "__id__": 2591 + "__id__": 2636 }, "_contentSize": { "__type__": "cc.Size", @@ -58301,11 +59339,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2589 + "__id__": 2634 }, "_enabled": true, "__prefab": { - "__id__": 2593 + "__id__": 2638 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -58382,11 +59420,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2350 + "__id__": 2395 }, "_enabled": true, "__prefab": { - "__id__": 2596 + "__id__": 2641 }, "_contentSize": { "__type__": "cc.Size", @@ -58410,11 +59448,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2350 + "__id__": 2395 }, "_enabled": true, "__prefab": { - "__id__": 2598 + "__id__": 2643 }, "_id": "" }, @@ -58428,11 +59466,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2350 + "__id__": 2395 }, "_enabled": true, "__prefab": { - "__id__": 2600 + "__id__": 2645 }, "_alignFlags": 45, "_target": null, @@ -58464,11 +59502,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2350 + "__id__": 2395 }, "_enabled": true, "__prefab": { - "__id__": 2602 + "__id__": 2647 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -58506,11 +59544,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2350 + "__id__": 2395 }, "_enabled": true, "__prefab": { - "__id__": 2604 + "__id__": 2649 }, "_id": "" }, @@ -58541,32 +59579,32 @@ }, "_children": [ { - "__id__": 2607 + "__id__": 2652 }, { - "__id__": 2623 + "__id__": 2668 }, { - "__id__": 2821 + "__id__": 2866 }, { - "__id__": 2829 + "__id__": 2874 }, { - "__id__": 3008 + "__id__": 3053 } ], "_active": false, "_components": [ { - "__id__": 3058 + "__id__": 3103 }, { - "__id__": 3060 + "__id__": 3105 } ], "_prefab": { - "__id__": 3062 + "__id__": 3107 }, "_lpos": { "__type__": "cc.Vec3", @@ -58603,27 +59641,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2606 + "__id__": 2651 }, "_children": [ { - "__id__": 2608 + "__id__": 2653 } ], "_active": true, "_components": [ { - "__id__": 2616 + "__id__": 2661 }, { - "__id__": 2618 + "__id__": 2663 }, { - "__id__": 2620 + "__id__": 2665 } ], "_prefab": { - "__id__": 2622 + "__id__": 2667 }, "_lpos": { "__type__": "cc.Vec3", @@ -58660,23 +59698,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2607 + "__id__": 2652 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2609 + "__id__": 2654 }, { - "__id__": 2611 + "__id__": 2656 }, { - "__id__": 2613 + "__id__": 2658 } ], "_prefab": { - "__id__": 2615 + "__id__": 2660 }, "_lpos": { "__type__": "cc.Vec3", @@ -58713,11 +59751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2608 + "__id__": 2653 }, "_enabled": true, "__prefab": { - "__id__": 2610 + "__id__": 2655 }, "_contentSize": { "__type__": "cc.Size", @@ -58741,11 +59779,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2608 + "__id__": 2653 }, "_enabled": true, "__prefab": { - "__id__": 2612 + "__id__": 2657 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -58786,11 +59824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2608 + "__id__": 2653 }, "_enabled": true, "__prefab": { - "__id__": 2614 + "__id__": 2659 }, "_alignFlags": 45, "_target": null, @@ -58835,11 +59873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2607 + "__id__": 2652 }, "_enabled": true, "__prefab": { - "__id__": 2617 + "__id__": 2662 }, "_contentSize": { "__type__": "cc.Size", @@ -58863,11 +59901,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2607 + "__id__": 2652 }, "_enabled": true, "__prefab": { - "__id__": 2619 + "__id__": 2664 }, "_alignFlags": 45, "_target": null, @@ -58899,11 +59937,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2607 + "__id__": 2652 }, "_enabled": true, "__prefab": { - "__id__": 2621 + "__id__": 2666 }, "_id": "" }, @@ -58930,24 +59968,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2606 + "__id__": 2651 }, "_children": [ { - "__id__": 2624 + "__id__": 2669 }, { - "__id__": 2638 + "__id__": 2683 } ], "_active": true, "_components": [ { - "__id__": 2818 + "__id__": 2863 } ], "_prefab": { - "__id__": 2820 + "__id__": 2865 }, "_lpos": { "__type__": "cc.Vec3", @@ -58984,27 +60022,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2623 + "__id__": 2668 }, "_children": [ { - "__id__": 2625 + "__id__": 2670 } ], "_active": true, "_components": [ { - "__id__": 2631 + "__id__": 2676 }, { - "__id__": 2633 + "__id__": 2678 }, { - "__id__": 2635 + "__id__": 2680 } ], "_prefab": { - "__id__": 2637 + "__id__": 2682 }, "_lpos": { "__type__": "cc.Vec3", @@ -59041,20 +60079,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2624 + "__id__": 2669 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2626 + "__id__": 2671 }, { - "__id__": 2628 + "__id__": 2673 } ], "_prefab": { - "__id__": 2630 + "__id__": 2675 }, "_lpos": { "__type__": "cc.Vec3", @@ -59091,11 +60129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2625 + "__id__": 2670 }, "_enabled": true, "__prefab": { - "__id__": 2627 + "__id__": 2672 }, "_contentSize": { "__type__": "cc.Size", @@ -59119,11 +60157,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2625 + "__id__": 2670 }, "_enabled": true, "__prefab": { - "__id__": 2629 + "__id__": 2674 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -59177,11 +60215,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2624 + "__id__": 2669 }, "_enabled": true, "__prefab": { - "__id__": 2632 + "__id__": 2677 }, "_contentSize": { "__type__": "cc.Size", @@ -59205,11 +60243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2624 + "__id__": 2669 }, "_enabled": true, "__prefab": { - "__id__": 2634 + "__id__": 2679 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -59250,11 +60288,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2624 + "__id__": 2669 }, "_enabled": true, "__prefab": { - "__id__": 2636 + "__id__": 2681 }, "_alignFlags": 45, "_target": null, @@ -59299,57 +60337,57 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2623 + "__id__": 2668 }, "_children": [ { - "__id__": 2639 + "__id__": 2684 }, { - "__id__": 2647 + "__id__": 2692 }, { - "__id__": 2655 + "__id__": 2700 }, { - "__id__": 2663 + "__id__": 2708 }, { - "__id__": 2679 + "__id__": 2724 }, { - "__id__": 2687 + "__id__": 2732 }, { - "__id__": 2695 + "__id__": 2740 }, { - "__id__": 2715 + "__id__": 2760 }, { - "__id__": 2743 + "__id__": 2788 }, { - "__id__": 2771 + "__id__": 2816 }, { - "__id__": 2787 + "__id__": 2832 }, { - "__id__": 2791 + "__id__": 2836 } ], "_active": true, "_components": [ { - "__id__": 2813 + "__id__": 2858 }, { - "__id__": 2815 + "__id__": 2860 } ], "_prefab": { - "__id__": 2817 + "__id__": 2862 }, "_lpos": { "__type__": "cc.Vec3", @@ -59386,23 +60424,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2640 + "__id__": 2685 }, { - "__id__": 2642 + "__id__": 2687 }, { - "__id__": 2644 + "__id__": 2689 } ], "_prefab": { - "__id__": 2646 + "__id__": 2691 }, "_lpos": { "__type__": "cc.Vec3", @@ -59439,11 +60477,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2639 + "__id__": 2684 }, "_enabled": true, "__prefab": { - "__id__": 2641 + "__id__": 2686 }, "_contentSize": { "__type__": "cc.Size", @@ -59467,11 +60505,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2639 + "__id__": 2684 }, "_enabled": false, "__prefab": { - "__id__": 2643 + "__id__": 2688 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -59512,11 +60550,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2639 + "__id__": 2684 }, "_enabled": true, "__prefab": { - "__id__": 2645 + "__id__": 2690 }, "_alignFlags": 45, "_target": null, @@ -59561,23 +60599,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2648 + "__id__": 2693 }, { - "__id__": 2650 + "__id__": 2695 }, { - "__id__": 2652 + "__id__": 2697 } ], "_prefab": { - "__id__": 2654 + "__id__": 2699 }, "_lpos": { "__type__": "cc.Vec3", @@ -59614,11 +60652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2647 + "__id__": 2692 }, "_enabled": true, "__prefab": { - "__id__": 2649 + "__id__": 2694 }, "_contentSize": { "__type__": "cc.Size", @@ -59642,11 +60680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2647 + "__id__": 2692 }, "_enabled": true, "__prefab": { - "__id__": 2651 + "__id__": 2696 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -59687,11 +60725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2647 + "__id__": 2692 }, "_enabled": true, "__prefab": { - "__id__": 2653 + "__id__": 2698 }, "_alignFlags": 45, "_target": null, @@ -59736,23 +60774,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2656 + "__id__": 2701 }, { - "__id__": 2658 + "__id__": 2703 }, { - "__id__": 2660 + "__id__": 2705 } ], "_prefab": { - "__id__": 2662 + "__id__": 2707 }, "_lpos": { "__type__": "cc.Vec3", @@ -59789,11 +60827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2655 + "__id__": 2700 }, "_enabled": true, "__prefab": { - "__id__": 2657 + "__id__": 2702 }, "_contentSize": { "__type__": "cc.Size", @@ -59817,11 +60855,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2655 + "__id__": 2700 }, "_enabled": true, "__prefab": { - "__id__": 2659 + "__id__": 2704 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -59862,11 +60900,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2655 + "__id__": 2700 }, "_enabled": true, "__prefab": { - "__id__": 2661 + "__id__": 2706 }, "_alignFlags": 45, "_target": null, @@ -59911,30 +60949,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2664 + "__id__": 2709 } ], "_active": true, "_components": [ { - "__id__": 2670 + "__id__": 2715 }, { - "__id__": 2672 + "__id__": 2717 }, { - "__id__": 2674 + "__id__": 2719 }, { - "__id__": 2676 + "__id__": 2721 } ], "_prefab": { - "__id__": 2678 + "__id__": 2723 }, "_lpos": { "__type__": "cc.Vec3", @@ -59971,20 +61009,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2663 + "__id__": 2708 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2665 + "__id__": 2710 }, { - "__id__": 2667 + "__id__": 2712 } ], "_prefab": { - "__id__": 2669 + "__id__": 2714 }, "_lpos": { "__type__": "cc.Vec3", @@ -60021,11 +61059,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2664 + "__id__": 2709 }, "_enabled": true, "__prefab": { - "__id__": 2666 + "__id__": 2711 }, "_contentSize": { "__type__": "cc.Size", @@ -60049,11 +61087,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2664 + "__id__": 2709 }, "_enabled": true, "__prefab": { - "__id__": 2668 + "__id__": 2713 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -60107,11 +61145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2663 + "__id__": 2708 }, "_enabled": true, "__prefab": { - "__id__": 2671 + "__id__": 2716 }, "_contentSize": { "__type__": "cc.Size", @@ -60135,11 +61173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2663 + "__id__": 2708 }, "_enabled": true, "__prefab": { - "__id__": 2673 + "__id__": 2718 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -60180,11 +61218,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2663 + "__id__": 2708 }, "_enabled": true, "__prefab": { - "__id__": 2675 + "__id__": 2720 }, "_alignFlags": 45, "_target": null, @@ -60216,11 +61254,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2663 + "__id__": 2708 }, "_enabled": true, "__prefab": { - "__id__": 2677 + "__id__": 2722 }, "_type": 3, "_inverted": false, @@ -60251,23 +61289,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2680 + "__id__": 2725 }, { - "__id__": 2682 + "__id__": 2727 }, { - "__id__": 2684 + "__id__": 2729 } ], "_prefab": { - "__id__": 2686 + "__id__": 2731 }, "_lpos": { "__type__": "cc.Vec3", @@ -60304,11 +61342,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2679 + "__id__": 2724 }, "_enabled": true, "__prefab": { - "__id__": 2681 + "__id__": 2726 }, "_contentSize": { "__type__": "cc.Size", @@ -60332,11 +61370,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2679 + "__id__": 2724 }, "_enabled": true, "__prefab": { - "__id__": 2683 + "__id__": 2728 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -60377,11 +61415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2679 + "__id__": 2724 }, "_enabled": true, "__prefab": { - "__id__": 2685 + "__id__": 2730 }, "_alignFlags": 40, "_target": null, @@ -60426,23 +61464,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2688 + "__id__": 2733 }, { - "__id__": 2690 + "__id__": 2735 }, { - "__id__": 2692 + "__id__": 2737 } ], "_prefab": { - "__id__": 2694 + "__id__": 2739 }, "_lpos": { "__type__": "cc.Vec3", @@ -60479,11 +61517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2687 + "__id__": 2732 }, "_enabled": true, "__prefab": { - "__id__": 2689 + "__id__": 2734 }, "_contentSize": { "__type__": "cc.Size", @@ -60507,11 +61545,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2687 + "__id__": 2732 }, "_enabled": true, "__prefab": { - "__id__": 2691 + "__id__": 2736 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -60575,11 +61613,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2687 + "__id__": 2732 }, "_enabled": true, "__prefab": { - "__id__": 2693 + "__id__": 2738 }, "_alignFlags": 41, "_target": null, @@ -60624,27 +61662,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2696 + "__id__": 2741 }, { - "__id__": 2704 + "__id__": 2749 } ], "_active": false, "_components": [ { - "__id__": 2710 + "__id__": 2755 }, { - "__id__": 2712 + "__id__": 2757 } ], "_prefab": { - "__id__": 2714 + "__id__": 2759 }, "_lpos": { "__type__": "cc.Vec3", @@ -60681,23 +61719,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2695 + "__id__": 2740 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2697 + "__id__": 2742 }, { - "__id__": 2699 + "__id__": 2744 }, { - "__id__": 2701 + "__id__": 2746 } ], "_prefab": { - "__id__": 2703 + "__id__": 2748 }, "_lpos": { "__type__": "cc.Vec3", @@ -60734,11 +61772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2696 + "__id__": 2741 }, "_enabled": true, "__prefab": { - "__id__": 2698 + "__id__": 2743 }, "_contentSize": { "__type__": "cc.Size", @@ -60762,11 +61800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2696 + "__id__": 2741 }, "_enabled": true, "__prefab": { - "__id__": 2700 + "__id__": 2745 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -60807,11 +61845,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2696 + "__id__": 2741 }, "_enabled": true, "__prefab": { - "__id__": 2702 + "__id__": 2747 }, "_alignFlags": 45, "_target": null, @@ -60856,20 +61894,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2695 + "__id__": 2740 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2705 + "__id__": 2750 }, { - "__id__": 2707 + "__id__": 2752 } ], "_prefab": { - "__id__": 2709 + "__id__": 2754 }, "_lpos": { "__type__": "cc.Vec3", @@ -60906,11 +61944,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2704 + "__id__": 2749 }, "_enabled": true, "__prefab": { - "__id__": 2706 + "__id__": 2751 }, "_contentSize": { "__type__": "cc.Size", @@ -60934,11 +61972,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2704 + "__id__": 2749 }, "_enabled": true, "__prefab": { - "__id__": 2708 + "__id__": 2753 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -61015,11 +62053,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2695 + "__id__": 2740 }, "_enabled": true, "__prefab": { - "__id__": 2711 + "__id__": 2756 }, "_contentSize": { "__type__": "cc.Size", @@ -61043,11 +62081,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2695 + "__id__": 2740 }, "_enabled": true, "__prefab": { - "__id__": 2713 + "__id__": 2758 }, "_alignFlags": 4, "_target": null, @@ -61092,30 +62130,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2716 + "__id__": 2761 }, { - "__id__": 2724 + "__id__": 2769 }, { - "__id__": 2732 + "__id__": 2777 } ], "_active": true, "_components": [ { - "__id__": 2738 + "__id__": 2783 }, { - "__id__": 2740 + "__id__": 2785 } ], "_prefab": { - "__id__": 2742 + "__id__": 2787 }, "_lpos": { "__type__": "cc.Vec3", @@ -61152,23 +62190,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2715 + "__id__": 2760 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2717 + "__id__": 2762 }, { - "__id__": 2719 + "__id__": 2764 }, { - "__id__": 2721 + "__id__": 2766 } ], "_prefab": { - "__id__": 2723 + "__id__": 2768 }, "_lpos": { "__type__": "cc.Vec3", @@ -61205,11 +62243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2716 + "__id__": 2761 }, "_enabled": true, "__prefab": { - "__id__": 2718 + "__id__": 2763 }, "_contentSize": { "__type__": "cc.Size", @@ -61233,11 +62271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2716 + "__id__": 2761 }, "_enabled": false, "__prefab": { - "__id__": 2720 + "__id__": 2765 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -61278,11 +62316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2716 + "__id__": 2761 }, "_enabled": true, "__prefab": { - "__id__": 2722 + "__id__": 2767 }, "_alignFlags": 40, "_target": null, @@ -61327,23 +62365,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2715 + "__id__": 2760 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2725 + "__id__": 2770 }, { - "__id__": 2727 + "__id__": 2772 }, { - "__id__": 2729 + "__id__": 2774 } ], "_prefab": { - "__id__": 2731 + "__id__": 2776 }, "_lpos": { "__type__": "cc.Vec3", @@ -61380,11 +62418,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2724 + "__id__": 2769 }, "_enabled": true, "__prefab": { - "__id__": 2726 + "__id__": 2771 }, "_contentSize": { "__type__": "cc.Size", @@ -61408,11 +62446,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2724 + "__id__": 2769 }, "_enabled": true, "__prefab": { - "__id__": 2728 + "__id__": 2773 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -61476,11 +62514,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2724 + "__id__": 2769 }, "_enabled": true, "__prefab": { - "__id__": 2730 + "__id__": 2775 }, "_alignFlags": 8, "_target": null, @@ -61525,20 +62563,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2715 + "__id__": 2760 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2733 + "__id__": 2778 }, { - "__id__": 2735 + "__id__": 2780 } ], "_prefab": { - "__id__": 2737 + "__id__": 2782 }, "_lpos": { "__type__": "cc.Vec3", @@ -61575,11 +62613,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2732 + "__id__": 2777 }, "_enabled": true, "__prefab": { - "__id__": 2734 + "__id__": 2779 }, "_contentSize": { "__type__": "cc.Size", @@ -61603,11 +62641,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2732 + "__id__": 2777 }, "_enabled": true, "__prefab": { - "__id__": 2736 + "__id__": 2781 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -61684,11 +62722,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2715 + "__id__": 2760 }, "_enabled": true, "__prefab": { - "__id__": 2739 + "__id__": 2784 }, "_contentSize": { "__type__": "cc.Size", @@ -61712,11 +62750,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2715 + "__id__": 2760 }, "_enabled": true, "__prefab": { - "__id__": 2741 + "__id__": 2786 }, "_alignFlags": 44, "_target": null, @@ -61761,30 +62799,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2744 + "__id__": 2789 }, { - "__id__": 2752 + "__id__": 2797 }, { - "__id__": 2760 + "__id__": 2805 } ], "_active": true, "_components": [ { - "__id__": 2766 + "__id__": 2811 }, { - "__id__": 2768 + "__id__": 2813 } ], "_prefab": { - "__id__": 2770 + "__id__": 2815 }, "_lpos": { "__type__": "cc.Vec3", @@ -61821,23 +62859,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2743 + "__id__": 2788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2745 + "__id__": 2790 }, { - "__id__": 2747 + "__id__": 2792 }, { - "__id__": 2749 + "__id__": 2794 } ], "_prefab": { - "__id__": 2751 + "__id__": 2796 }, "_lpos": { "__type__": "cc.Vec3", @@ -61874,11 +62912,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2744 + "__id__": 2789 }, "_enabled": true, "__prefab": { - "__id__": 2746 + "__id__": 2791 }, "_contentSize": { "__type__": "cc.Size", @@ -61902,11 +62940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2744 + "__id__": 2789 }, "_enabled": false, "__prefab": { - "__id__": 2748 + "__id__": 2793 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -61947,11 +62985,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2744 + "__id__": 2789 }, "_enabled": true, "__prefab": { - "__id__": 2750 + "__id__": 2795 }, "_alignFlags": 40, "_target": null, @@ -61996,23 +63034,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2743 + "__id__": 2788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2753 + "__id__": 2798 }, { - "__id__": 2755 + "__id__": 2800 }, { - "__id__": 2757 + "__id__": 2802 } ], "_prefab": { - "__id__": 2759 + "__id__": 2804 }, "_lpos": { "__type__": "cc.Vec3", @@ -62049,11 +63087,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2752 + "__id__": 2797 }, "_enabled": true, "__prefab": { - "__id__": 2754 + "__id__": 2799 }, "_contentSize": { "__type__": "cc.Size", @@ -62077,11 +63115,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2752 + "__id__": 2797 }, "_enabled": true, "__prefab": { - "__id__": 2756 + "__id__": 2801 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -62145,11 +63183,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2752 + "__id__": 2797 }, "_enabled": true, "__prefab": { - "__id__": 2758 + "__id__": 2803 }, "_alignFlags": 32, "_target": null, @@ -62194,20 +63232,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2743 + "__id__": 2788 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2761 + "__id__": 2806 }, { - "__id__": 2763 + "__id__": 2808 } ], "_prefab": { - "__id__": 2765 + "__id__": 2810 }, "_lpos": { "__type__": "cc.Vec3", @@ -62244,11 +63282,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2760 + "__id__": 2805 }, "_enabled": true, "__prefab": { - "__id__": 2762 + "__id__": 2807 }, "_contentSize": { "__type__": "cc.Size", @@ -62272,11 +63310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2760 + "__id__": 2805 }, "_enabled": true, "__prefab": { - "__id__": 2764 + "__id__": 2809 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -62353,11 +63391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2743 + "__id__": 2788 }, "_enabled": true, "__prefab": { - "__id__": 2767 + "__id__": 2812 }, "_contentSize": { "__type__": "cc.Size", @@ -62381,11 +63419,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2743 + "__id__": 2788 }, "_enabled": true, "__prefab": { - "__id__": 2769 + "__id__": 2814 }, "_alignFlags": 44, "_target": null, @@ -62430,24 +63468,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2772 + "__id__": 2817 }, { - "__id__": 2778 + "__id__": 2823 } ], "_active": false, "_components": [ { - "__id__": 2784 + "__id__": 2829 } ], "_prefab": { - "__id__": 2786 + "__id__": 2831 }, "_lpos": { "__type__": "cc.Vec3", @@ -62484,20 +63522,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2771 + "__id__": 2816 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2773 + "__id__": 2818 }, { - "__id__": 2775 + "__id__": 2820 } ], "_prefab": { - "__id__": 2777 + "__id__": 2822 }, "_lpos": { "__type__": "cc.Vec3", @@ -62534,11 +63572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2772 + "__id__": 2817 }, "_enabled": true, "__prefab": { - "__id__": 2774 + "__id__": 2819 }, "_contentSize": { "__type__": "cc.Size", @@ -62562,11 +63600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2772 + "__id__": 2817 }, "_enabled": true, "__prefab": { - "__id__": 2776 + "__id__": 2821 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -62620,20 +63658,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2771 + "__id__": 2816 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2779 + "__id__": 2824 }, { - "__id__": 2781 + "__id__": 2826 } ], "_prefab": { - "__id__": 2783 + "__id__": 2828 }, "_lpos": { "__type__": "cc.Vec3", @@ -62670,11 +63708,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2778 + "__id__": 2823 }, "_enabled": true, "__prefab": { - "__id__": 2780 + "__id__": 2825 }, "_contentSize": { "__type__": "cc.Size", @@ -62698,11 +63736,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2778 + "__id__": 2823 }, "_enabled": true, "__prefab": { - "__id__": 2782 + "__id__": 2827 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -62779,11 +63817,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2771 + "__id__": 2816 }, "_enabled": true, "__prefab": { - "__id__": 2785 + "__id__": 2830 }, "_contentSize": { "__type__": "cc.Size", @@ -62820,17 +63858,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2788 + "__id__": 2833 } ], "_prefab": { - "__id__": 2790 + "__id__": 2835 }, "_lpos": { "__type__": "cc.Vec3", @@ -62867,11 +63905,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2787 + "__id__": 2832 }, "_enabled": true, "__prefab": { - "__id__": 2789 + "__id__": 2834 }, "_contentSize": { "__type__": "cc.Size", @@ -62908,27 +63946,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2638 + "__id__": 2683 }, "_children": [ { - "__id__": 2792 + "__id__": 2837 }, { - "__id__": 2798 + "__id__": 2843 }, { - "__id__": 2804 + "__id__": 2849 } ], "_active": true, "_components": [ { - "__id__": 2810 + "__id__": 2855 } ], "_prefab": { - "__id__": 2812 + "__id__": 2857 }, "_lpos": { "__type__": "cc.Vec3", @@ -62965,20 +64003,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2791 + "__id__": 2836 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2793 + "__id__": 2838 }, { - "__id__": 2795 + "__id__": 2840 } ], "_prefab": { - "__id__": 2797 + "__id__": 2842 }, "_lpos": { "__type__": "cc.Vec3", @@ -63015,11 +64053,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2792 + "__id__": 2837 }, "_enabled": true, "__prefab": { - "__id__": 2794 + "__id__": 2839 }, "_contentSize": { "__type__": "cc.Size", @@ -63043,11 +64081,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2792 + "__id__": 2837 }, "_enabled": true, "__prefab": { - "__id__": 2796 + "__id__": 2841 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -63101,20 +64139,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2791 + "__id__": 2836 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2799 + "__id__": 2844 }, { - "__id__": 2801 + "__id__": 2846 } ], "_prefab": { - "__id__": 2803 + "__id__": 2848 }, "_lpos": { "__type__": "cc.Vec3", @@ -63151,11 +64189,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2798 + "__id__": 2843 }, "_enabled": true, "__prefab": { - "__id__": 2800 + "__id__": 2845 }, "_contentSize": { "__type__": "cc.Size", @@ -63179,11 +64217,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2798 + "__id__": 2843 }, "_enabled": true, "__prefab": { - "__id__": 2802 + "__id__": 2847 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -63237,20 +64275,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2791 + "__id__": 2836 }, "_children": [], "_active": false, "_components": [ { - "__id__": 2805 + "__id__": 2850 }, { - "__id__": 2807 + "__id__": 2852 } ], "_prefab": { - "__id__": 2809 + "__id__": 2854 }, "_lpos": { "__type__": "cc.Vec3", @@ -63287,11 +64325,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2804 + "__id__": 2849 }, "_enabled": true, "__prefab": { - "__id__": 2806 + "__id__": 2851 }, "_contentSize": { "__type__": "cc.Size", @@ -63315,11 +64353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2804 + "__id__": 2849 }, "_enabled": true, "__prefab": { - "__id__": 2808 + "__id__": 2853 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -63373,11 +64411,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2791 + "__id__": 2836 }, "_enabled": true, "__prefab": { - "__id__": 2811 + "__id__": 2856 }, "_contentSize": { "__type__": "cc.Size", @@ -63414,11 +64452,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2638 + "__id__": 2683 }, "_enabled": true, "__prefab": { - "__id__": 2814 + "__id__": 2859 }, "_contentSize": { "__type__": "cc.Size", @@ -63442,11 +64480,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2638 + "__id__": 2683 }, "_enabled": true, "__prefab": { - "__id__": 2816 + "__id__": 2861 }, "_alignFlags": 45, "_target": null, @@ -63491,11 +64529,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2623 + "__id__": 2668 }, "_enabled": true, "__prefab": { - "__id__": 2819 + "__id__": 2864 }, "_contentSize": { "__type__": "cc.Size", @@ -63532,23 +64570,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2606 + "__id__": 2651 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2822 + "__id__": 2867 }, { - "__id__": 2824 + "__id__": 2869 }, { - "__id__": 2826 + "__id__": 2871 } ], "_prefab": { - "__id__": 2828 + "__id__": 2873 }, "_lpos": { "__type__": "cc.Vec3", @@ -63585,11 +64623,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2821 + "__id__": 2866 }, "_enabled": true, "__prefab": { - "__id__": 2823 + "__id__": 2868 }, "_contentSize": { "__type__": "cc.Size", @@ -63613,11 +64651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2821 + "__id__": 2866 }, "_enabled": true, "__prefab": { - "__id__": 2825 + "__id__": 2870 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -63681,11 +64719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2821 + "__id__": 2866 }, "_enabled": true, "__prefab": { - "__id__": 2827 + "__id__": 2872 }, "_alignFlags": 10, "_target": null, @@ -63730,33 +64768,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2606 + "__id__": 2651 }, "_children": [ { - "__id__": 2830 + "__id__": 2875 }, { - "__id__": 2887 + "__id__": 2932 }, { - "__id__": 2944 + "__id__": 2989 } ], "_active": true, "_components": [ { - "__id__": 3001 + "__id__": 3046 }, { - "__id__": 3003 + "__id__": 3048 }, { - "__id__": 3005 + "__id__": 3050 } ], "_prefab": { - "__id__": 3007 + "__id__": 3052 }, "_lpos": { "__type__": "cc.Vec3", @@ -63793,33 +64831,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2829 + "__id__": 2874 }, "_children": [ { - "__id__": 2831 + "__id__": 2876 }, { - "__id__": 2847 + "__id__": 2892 }, { - "__id__": 2853 + "__id__": 2898 }, { - "__id__": 2869 + "__id__": 2914 } ], "_active": true, "_components": [ { - "__id__": 2882 + "__id__": 2927 }, { - "__id__": 2884 + "__id__": 2929 } ], "_prefab": { - "__id__": 2886 + "__id__": 2931 }, "_lpos": { "__type__": "cc.Vec3", @@ -63856,24 +64894,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2830 + "__id__": 2875 }, "_children": [ { - "__id__": 2832 + "__id__": 2877 }, { - "__id__": 2838 + "__id__": 2883 } ], "_active": false, "_components": [ { - "__id__": 2844 + "__id__": 2889 } ], "_prefab": { - "__id__": 2846 + "__id__": 2891 }, "_lpos": { "__type__": "cc.Vec3", @@ -63910,20 +64948,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2831 + "__id__": 2876 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2833 + "__id__": 2878 }, { - "__id__": 2835 + "__id__": 2880 } ], "_prefab": { - "__id__": 2837 + "__id__": 2882 }, "_lpos": { "__type__": "cc.Vec3", @@ -63960,11 +64998,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2832 + "__id__": 2877 }, "_enabled": true, "__prefab": { - "__id__": 2834 + "__id__": 2879 }, "_contentSize": { "__type__": "cc.Size", @@ -63988,11 +65026,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2832 + "__id__": 2877 }, "_enabled": true, "__prefab": { - "__id__": 2836 + "__id__": 2881 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64046,20 +65084,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2831 + "__id__": 2876 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2839 + "__id__": 2884 }, { - "__id__": 2841 + "__id__": 2886 } ], "_prefab": { - "__id__": 2843 + "__id__": 2888 }, "_lpos": { "__type__": "cc.Vec3", @@ -64096,11 +65134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2838 + "__id__": 2883 }, "_enabled": true, "__prefab": { - "__id__": 2840 + "__id__": 2885 }, "_contentSize": { "__type__": "cc.Size", @@ -64124,11 +65162,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2838 + "__id__": 2883 }, "_enabled": true, "__prefab": { - "__id__": 2842 + "__id__": 2887 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64205,11 +65243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2831 + "__id__": 2876 }, "_enabled": true, "__prefab": { - "__id__": 2845 + "__id__": 2890 }, "_contentSize": { "__type__": "cc.Size", @@ -64246,20 +65284,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2830 + "__id__": 2875 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2848 + "__id__": 2893 }, { - "__id__": 2850 + "__id__": 2895 } ], "_prefab": { - "__id__": 2852 + "__id__": 2897 }, "_lpos": { "__type__": "cc.Vec3", @@ -64296,11 +65334,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2847 + "__id__": 2892 }, "_enabled": true, "__prefab": { - "__id__": 2849 + "__id__": 2894 }, "_contentSize": { "__type__": "cc.Size", @@ -64324,11 +65362,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2847 + "__id__": 2892 }, "_enabled": true, "__prefab": { - "__id__": 2851 + "__id__": 2896 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64382,21 +65420,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2830 + "__id__": 2875 }, "_children": [ { - "__id__": 2854 + "__id__": 2899 } ], "_active": true, "_components": [ { - "__id__": 2866 + "__id__": 2911 } ], "_prefab": { - "__id__": 2868 + "__id__": 2913 }, "_lpos": { "__type__": "cc.Vec3", @@ -64433,24 +65471,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2853 + "__id__": 2898 }, "_children": [ { - "__id__": 2855 + "__id__": 2900 } ], "_active": true, "_components": [ { - "__id__": 2861 + "__id__": 2906 }, { - "__id__": 2863 + "__id__": 2908 } ], "_prefab": { - "__id__": 2865 + "__id__": 2910 }, "_lpos": { "__type__": "cc.Vec3", @@ -64487,20 +65525,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2854 + "__id__": 2899 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2856 + "__id__": 2901 }, { - "__id__": 2858 + "__id__": 2903 } ], "_prefab": { - "__id__": 2860 + "__id__": 2905 }, "_lpos": { "__type__": "cc.Vec3", @@ -64537,11 +65575,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2855 + "__id__": 2900 }, "_enabled": true, "__prefab": { - "__id__": 2857 + "__id__": 2902 }, "_contentSize": { "__type__": "cc.Size", @@ -64565,11 +65603,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2855 + "__id__": 2900 }, "_enabled": true, "__prefab": { - "__id__": 2859 + "__id__": 2904 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64623,11 +65661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2854 + "__id__": 2899 }, "_enabled": true, "__prefab": { - "__id__": 2862 + "__id__": 2907 }, "_contentSize": { "__type__": "cc.Size", @@ -64651,11 +65689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2854 + "__id__": 2899 }, "_enabled": true, "__prefab": { - "__id__": 2864 + "__id__": 2909 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64709,11 +65747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2853 + "__id__": 2898 }, "_enabled": true, "__prefab": { - "__id__": 2867 + "__id__": 2912 }, "_contentSize": { "__type__": "cc.Size", @@ -64750,24 +65788,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2830 + "__id__": 2875 }, "_children": [ { - "__id__": 2870 + "__id__": 2915 } ], "_active": true, "_components": [ { - "__id__": 2876 + "__id__": 2921 }, { - "__id__": 2878 + "__id__": 2923 } ], "_prefab": { - "__id__": 2881 + "__id__": 2926 }, "_lpos": { "__type__": "cc.Vec3", @@ -64804,20 +65842,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2869 + "__id__": 2914 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2871 + "__id__": 2916 }, { - "__id__": 2873 + "__id__": 2918 } ], "_prefab": { - "__id__": 2875 + "__id__": 2920 }, "_lpos": { "__type__": "cc.Vec3", @@ -64854,11 +65892,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2870 + "__id__": 2915 }, "_enabled": true, "__prefab": { - "__id__": 2872 + "__id__": 2917 }, "_contentSize": { "__type__": "cc.Size", @@ -64882,11 +65920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2870 + "__id__": 2915 }, "_enabled": true, "__prefab": { - "__id__": 2874 + "__id__": 2919 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -64963,11 +66001,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2869 + "__id__": 2914 }, "_enabled": true, "__prefab": { - "__id__": 2877 + "__id__": 2922 }, "_contentSize": { "__type__": "cc.Size", @@ -64991,15 +66029,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2869 + "__id__": 2914 }, "_enabled": true, "__prefab": { - "__id__": 2879 + "__id__": 2924 }, "clickEvents": [ { - "__id__": 2880 + "__id__": 2925 } ], "_interactable": true, @@ -65074,11 +66112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2830 + "__id__": 2875 }, "_enabled": true, "__prefab": { - "__id__": 2883 + "__id__": 2928 }, "_contentSize": { "__type__": "cc.Size", @@ -65102,11 +66140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2830 + "__id__": 2875 }, "_enabled": true, "__prefab": { - "__id__": 2885 + "__id__": 2930 }, "_alignFlags": 4, "_target": null, @@ -65151,33 +66189,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2829 + "__id__": 2874 }, "_children": [ { - "__id__": 2888 + "__id__": 2933 }, { - "__id__": 2904 + "__id__": 2949 }, { - "__id__": 2910 + "__id__": 2955 }, { - "__id__": 2926 + "__id__": 2971 } ], "_active": true, "_components": [ { - "__id__": 2939 + "__id__": 2984 }, { - "__id__": 2941 + "__id__": 2986 } ], "_prefab": { - "__id__": 2943 + "__id__": 2988 }, "_lpos": { "__type__": "cc.Vec3", @@ -65214,24 +66252,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2887 + "__id__": 2932 }, "_children": [ { - "__id__": 2889 + "__id__": 2934 }, { - "__id__": 2895 + "__id__": 2940 } ], "_active": false, "_components": [ { - "__id__": 2901 + "__id__": 2946 } ], "_prefab": { - "__id__": 2903 + "__id__": 2948 }, "_lpos": { "__type__": "cc.Vec3", @@ -65268,20 +66306,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2888 + "__id__": 2933 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2890 + "__id__": 2935 }, { - "__id__": 2892 + "__id__": 2937 } ], "_prefab": { - "__id__": 2894 + "__id__": 2939 }, "_lpos": { "__type__": "cc.Vec3", @@ -65318,11 +66356,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2889 + "__id__": 2934 }, "_enabled": true, "__prefab": { - "__id__": 2891 + "__id__": 2936 }, "_contentSize": { "__type__": "cc.Size", @@ -65346,11 +66384,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2889 + "__id__": 2934 }, "_enabled": true, "__prefab": { - "__id__": 2893 + "__id__": 2938 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -65404,20 +66442,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2888 + "__id__": 2933 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2896 + "__id__": 2941 }, { - "__id__": 2898 + "__id__": 2943 } ], "_prefab": { - "__id__": 2900 + "__id__": 2945 }, "_lpos": { "__type__": "cc.Vec3", @@ -65454,11 +66492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2895 + "__id__": 2940 }, "_enabled": true, "__prefab": { - "__id__": 2897 + "__id__": 2942 }, "_contentSize": { "__type__": "cc.Size", @@ -65482,11 +66520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2895 + "__id__": 2940 }, "_enabled": true, "__prefab": { - "__id__": 2899 + "__id__": 2944 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -65563,11 +66601,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2888 + "__id__": 2933 }, "_enabled": true, "__prefab": { - "__id__": 2902 + "__id__": 2947 }, "_contentSize": { "__type__": "cc.Size", @@ -65604,20 +66642,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2887 + "__id__": 2932 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2905 + "__id__": 2950 }, { - "__id__": 2907 + "__id__": 2952 } ], "_prefab": { - "__id__": 2909 + "__id__": 2954 }, "_lpos": { "__type__": "cc.Vec3", @@ -65654,11 +66692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2904 + "__id__": 2949 }, "_enabled": true, "__prefab": { - "__id__": 2906 + "__id__": 2951 }, "_contentSize": { "__type__": "cc.Size", @@ -65682,11 +66720,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2904 + "__id__": 2949 }, "_enabled": true, "__prefab": { - "__id__": 2908 + "__id__": 2953 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -65740,21 +66778,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2887 + "__id__": 2932 }, "_children": [ { - "__id__": 2911 + "__id__": 2956 } ], "_active": true, "_components": [ { - "__id__": 2923 + "__id__": 2968 } ], "_prefab": { - "__id__": 2925 + "__id__": 2970 }, "_lpos": { "__type__": "cc.Vec3", @@ -65791,24 +66829,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2910 + "__id__": 2955 }, "_children": [ { - "__id__": 2912 + "__id__": 2957 } ], "_active": true, "_components": [ { - "__id__": 2918 + "__id__": 2963 }, { - "__id__": 2920 + "__id__": 2965 } ], "_prefab": { - "__id__": 2922 + "__id__": 2967 }, "_lpos": { "__type__": "cc.Vec3", @@ -65845,20 +66883,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2911 + "__id__": 2956 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2913 + "__id__": 2958 }, { - "__id__": 2915 + "__id__": 2960 } ], "_prefab": { - "__id__": 2917 + "__id__": 2962 }, "_lpos": { "__type__": "cc.Vec3", @@ -65895,11 +66933,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2912 + "__id__": 2957 }, "_enabled": true, "__prefab": { - "__id__": 2914 + "__id__": 2959 }, "_contentSize": { "__type__": "cc.Size", @@ -65923,11 +66961,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2912 + "__id__": 2957 }, "_enabled": true, "__prefab": { - "__id__": 2916 + "__id__": 2961 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -65981,11 +67019,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2911 + "__id__": 2956 }, "_enabled": true, "__prefab": { - "__id__": 2919 + "__id__": 2964 }, "_contentSize": { "__type__": "cc.Size", @@ -66009,11 +67047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2911 + "__id__": 2956 }, "_enabled": true, "__prefab": { - "__id__": 2921 + "__id__": 2966 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -66067,11 +67105,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2910 + "__id__": 2955 }, "_enabled": true, "__prefab": { - "__id__": 2924 + "__id__": 2969 }, "_contentSize": { "__type__": "cc.Size", @@ -66108,24 +67146,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2887 + "__id__": 2932 }, "_children": [ { - "__id__": 2927 + "__id__": 2972 } ], "_active": true, "_components": [ { - "__id__": 2933 + "__id__": 2978 }, { - "__id__": 2935 + "__id__": 2980 } ], "_prefab": { - "__id__": 2938 + "__id__": 2983 }, "_lpos": { "__type__": "cc.Vec3", @@ -66162,20 +67200,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2926 + "__id__": 2971 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2928 + "__id__": 2973 }, { - "__id__": 2930 + "__id__": 2975 } ], "_prefab": { - "__id__": 2932 + "__id__": 2977 }, "_lpos": { "__type__": "cc.Vec3", @@ -66212,11 +67250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2927 + "__id__": 2972 }, "_enabled": true, "__prefab": { - "__id__": 2929 + "__id__": 2974 }, "_contentSize": { "__type__": "cc.Size", @@ -66240,11 +67278,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2927 + "__id__": 2972 }, "_enabled": true, "__prefab": { - "__id__": 2931 + "__id__": 2976 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -66321,11 +67359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2926 + "__id__": 2971 }, "_enabled": true, "__prefab": { - "__id__": 2934 + "__id__": 2979 }, "_contentSize": { "__type__": "cc.Size", @@ -66349,15 +67387,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2926 + "__id__": 2971 }, "_enabled": true, "__prefab": { - "__id__": 2936 + "__id__": 2981 }, "clickEvents": [ { - "__id__": 2937 + "__id__": 2982 } ], "_interactable": true, @@ -66432,11 +67470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2887 + "__id__": 2932 }, "_enabled": true, "__prefab": { - "__id__": 2940 + "__id__": 2985 }, "_contentSize": { "__type__": "cc.Size", @@ -66460,11 +67498,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2887 + "__id__": 2932 }, "_enabled": true, "__prefab": { - "__id__": 2942 + "__id__": 2987 }, "_alignFlags": 4, "_target": null, @@ -66509,33 +67547,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2829 + "__id__": 2874 }, "_children": [ { - "__id__": 2945 + "__id__": 2990 }, { - "__id__": 2961 + "__id__": 3006 }, { - "__id__": 2967 + "__id__": 3012 }, { - "__id__": 2983 + "__id__": 3028 } ], "_active": true, "_components": [ { - "__id__": 2996 + "__id__": 3041 }, { - "__id__": 2998 + "__id__": 3043 } ], "_prefab": { - "__id__": 3000 + "__id__": 3045 }, "_lpos": { "__type__": "cc.Vec3", @@ -66572,24 +67610,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2944 + "__id__": 2989 }, "_children": [ { - "__id__": 2946 + "__id__": 2991 }, { - "__id__": 2952 + "__id__": 2997 } ], "_active": false, "_components": [ { - "__id__": 2958 + "__id__": 3003 } ], "_prefab": { - "__id__": 2960 + "__id__": 3005 }, "_lpos": { "__type__": "cc.Vec3", @@ -66626,20 +67664,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2945 + "__id__": 2990 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2947 + "__id__": 2992 }, { - "__id__": 2949 + "__id__": 2994 } ], "_prefab": { - "__id__": 2951 + "__id__": 2996 }, "_lpos": { "__type__": "cc.Vec3", @@ -66676,11 +67714,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2946 + "__id__": 2991 }, "_enabled": true, "__prefab": { - "__id__": 2948 + "__id__": 2993 }, "_contentSize": { "__type__": "cc.Size", @@ -66704,11 +67742,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2946 + "__id__": 2991 }, "_enabled": true, "__prefab": { - "__id__": 2950 + "__id__": 2995 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -66762,20 +67800,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2945 + "__id__": 2990 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2953 + "__id__": 2998 }, { - "__id__": 2955 + "__id__": 3000 } ], "_prefab": { - "__id__": 2957 + "__id__": 3002 }, "_lpos": { "__type__": "cc.Vec3", @@ -66812,11 +67850,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2952 + "__id__": 2997 }, "_enabled": true, "__prefab": { - "__id__": 2954 + "__id__": 2999 }, "_contentSize": { "__type__": "cc.Size", @@ -66840,11 +67878,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2952 + "__id__": 2997 }, "_enabled": true, "__prefab": { - "__id__": 2956 + "__id__": 3001 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -66921,11 +67959,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2945 + "__id__": 2990 }, "_enabled": true, "__prefab": { - "__id__": 2959 + "__id__": 3004 }, "_contentSize": { "__type__": "cc.Size", @@ -66962,20 +68000,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2944 + "__id__": 2989 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2962 + "__id__": 3007 }, { - "__id__": 2964 + "__id__": 3009 } ], "_prefab": { - "__id__": 2966 + "__id__": 3011 }, "_lpos": { "__type__": "cc.Vec3", @@ -67012,11 +68050,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2961 + "__id__": 3006 }, "_enabled": true, "__prefab": { - "__id__": 2963 + "__id__": 3008 }, "_contentSize": { "__type__": "cc.Size", @@ -67040,11 +68078,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2961 + "__id__": 3006 }, "_enabled": true, "__prefab": { - "__id__": 2965 + "__id__": 3010 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -67098,21 +68136,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2944 + "__id__": 2989 }, "_children": [ { - "__id__": 2968 + "__id__": 3013 } ], "_active": true, "_components": [ { - "__id__": 2980 + "__id__": 3025 } ], "_prefab": { - "__id__": 2982 + "__id__": 3027 }, "_lpos": { "__type__": "cc.Vec3", @@ -67149,24 +68187,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2967 + "__id__": 3012 }, "_children": [ { - "__id__": 2969 + "__id__": 3014 } ], "_active": true, "_components": [ { - "__id__": 2975 + "__id__": 3020 }, { - "__id__": 2977 + "__id__": 3022 } ], "_prefab": { - "__id__": 2979 + "__id__": 3024 }, "_lpos": { "__type__": "cc.Vec3", @@ -67203,20 +68241,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2968 + "__id__": 3013 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2970 + "__id__": 3015 }, { - "__id__": 2972 + "__id__": 3017 } ], "_prefab": { - "__id__": 2974 + "__id__": 3019 }, "_lpos": { "__type__": "cc.Vec3", @@ -67253,11 +68291,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2969 + "__id__": 3014 }, "_enabled": true, "__prefab": { - "__id__": 2971 + "__id__": 3016 }, "_contentSize": { "__type__": "cc.Size", @@ -67281,11 +68319,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2969 + "__id__": 3014 }, "_enabled": true, "__prefab": { - "__id__": 2973 + "__id__": 3018 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -67339,11 +68377,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2968 + "__id__": 3013 }, "_enabled": true, "__prefab": { - "__id__": 2976 + "__id__": 3021 }, "_contentSize": { "__type__": "cc.Size", @@ -67367,11 +68405,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2968 + "__id__": 3013 }, "_enabled": true, "__prefab": { - "__id__": 2978 + "__id__": 3023 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -67425,11 +68463,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2967 + "__id__": 3012 }, "_enabled": true, "__prefab": { - "__id__": 2981 + "__id__": 3026 }, "_contentSize": { "__type__": "cc.Size", @@ -67466,24 +68504,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2944 + "__id__": 2989 }, "_children": [ { - "__id__": 2984 + "__id__": 3029 } ], "_active": true, "_components": [ { - "__id__": 2990 + "__id__": 3035 }, { - "__id__": 2992 + "__id__": 3037 } ], "_prefab": { - "__id__": 2995 + "__id__": 3040 }, "_lpos": { "__type__": "cc.Vec3", @@ -67520,20 +68558,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2983 + "__id__": 3028 }, "_children": [], "_active": true, "_components": [ { - "__id__": 2985 + "__id__": 3030 }, { - "__id__": 2987 + "__id__": 3032 } ], "_prefab": { - "__id__": 2989 + "__id__": 3034 }, "_lpos": { "__type__": "cc.Vec3", @@ -67570,11 +68608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2984 + "__id__": 3029 }, "_enabled": true, "__prefab": { - "__id__": 2986 + "__id__": 3031 }, "_contentSize": { "__type__": "cc.Size", @@ -67598,11 +68636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2984 + "__id__": 3029 }, "_enabled": true, "__prefab": { - "__id__": 2988 + "__id__": 3033 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -67679,11 +68717,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2983 + "__id__": 3028 }, "_enabled": true, "__prefab": { - "__id__": 2991 + "__id__": 3036 }, "_contentSize": { "__type__": "cc.Size", @@ -67707,15 +68745,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2983 + "__id__": 3028 }, "_enabled": true, "__prefab": { - "__id__": 2993 + "__id__": 3038 }, "clickEvents": [ { - "__id__": 2994 + "__id__": 3039 } ], "_interactable": true, @@ -67790,11 +68828,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2944 + "__id__": 2989 }, "_enabled": true, "__prefab": { - "__id__": 2997 + "__id__": 3042 }, "_contentSize": { "__type__": "cc.Size", @@ -67818,11 +68856,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2944 + "__id__": 2989 }, "_enabled": true, "__prefab": { - "__id__": 2999 + "__id__": 3044 }, "_alignFlags": 4, "_target": null, @@ -67867,11 +68905,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2829 + "__id__": 2874 }, "_enabled": true, "__prefab": { - "__id__": 3002 + "__id__": 3047 }, "_contentSize": { "__type__": "cc.Size", @@ -67895,11 +68933,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2829 + "__id__": 2874 }, "_enabled": true, "__prefab": { - "__id__": 3004 + "__id__": 3049 }, "_alignFlags": 42, "_target": null, @@ -67931,11 +68969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2829 + "__id__": 2874 }, "_enabled": false, "__prefab": { - "__id__": 3006 + "__id__": 3051 }, "_resizeMode": 2, "_layoutType": 1, @@ -67982,33 +69020,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 2606 + "__id__": 2651 }, "_children": [ { - "__id__": 3009 + "__id__": 3054 }, { - "__id__": 3023 + "__id__": 3068 }, { - "__id__": 3037 + "__id__": 3082 } ], "_active": true, "_components": [ { - "__id__": 3051 + "__id__": 3096 }, { - "__id__": 3053 + "__id__": 3098 }, { - "__id__": 3055 + "__id__": 3100 } ], "_prefab": { - "__id__": 3057 + "__id__": 3102 }, "_lpos": { "__type__": "cc.Vec3", @@ -68045,24 +69083,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3008 + "__id__": 3053 }, "_children": [ { - "__id__": 3010 + "__id__": 3055 } ], "_active": false, "_components": [ { - "__id__": 3018 + "__id__": 3063 }, { - "__id__": 3020 + "__id__": 3065 } ], "_prefab": { - "__id__": 3022 + "__id__": 3067 }, "_lpos": { "__type__": "cc.Vec3", @@ -68099,23 +69137,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3009 + "__id__": 3054 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3011 + "__id__": 3056 }, { - "__id__": 3013 + "__id__": 3058 }, { - "__id__": 3015 + "__id__": 3060 } ], "_prefab": { - "__id__": 3017 + "__id__": 3062 }, "_lpos": { "__type__": "cc.Vec3", @@ -68152,11 +69190,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3010 + "__id__": 3055 }, "_enabled": true, "__prefab": { - "__id__": 3012 + "__id__": 3057 }, "_contentSize": { "__type__": "cc.Size", @@ -68180,11 +69218,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3010 + "__id__": 3055 }, "_enabled": true, "__prefab": { - "__id__": 3014 + "__id__": 3059 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -68248,11 +69286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3010 + "__id__": 3055 }, "_enabled": true, "__prefab": { - "__id__": 3016 + "__id__": 3061 }, "_alignFlags": 40, "_target": null, @@ -68297,11 +69335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3009 + "__id__": 3054 }, "_enabled": true, "__prefab": { - "__id__": 3019 + "__id__": 3064 }, "_contentSize": { "__type__": "cc.Size", @@ -68325,11 +69363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3009 + "__id__": 3054 }, "_enabled": true, "__prefab": { - "__id__": 3021 + "__id__": 3066 }, "_alignFlags": 40, "_target": null, @@ -68374,24 +69412,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3008 + "__id__": 3053 }, "_children": [ { - "__id__": 3024 + "__id__": 3069 } ], "_active": true, "_components": [ { - "__id__": 3032 + "__id__": 3077 }, { - "__id__": 3034 + "__id__": 3079 } ], "_prefab": { - "__id__": 3036 + "__id__": 3081 }, "_lpos": { "__type__": "cc.Vec3", @@ -68428,23 +69466,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3023 + "__id__": 3068 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3025 + "__id__": 3070 }, { - "__id__": 3027 + "__id__": 3072 }, { - "__id__": 3029 + "__id__": 3074 } ], "_prefab": { - "__id__": 3031 + "__id__": 3076 }, "_lpos": { "__type__": "cc.Vec3", @@ -68481,11 +69519,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3024 + "__id__": 3069 }, "_enabled": true, "__prefab": { - "__id__": 3026 + "__id__": 3071 }, "_contentSize": { "__type__": "cc.Size", @@ -68509,11 +69547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3024 + "__id__": 3069 }, "_enabled": true, "__prefab": { - "__id__": 3028 + "__id__": 3073 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -68577,11 +69615,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3024 + "__id__": 3069 }, "_enabled": true, "__prefab": { - "__id__": 3030 + "__id__": 3075 }, "_alignFlags": 40, "_target": null, @@ -68626,11 +69664,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3023 + "__id__": 3068 }, "_enabled": true, "__prefab": { - "__id__": 3033 + "__id__": 3078 }, "_contentSize": { "__type__": "cc.Size", @@ -68654,11 +69692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3023 + "__id__": 3068 }, "_enabled": true, "__prefab": { - "__id__": 3035 + "__id__": 3080 }, "_alignFlags": 40, "_target": null, @@ -68703,24 +69741,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3008 + "__id__": 3053 }, "_children": [ { - "__id__": 3038 + "__id__": 3083 } ], "_active": true, "_components": [ { - "__id__": 3046 + "__id__": 3091 }, { - "__id__": 3048 + "__id__": 3093 } ], "_prefab": { - "__id__": 3050 + "__id__": 3095 }, "_lpos": { "__type__": "cc.Vec3", @@ -68757,23 +69795,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3037 + "__id__": 3082 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3039 + "__id__": 3084 }, { - "__id__": 3041 + "__id__": 3086 }, { - "__id__": 3043 + "__id__": 3088 } ], "_prefab": { - "__id__": 3045 + "__id__": 3090 }, "_lpos": { "__type__": "cc.Vec3", @@ -68810,11 +69848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3038 + "__id__": 3083 }, "_enabled": true, "__prefab": { - "__id__": 3040 + "__id__": 3085 }, "_contentSize": { "__type__": "cc.Size", @@ -68838,11 +69876,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3038 + "__id__": 3083 }, "_enabled": true, "__prefab": { - "__id__": 3042 + "__id__": 3087 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -68906,11 +69944,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3038 + "__id__": 3083 }, "_enabled": true, "__prefab": { - "__id__": 3044 + "__id__": 3089 }, "_alignFlags": 40, "_target": null, @@ -68955,11 +69993,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3037 + "__id__": 3082 }, "_enabled": true, "__prefab": { - "__id__": 3047 + "__id__": 3092 }, "_contentSize": { "__type__": "cc.Size", @@ -68983,11 +70021,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3037 + "__id__": 3082 }, "_enabled": true, "__prefab": { - "__id__": 3049 + "__id__": 3094 }, "_alignFlags": 40, "_target": null, @@ -69032,11 +70070,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3008 + "__id__": 3053 }, "_enabled": true, "__prefab": { - "__id__": 3052 + "__id__": 3097 }, "_contentSize": { "__type__": "cc.Size", @@ -69060,11 +70098,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3008 + "__id__": 3053 }, "_enabled": true, "__prefab": { - "__id__": 3054 + "__id__": 3099 }, "_alignFlags": 42, "_target": null, @@ -69096,11 +70134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3008 + "__id__": 3053 }, "_enabled": true, "__prefab": { - "__id__": 3056 + "__id__": 3101 }, "_resizeMode": 0, "_layoutType": 2, @@ -69147,11 +70185,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2606 + "__id__": 2651 }, "_enabled": true, "__prefab": { - "__id__": 3059 + "__id__": 3104 }, "_contentSize": { "__type__": "cc.Size", @@ -69175,11 +70213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2606 + "__id__": 2651 }, "_enabled": true, "__prefab": { - "__id__": 3061 + "__id__": 3106 }, "_alignFlags": 45, "_target": null, @@ -69228,20 +70266,20 @@ }, "_children": [ { - "__id__": 3064 + "__id__": 3109 } ], "_active": true, "_components": [ { - "__id__": 3072 + "__id__": 3117 }, { - "__id__": 3074 + "__id__": 3119 } ], "_prefab": { - "__id__": 3076 + "__id__": 3121 }, "_lpos": { "__type__": "cc.Vec3", @@ -69278,23 +70316,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3063 + "__id__": 3108 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3065 + "__id__": 3110 }, { - "__id__": 3067 + "__id__": 3112 }, { - "__id__": 3069 + "__id__": 3114 } ], "_prefab": { - "__id__": 3071 + "__id__": 3116 }, "_lpos": { "__type__": "cc.Vec3", @@ -69331,11 +70369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3064 + "__id__": 3109 }, "_enabled": true, "__prefab": { - "__id__": 3066 + "__id__": 3111 }, "_contentSize": { "__type__": "cc.Size", @@ -69359,11 +70397,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3064 + "__id__": 3109 }, "_enabled": true, "__prefab": { - "__id__": 3068 + "__id__": 3113 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -69427,11 +70465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3064 + "__id__": 3109 }, "_enabled": true, "__prefab": { - "__id__": 3070 + "__id__": 3115 }, "templateMode": false, "watchPath": "data.mission_data.current_wave", @@ -69462,11 +70500,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3063 + "__id__": 3108 }, "_enabled": true, "__prefab": { - "__id__": 3073 + "__id__": 3118 }, "_contentSize": { "__type__": "cc.Size", @@ -69490,11 +70528,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3063 + "__id__": 3108 }, "_enabled": true, "__prefab": { - "__id__": 3075 + "__id__": 3120 }, "_alignFlags": 17, "_target": null, @@ -69543,7 +70581,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3078 + "__id__": 3123 }, "_contentSize": { "__type__": "cc.Size", @@ -69571,7 +70609,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3080 + "__id__": 3125 }, "_alignFlags": 21, "_target": null, @@ -69607,7 +70645,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3082 + "__id__": 3127 }, "_id": "" }, @@ -69625,7 +70663,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3084 + "__id__": 3129 }, "_id": "" }, @@ -69643,9 +70681,8 @@ }, "_enabled": true, "__prefab": { - "__id__": 3086 + "__id__": 3131 }, - "useRogueMode": true, "_id": "" }, { @@ -69675,29 +70712,29 @@ }, "_children": [ { - "__id__": 3089 + "__id__": 3134 }, { - "__id__": 3097 + "__id__": 3142 } ], "_active": false, "_components": [ { - "__id__": 3139 + "__id__": 3184 }, { - "__id__": 3141 + "__id__": 3186 }, { - "__id__": 3143 + "__id__": 3188 }, { - "__id__": 3145 + "__id__": 3190 } ], "_prefab": { - "__id__": 3147 + "__id__": 3192 }, "_lpos": { "__type__": "cc.Vec3", @@ -69734,23 +70771,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3088 + "__id__": 3133 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3090 + "__id__": 3135 }, { - "__id__": 3092 + "__id__": 3137 }, { - "__id__": 3094 + "__id__": 3139 } ], "_prefab": { - "__id__": 3096 + "__id__": 3141 }, "_lpos": { "__type__": "cc.Vec3", @@ -69787,11 +70824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3089 + "__id__": 3134 }, "_enabled": true, "__prefab": { - "__id__": 3091 + "__id__": 3136 }, "_contentSize": { "__type__": "cc.Size", @@ -69815,11 +70852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3089 + "__id__": 3134 }, "_enabled": true, "__prefab": { - "__id__": 3093 + "__id__": 3138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -69860,11 +70897,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3089 + "__id__": 3134 }, "_enabled": false, "__prefab": { - "__id__": 3095 + "__id__": 3140 }, "_alignFlags": 45, "_target": null, @@ -69909,27 +70946,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3088 + "__id__": 3133 }, "_children": [ { - "__id__": 3098 + "__id__": 3143 } ], "_active": true, "_components": [ { - "__id__": 3132 + "__id__": 3177 }, { - "__id__": 3134 + "__id__": 3179 }, { - "__id__": 3136 + "__id__": 3181 } ], "_prefab": { - "__id__": 3138 + "__id__": 3183 }, "_lpos": { "__type__": "cc.Vec3", @@ -69966,33 +71003,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3097 + "__id__": 3142 }, "_children": [ { - "__id__": 3099 + "__id__": 3144 }, { - "__id__": 3105 + "__id__": 3150 }, { - "__id__": 3114 + "__id__": 3159 }, { - "__id__": 3120 + "__id__": 3165 } ], "_active": true, "_components": [ { - "__id__": 3126 + "__id__": 3171 }, { - "__id__": 3128 + "__id__": 3173 } ], "_prefab": { - "__id__": 3131 + "__id__": 3176 }, "_lpos": { "__type__": "cc.Vec3", @@ -70029,20 +71066,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3098 + "__id__": 3143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3100 + "__id__": 3145 }, { - "__id__": 3102 + "__id__": 3147 } ], "_prefab": { - "__id__": 3104 + "__id__": 3149 }, "_lpos": { "__type__": "cc.Vec3", @@ -70079,11 +71116,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3099 + "__id__": 3144 }, "_enabled": true, "__prefab": { - "__id__": 3101 + "__id__": 3146 }, "_contentSize": { "__type__": "cc.Size", @@ -70107,11 +71144,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3099 + "__id__": 3144 }, "_enabled": true, "__prefab": { - "__id__": 3103 + "__id__": 3148 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -70163,17 +71200,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 3098 + "__id__": 3143 }, "_prefab": { - "__id__": 3106 + "__id__": 3151 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 3105 + "__id__": 3150 }, "asset": { "__uuid__": "915a4408-90ea-4c30-9974-05d96c0c27f1", @@ -70181,7 +71218,7 @@ }, "fileId": "c46/YsCPVOJYA4mWEpNYRx", "instance": { - "__id__": 3107 + "__id__": 3152 }, "targetOverrides": null }, @@ -70195,19 +71232,19 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 3108 + "__id__": 3153 }, { - "__id__": 3110 + "__id__": 3155 }, { - "__id__": 3111 + "__id__": 3156 }, { - "__id__": 3112 + "__id__": 3157 }, { - "__id__": 3113 + "__id__": 3158 } ], "removedComponents": [] @@ -70215,7 +71252,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 3109 + "__id__": 3154 }, "propertyPath": [ "_name" @@ -70231,7 +71268,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 3109 + "__id__": 3154 }, "propertyPath": [ "_lpos" @@ -70246,7 +71283,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 3109 + "__id__": 3154 }, "propertyPath": [ "_lrot" @@ -70262,7 +71299,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 3109 + "__id__": 3154 }, "propertyPath": [ "_euler" @@ -70277,7 +71314,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 3109 + "__id__": 3154 }, "propertyPath": [ "_active" @@ -70290,20 +71327,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3098 + "__id__": 3143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3115 + "__id__": 3160 }, { - "__id__": 3117 + "__id__": 3162 } ], "_prefab": { - "__id__": 3119 + "__id__": 3164 }, "_lpos": { "__type__": "cc.Vec3", @@ -70340,11 +71377,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3114 + "__id__": 3159 }, "_enabled": true, "__prefab": { - "__id__": 3116 + "__id__": 3161 }, "_contentSize": { "__type__": "cc.Size", @@ -70368,11 +71405,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3114 + "__id__": 3159 }, "_enabled": true, "__prefab": { - "__id__": 3118 + "__id__": 3163 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -70426,20 +71463,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3098 + "__id__": 3143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3121 + "__id__": 3166 }, { - "__id__": 3123 + "__id__": 3168 } ], "_prefab": { - "__id__": 3125 + "__id__": 3170 }, "_lpos": { "__type__": "cc.Vec3", @@ -70476,11 +71513,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3120 + "__id__": 3165 }, "_enabled": true, "__prefab": { - "__id__": 3122 + "__id__": 3167 }, "_contentSize": { "__type__": "cc.Size", @@ -70504,11 +71541,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3120 + "__id__": 3165 }, "_enabled": true, "__prefab": { - "__id__": 3124 + "__id__": 3169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -70585,11 +71622,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3098 + "__id__": 3143 }, "_enabled": true, "__prefab": { - "__id__": 3127 + "__id__": 3172 }, "_contentSize": { "__type__": "cc.Size", @@ -70613,15 +71650,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3098 + "__id__": 3143 }, "_enabled": true, "__prefab": { - "__id__": 3129 + "__id__": 3174 }, "clickEvents": [ { - "__id__": 3130 + "__id__": 3175 } ], "_interactable": true, @@ -70661,7 +71698,7 @@ "_duration": 0.1, "_zoomScale": 0.8, "_target": { - "__id__": 3098 + "__id__": 3143 }, "_id": "" }, @@ -70672,7 +71709,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 3088 + "__id__": 3133 }, "component": "", "_componentId": "11498TbVJpO6qmZ8m9k55Zx", @@ -70698,11 +71735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3097 + "__id__": 3142 }, "_enabled": true, "__prefab": { - "__id__": 3133 + "__id__": 3178 }, "_contentSize": { "__type__": "cc.Size", @@ -70726,11 +71763,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3097 + "__id__": 3142 }, "_enabled": false, "__prefab": { - "__id__": 3135 + "__id__": 3180 }, "_resizeMode": 0, "_layoutType": 0, @@ -70764,11 +71801,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3097 + "__id__": 3142 }, "_enabled": true, "__prefab": { - "__id__": 3137 + "__id__": 3182 }, "_alignFlags": 18, "_target": null, @@ -70813,11 +71850,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3088 + "__id__": 3133 }, "_enabled": true, "__prefab": { - "__id__": 3140 + "__id__": 3185 }, "_contentSize": { "__type__": "cc.Size", @@ -70841,11 +71878,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3088 + "__id__": 3133 }, "_enabled": true, "__prefab": { - "__id__": 3142 + "__id__": 3187 }, "_alignFlags": 20, "_target": null, @@ -70877,11 +71914,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3088 + "__id__": 3133 }, "_enabled": true, "__prefab": { - "__id__": 3144 + "__id__": 3189 }, "_id": "" }, @@ -70895,11 +71932,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3088 + "__id__": 3133 }, "_enabled": true, "__prefab": { - "__id__": 3146 + "__id__": 3191 }, "_alignFlags": 45, "_target": null, @@ -70948,23 +71985,23 @@ }, "_children": [ { - "__id__": 3149 + "__id__": 3194 } ], "_active": false, "_components": [ { - "__id__": 3163 + "__id__": 3208 }, { - "__id__": 3165 + "__id__": 3210 }, { - "__id__": 3167 + "__id__": 3212 } ], "_prefab": { - "__id__": 3169 + "__id__": 3214 }, "_lpos": { "__type__": "cc.Vec3", @@ -71001,27 +72038,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3148 + "__id__": 3193 }, "_children": [ { - "__id__": 3150 + "__id__": 3195 } ], "_active": true, "_components": [ { - "__id__": 3156 + "__id__": 3201 }, { - "__id__": 3158 + "__id__": 3203 }, { - "__id__": 3160 + "__id__": 3205 } ], "_prefab": { - "__id__": 3162 + "__id__": 3207 }, "_lpos": { "__type__": "cc.Vec3", @@ -71058,20 +72095,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3149 + "__id__": 3194 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3151 + "__id__": 3196 }, { - "__id__": 3153 + "__id__": 3198 } ], "_prefab": { - "__id__": 3155 + "__id__": 3200 }, "_lpos": { "__type__": "cc.Vec3", @@ -71108,11 +72145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3150 + "__id__": 3195 }, "_enabled": true, "__prefab": { - "__id__": 3152 + "__id__": 3197 }, "_contentSize": { "__type__": "cc.Size", @@ -71136,11 +72173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3150 + "__id__": 3195 }, "_enabled": true, "__prefab": { - "__id__": 3154 + "__id__": 3199 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -71217,11 +72254,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3149 + "__id__": 3194 }, "_enabled": true, "__prefab": { - "__id__": 3157 + "__id__": 3202 }, "_contentSize": { "__type__": "cc.Size", @@ -71245,11 +72282,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3149 + "__id__": 3194 }, "_enabled": true, "__prefab": { - "__id__": 3159 + "__id__": 3204 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -71290,11 +72327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3149 + "__id__": 3194 }, "_enabled": true, "__prefab": { - "__id__": 3161 + "__id__": 3206 }, "_alignFlags": 45, "_target": null, @@ -71339,11 +72376,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3148 + "__id__": 3193 }, "_enabled": true, "__prefab": { - "__id__": 3164 + "__id__": 3209 }, "_contentSize": { "__type__": "cc.Size", @@ -71367,11 +72404,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3148 + "__id__": 3193 }, "_enabled": true, "__prefab": { - "__id__": 3166 + "__id__": 3211 }, "_alignFlags": 45, "_target": null, @@ -71403,11 +72440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3148 + "__id__": 3193 }, "_enabled": true, "__prefab": { - "__id__": 3168 + "__id__": 3213 }, "_id": "" }, @@ -71438,35 +72475,35 @@ }, "_children": [ { - "__id__": 3171 + "__id__": 3216 }, { - "__id__": 3211 + "__id__": 3256 }, { - "__id__": 3251 + "__id__": 3296 }, { - "__id__": 3291 + "__id__": 3336 }, { - "__id__": 3331 + "__id__": 3376 } ], "_active": false, "_components": [ { - "__id__": 3371 + "__id__": 3416 }, { - "__id__": 3373 + "__id__": 3418 }, { - "__id__": 3375 + "__id__": 3420 } ], "_prefab": { - "__id__": 3377 + "__id__": 3422 }, "_lpos": { "__type__": "cc.Vec3", @@ -71503,33 +72540,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3170 + "__id__": 3215 }, "_children": [ { - "__id__": 3172 + "__id__": 3217 }, { - "__id__": 3178 + "__id__": 3223 }, { - "__id__": 3184 + "__id__": 3229 }, { - "__id__": 3194 + "__id__": 3239 } ], "_active": true, "_components": [ { - "__id__": 3206 + "__id__": 3251 }, { - "__id__": 3208 + "__id__": 3253 } ], "_prefab": { - "__id__": 3210 + "__id__": 3255 }, "_lpos": { "__type__": "cc.Vec3", @@ -71566,20 +72603,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3171 + "__id__": 3216 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3173 + "__id__": 3218 }, { - "__id__": 3175 + "__id__": 3220 } ], "_prefab": { - "__id__": 3177 + "__id__": 3222 }, "_lpos": { "__type__": "cc.Vec3", @@ -71616,11 +72653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3172 + "__id__": 3217 }, "_enabled": true, "__prefab": { - "__id__": 3174 + "__id__": 3219 }, "_contentSize": { "__type__": "cc.Size", @@ -71644,11 +72681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3172 + "__id__": 3217 }, "_enabled": true, "__prefab": { - "__id__": 3176 + "__id__": 3221 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -71702,20 +72739,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3171 + "__id__": 3216 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3179 + "__id__": 3224 }, { - "__id__": 3181 + "__id__": 3226 } ], "_prefab": { - "__id__": 3183 + "__id__": 3228 }, "_lpos": { "__type__": "cc.Vec3", @@ -71752,11 +72789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3178 + "__id__": 3223 }, "_enabled": true, "__prefab": { - "__id__": 3180 + "__id__": 3225 }, "_contentSize": { "__type__": "cc.Size", @@ -71780,11 +72817,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3178 + "__id__": 3223 }, "_enabled": true, "__prefab": { - "__id__": 3182 + "__id__": 3227 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -71838,26 +72875,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3171 + "__id__": 3216 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3185 + "__id__": 3230 }, { - "__id__": 3187 + "__id__": 3232 }, { - "__id__": 3189 + "__id__": 3234 }, { - "__id__": 3191 + "__id__": 3236 } ], "_prefab": { - "__id__": 3193 + "__id__": 3238 }, "_lpos": { "__type__": "cc.Vec3", @@ -71894,11 +72931,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3184 + "__id__": 3229 }, "_enabled": true, "__prefab": { - "__id__": 3186 + "__id__": 3231 }, "_contentSize": { "__type__": "cc.Size", @@ -71922,11 +72959,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3184 + "__id__": 3229 }, "_enabled": true, "__prefab": { - "__id__": 3188 + "__id__": 3233 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -71990,11 +73027,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3184 + "__id__": 3229 }, "_enabled": true, "__prefab": { - "__id__": 3190 + "__id__": 3235 }, "_id": "" }, @@ -72008,11 +73045,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3184 + "__id__": 3229 }, "_enabled": true, "__prefab": { - "__id__": 3192 + "__id__": 3237 }, "templateMode": true, "watchPath": "data.role.gold", @@ -72045,24 +73082,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3171 + "__id__": 3216 }, "_children": [ { - "__id__": 3195 + "__id__": 3240 } ], "_active": false, "_components": [ { - "__id__": 3201 + "__id__": 3246 }, { - "__id__": 3203 + "__id__": 3248 } ], "_prefab": { - "__id__": 3205 + "__id__": 3250 }, "_lpos": { "__type__": "cc.Vec3", @@ -72099,20 +73136,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3194 + "__id__": 3239 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3196 + "__id__": 3241 }, { - "__id__": 3198 + "__id__": 3243 } ], "_prefab": { - "__id__": 3200 + "__id__": 3245 }, "_lpos": { "__type__": "cc.Vec3", @@ -72149,11 +73186,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3195 + "__id__": 3240 }, "_enabled": true, "__prefab": { - "__id__": 3197 + "__id__": 3242 }, "_contentSize": { "__type__": "cc.Size", @@ -72177,11 +73214,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3195 + "__id__": 3240 }, "_enabled": true, "__prefab": { - "__id__": 3199 + "__id__": 3244 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -72235,11 +73272,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3194 + "__id__": 3239 }, "_enabled": true, "__prefab": { - "__id__": 3202 + "__id__": 3247 }, "_contentSize": { "__type__": "cc.Size", @@ -72263,11 +73300,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3194 + "__id__": 3239 }, "_enabled": true, "__prefab": { - "__id__": 3204 + "__id__": 3249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -72321,11 +73358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3171 + "__id__": 3216 }, "_enabled": true, "__prefab": { - "__id__": 3207 + "__id__": 3252 }, "_contentSize": { "__type__": "cc.Size", @@ -72349,11 +73386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3171 + "__id__": 3216 }, "_enabled": true, "__prefab": { - "__id__": 3209 + "__id__": 3254 }, "_alignFlags": 12, "_target": null, @@ -72398,33 +73435,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3170 + "__id__": 3215 }, "_children": [ { - "__id__": 3212 + "__id__": 3257 }, { - "__id__": 3218 + "__id__": 3263 }, { - "__id__": 3224 + "__id__": 3269 }, { - "__id__": 3234 + "__id__": 3279 } ], "_active": false, "_components": [ { - "__id__": 3246 + "__id__": 3291 }, { - "__id__": 3248 + "__id__": 3293 } ], "_prefab": { - "__id__": 3250 + "__id__": 3295 }, "_lpos": { "__type__": "cc.Vec3", @@ -72461,20 +73498,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3211 + "__id__": 3256 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3213 + "__id__": 3258 }, { - "__id__": 3215 + "__id__": 3260 } ], "_prefab": { - "__id__": 3217 + "__id__": 3262 }, "_lpos": { "__type__": "cc.Vec3", @@ -72511,11 +73548,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3212 + "__id__": 3257 }, "_enabled": true, "__prefab": { - "__id__": 3214 + "__id__": 3259 }, "_contentSize": { "__type__": "cc.Size", @@ -72539,11 +73576,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3212 + "__id__": 3257 }, "_enabled": true, "__prefab": { - "__id__": 3216 + "__id__": 3261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -72597,20 +73634,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3211 + "__id__": 3256 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3219 + "__id__": 3264 }, { - "__id__": 3221 + "__id__": 3266 } ], "_prefab": { - "__id__": 3223 + "__id__": 3268 }, "_lpos": { "__type__": "cc.Vec3", @@ -72647,11 +73684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3218 + "__id__": 3263 }, "_enabled": true, "__prefab": { - "__id__": 3220 + "__id__": 3265 }, "_contentSize": { "__type__": "cc.Size", @@ -72675,11 +73712,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3218 + "__id__": 3263 }, "_enabled": true, "__prefab": { - "__id__": 3222 + "__id__": 3267 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -72733,26 +73770,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3211 + "__id__": 3256 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3225 + "__id__": 3270 }, { - "__id__": 3227 + "__id__": 3272 }, { - "__id__": 3229 + "__id__": 3274 }, { - "__id__": 3231 + "__id__": 3276 } ], "_prefab": { - "__id__": 3233 + "__id__": 3278 }, "_lpos": { "__type__": "cc.Vec3", @@ -72789,11 +73826,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3224 + "__id__": 3269 }, "_enabled": true, "__prefab": { - "__id__": 3226 + "__id__": 3271 }, "_contentSize": { "__type__": "cc.Size", @@ -72817,11 +73854,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3224 + "__id__": 3269 }, "_enabled": true, "__prefab": { - "__id__": 3228 + "__id__": 3273 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -72885,11 +73922,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3224 + "__id__": 3269 }, "_enabled": true, "__prefab": { - "__id__": 3230 + "__id__": 3275 }, "_id": "" }, @@ -72903,11 +73940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3224 + "__id__": 3269 }, "_enabled": true, "__prefab": { - "__id__": 3232 + "__id__": 3277 }, "templateMode": true, "watchPath": "data.role.gold", @@ -72940,24 +73977,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3211 + "__id__": 3256 }, "_children": [ { - "__id__": 3235 + "__id__": 3280 } ], "_active": false, "_components": [ { - "__id__": 3241 + "__id__": 3286 }, { - "__id__": 3243 + "__id__": 3288 } ], "_prefab": { - "__id__": 3245 + "__id__": 3290 }, "_lpos": { "__type__": "cc.Vec3", @@ -72994,20 +74031,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3234 + "__id__": 3279 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3236 + "__id__": 3281 }, { - "__id__": 3238 + "__id__": 3283 } ], "_prefab": { - "__id__": 3240 + "__id__": 3285 }, "_lpos": { "__type__": "cc.Vec3", @@ -73044,11 +74081,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3235 + "__id__": 3280 }, "_enabled": true, "__prefab": { - "__id__": 3237 + "__id__": 3282 }, "_contentSize": { "__type__": "cc.Size", @@ -73072,11 +74109,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3235 + "__id__": 3280 }, "_enabled": true, "__prefab": { - "__id__": 3239 + "__id__": 3284 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -73130,11 +74167,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3234 + "__id__": 3279 }, "_enabled": true, "__prefab": { - "__id__": 3242 + "__id__": 3287 }, "_contentSize": { "__type__": "cc.Size", @@ -73158,11 +74195,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3234 + "__id__": 3279 }, "_enabled": true, "__prefab": { - "__id__": 3244 + "__id__": 3289 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -73216,11 +74253,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3211 + "__id__": 3256 }, "_enabled": true, "__prefab": { - "__id__": 3247 + "__id__": 3292 }, "_contentSize": { "__type__": "cc.Size", @@ -73244,11 +74281,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3211 + "__id__": 3256 }, "_enabled": true, "__prefab": { - "__id__": 3249 + "__id__": 3294 }, "_alignFlags": 12, "_target": null, @@ -73293,33 +74330,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3170 + "__id__": 3215 }, "_children": [ { - "__id__": 3252 + "__id__": 3297 }, { - "__id__": 3258 + "__id__": 3303 }, { - "__id__": 3264 + "__id__": 3309 }, { - "__id__": 3274 + "__id__": 3319 } ], "_active": false, "_components": [ { - "__id__": 3286 + "__id__": 3331 }, { - "__id__": 3288 + "__id__": 3333 } ], "_prefab": { - "__id__": 3290 + "__id__": 3335 }, "_lpos": { "__type__": "cc.Vec3", @@ -73356,20 +74393,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3251 + "__id__": 3296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3253 + "__id__": 3298 }, { - "__id__": 3255 + "__id__": 3300 } ], "_prefab": { - "__id__": 3257 + "__id__": 3302 }, "_lpos": { "__type__": "cc.Vec3", @@ -73406,11 +74443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3252 + "__id__": 3297 }, "_enabled": true, "__prefab": { - "__id__": 3254 + "__id__": 3299 }, "_contentSize": { "__type__": "cc.Size", @@ -73434,11 +74471,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3252 + "__id__": 3297 }, "_enabled": true, "__prefab": { - "__id__": 3256 + "__id__": 3301 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -73492,20 +74529,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3251 + "__id__": 3296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3259 + "__id__": 3304 }, { - "__id__": 3261 + "__id__": 3306 } ], "_prefab": { - "__id__": 3263 + "__id__": 3308 }, "_lpos": { "__type__": "cc.Vec3", @@ -73542,11 +74579,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3258 + "__id__": 3303 }, "_enabled": true, "__prefab": { - "__id__": 3260 + "__id__": 3305 }, "_contentSize": { "__type__": "cc.Size", @@ -73570,11 +74607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3258 + "__id__": 3303 }, "_enabled": true, "__prefab": { - "__id__": 3262 + "__id__": 3307 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -73628,26 +74665,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3251 + "__id__": 3296 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3265 + "__id__": 3310 }, { - "__id__": 3267 + "__id__": 3312 }, { - "__id__": 3269 + "__id__": 3314 }, { - "__id__": 3271 + "__id__": 3316 } ], "_prefab": { - "__id__": 3273 + "__id__": 3318 }, "_lpos": { "__type__": "cc.Vec3", @@ -73684,11 +74721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3264 + "__id__": 3309 }, "_enabled": true, "__prefab": { - "__id__": 3266 + "__id__": 3311 }, "_contentSize": { "__type__": "cc.Size", @@ -73712,11 +74749,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3264 + "__id__": 3309 }, "_enabled": true, "__prefab": { - "__id__": 3268 + "__id__": 3313 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -73780,11 +74817,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3264 + "__id__": 3309 }, "_enabled": true, "__prefab": { - "__id__": 3270 + "__id__": 3315 }, "_id": "" }, @@ -73798,11 +74835,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3264 + "__id__": 3309 }, "_enabled": true, "__prefab": { - "__id__": 3272 + "__id__": 3317 }, "templateMode": true, "watchPath": "data.role.gold", @@ -73835,24 +74872,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3251 + "__id__": 3296 }, "_children": [ { - "__id__": 3275 + "__id__": 3320 } ], "_active": false, "_components": [ { - "__id__": 3281 + "__id__": 3326 }, { - "__id__": 3283 + "__id__": 3328 } ], "_prefab": { - "__id__": 3285 + "__id__": 3330 }, "_lpos": { "__type__": "cc.Vec3", @@ -73889,20 +74926,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3274 + "__id__": 3319 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3276 + "__id__": 3321 }, { - "__id__": 3278 + "__id__": 3323 } ], "_prefab": { - "__id__": 3280 + "__id__": 3325 }, "_lpos": { "__type__": "cc.Vec3", @@ -73939,11 +74976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3275 + "__id__": 3320 }, "_enabled": true, "__prefab": { - "__id__": 3277 + "__id__": 3322 }, "_contentSize": { "__type__": "cc.Size", @@ -73967,11 +75004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3275 + "__id__": 3320 }, "_enabled": true, "__prefab": { - "__id__": 3279 + "__id__": 3324 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74025,11 +75062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3274 + "__id__": 3319 }, "_enabled": true, "__prefab": { - "__id__": 3282 + "__id__": 3327 }, "_contentSize": { "__type__": "cc.Size", @@ -74053,11 +75090,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3274 + "__id__": 3319 }, "_enabled": true, "__prefab": { - "__id__": 3284 + "__id__": 3329 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74111,11 +75148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3251 + "__id__": 3296 }, "_enabled": true, "__prefab": { - "__id__": 3287 + "__id__": 3332 }, "_contentSize": { "__type__": "cc.Size", @@ -74139,11 +75176,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3251 + "__id__": 3296 }, "_enabled": true, "__prefab": { - "__id__": 3289 + "__id__": 3334 }, "_alignFlags": 12, "_target": null, @@ -74188,33 +75225,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3170 + "__id__": 3215 }, "_children": [ { - "__id__": 3292 + "__id__": 3337 }, { - "__id__": 3298 + "__id__": 3343 }, { - "__id__": 3304 + "__id__": 3349 }, { - "__id__": 3314 + "__id__": 3359 } ], "_active": false, "_components": [ { - "__id__": 3326 + "__id__": 3371 }, { - "__id__": 3328 + "__id__": 3373 } ], "_prefab": { - "__id__": 3330 + "__id__": 3375 }, "_lpos": { "__type__": "cc.Vec3", @@ -74251,20 +75288,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3291 + "__id__": 3336 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3293 + "__id__": 3338 }, { - "__id__": 3295 + "__id__": 3340 } ], "_prefab": { - "__id__": 3297 + "__id__": 3342 }, "_lpos": { "__type__": "cc.Vec3", @@ -74301,11 +75338,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3292 + "__id__": 3337 }, "_enabled": true, "__prefab": { - "__id__": 3294 + "__id__": 3339 }, "_contentSize": { "__type__": "cc.Size", @@ -74329,11 +75366,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3292 + "__id__": 3337 }, "_enabled": true, "__prefab": { - "__id__": 3296 + "__id__": 3341 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74387,20 +75424,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3291 + "__id__": 3336 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3299 + "__id__": 3344 }, { - "__id__": 3301 + "__id__": 3346 } ], "_prefab": { - "__id__": 3303 + "__id__": 3348 }, "_lpos": { "__type__": "cc.Vec3", @@ -74437,11 +75474,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3298 + "__id__": 3343 }, "_enabled": true, "__prefab": { - "__id__": 3300 + "__id__": 3345 }, "_contentSize": { "__type__": "cc.Size", @@ -74465,11 +75502,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3298 + "__id__": 3343 }, "_enabled": true, "__prefab": { - "__id__": 3302 + "__id__": 3347 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74523,26 +75560,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3291 + "__id__": 3336 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3305 + "__id__": 3350 }, { - "__id__": 3307 + "__id__": 3352 }, { - "__id__": 3309 + "__id__": 3354 }, { - "__id__": 3311 + "__id__": 3356 } ], "_prefab": { - "__id__": 3313 + "__id__": 3358 }, "_lpos": { "__type__": "cc.Vec3", @@ -74579,11 +75616,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3304 + "__id__": 3349 }, "_enabled": true, "__prefab": { - "__id__": 3306 + "__id__": 3351 }, "_contentSize": { "__type__": "cc.Size", @@ -74607,11 +75644,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3304 + "__id__": 3349 }, "_enabled": true, "__prefab": { - "__id__": 3308 + "__id__": 3353 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74675,11 +75712,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3304 + "__id__": 3349 }, "_enabled": true, "__prefab": { - "__id__": 3310 + "__id__": 3355 }, "_id": "" }, @@ -74693,11 +75730,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3304 + "__id__": 3349 }, "_enabled": true, "__prefab": { - "__id__": 3312 + "__id__": 3357 }, "templateMode": true, "watchPath": "data.role.gold", @@ -74730,24 +75767,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3291 + "__id__": 3336 }, "_children": [ { - "__id__": 3315 + "__id__": 3360 } ], "_active": false, "_components": [ { - "__id__": 3321 + "__id__": 3366 }, { - "__id__": 3323 + "__id__": 3368 } ], "_prefab": { - "__id__": 3325 + "__id__": 3370 }, "_lpos": { "__type__": "cc.Vec3", @@ -74784,20 +75821,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3314 + "__id__": 3359 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3316 + "__id__": 3361 }, { - "__id__": 3318 + "__id__": 3363 } ], "_prefab": { - "__id__": 3320 + "__id__": 3365 }, "_lpos": { "__type__": "cc.Vec3", @@ -74834,11 +75871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3315 + "__id__": 3360 }, "_enabled": true, "__prefab": { - "__id__": 3317 + "__id__": 3362 }, "_contentSize": { "__type__": "cc.Size", @@ -74862,11 +75899,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3315 + "__id__": 3360 }, "_enabled": true, "__prefab": { - "__id__": 3319 + "__id__": 3364 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -74920,11 +75957,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3314 + "__id__": 3359 }, "_enabled": true, "__prefab": { - "__id__": 3322 + "__id__": 3367 }, "_contentSize": { "__type__": "cc.Size", @@ -74948,11 +75985,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3314 + "__id__": 3359 }, "_enabled": true, "__prefab": { - "__id__": 3324 + "__id__": 3369 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75006,11 +76043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3291 + "__id__": 3336 }, "_enabled": true, "__prefab": { - "__id__": 3327 + "__id__": 3372 }, "_contentSize": { "__type__": "cc.Size", @@ -75034,11 +76071,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3291 + "__id__": 3336 }, "_enabled": true, "__prefab": { - "__id__": 3329 + "__id__": 3374 }, "_alignFlags": 12, "_target": null, @@ -75083,33 +76120,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3170 + "__id__": 3215 }, "_children": [ { - "__id__": 3332 + "__id__": 3377 }, { - "__id__": 3338 + "__id__": 3383 }, { - "__id__": 3344 + "__id__": 3389 }, { - "__id__": 3354 + "__id__": 3399 } ], "_active": false, "_components": [ { - "__id__": 3366 + "__id__": 3411 }, { - "__id__": 3368 + "__id__": 3413 } ], "_prefab": { - "__id__": 3370 + "__id__": 3415 }, "_lpos": { "__type__": "cc.Vec3", @@ -75146,20 +76183,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3331 + "__id__": 3376 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3333 + "__id__": 3378 }, { - "__id__": 3335 + "__id__": 3380 } ], "_prefab": { - "__id__": 3337 + "__id__": 3382 }, "_lpos": { "__type__": "cc.Vec3", @@ -75196,11 +76233,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3332 + "__id__": 3377 }, "_enabled": true, "__prefab": { - "__id__": 3334 + "__id__": 3379 }, "_contentSize": { "__type__": "cc.Size", @@ -75224,11 +76261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3332 + "__id__": 3377 }, "_enabled": true, "__prefab": { - "__id__": 3336 + "__id__": 3381 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75282,20 +76319,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3331 + "__id__": 3376 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3339 + "__id__": 3384 }, { - "__id__": 3341 + "__id__": 3386 } ], "_prefab": { - "__id__": 3343 + "__id__": 3388 }, "_lpos": { "__type__": "cc.Vec3", @@ -75332,11 +76369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3338 + "__id__": 3383 }, "_enabled": true, "__prefab": { - "__id__": 3340 + "__id__": 3385 }, "_contentSize": { "__type__": "cc.Size", @@ -75360,11 +76397,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3338 + "__id__": 3383 }, "_enabled": true, "__prefab": { - "__id__": 3342 + "__id__": 3387 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75418,26 +76455,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3331 + "__id__": 3376 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3345 + "__id__": 3390 }, { - "__id__": 3347 + "__id__": 3392 }, { - "__id__": 3349 + "__id__": 3394 }, { - "__id__": 3351 + "__id__": 3396 } ], "_prefab": { - "__id__": 3353 + "__id__": 3398 }, "_lpos": { "__type__": "cc.Vec3", @@ -75474,11 +76511,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3344 + "__id__": 3389 }, "_enabled": true, "__prefab": { - "__id__": 3346 + "__id__": 3391 }, "_contentSize": { "__type__": "cc.Size", @@ -75502,11 +76539,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3344 + "__id__": 3389 }, "_enabled": true, "__prefab": { - "__id__": 3348 + "__id__": 3393 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75570,11 +76607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3344 + "__id__": 3389 }, "_enabled": true, "__prefab": { - "__id__": 3350 + "__id__": 3395 }, "_id": "" }, @@ -75588,11 +76625,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3344 + "__id__": 3389 }, "_enabled": true, "__prefab": { - "__id__": 3352 + "__id__": 3397 }, "templateMode": true, "watchPath": "data.role.gold", @@ -75625,24 +76662,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3331 + "__id__": 3376 }, "_children": [ { - "__id__": 3355 + "__id__": 3400 } ], "_active": false, "_components": [ { - "__id__": 3361 + "__id__": 3406 }, { - "__id__": 3363 + "__id__": 3408 } ], "_prefab": { - "__id__": 3365 + "__id__": 3410 }, "_lpos": { "__type__": "cc.Vec3", @@ -75679,20 +76716,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3354 + "__id__": 3399 }, "_children": [], "_active": true, "_components": [ { - "__id__": 3356 + "__id__": 3401 }, { - "__id__": 3358 + "__id__": 3403 } ], "_prefab": { - "__id__": 3360 + "__id__": 3405 }, "_lpos": { "__type__": "cc.Vec3", @@ -75729,11 +76766,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3355 + "__id__": 3400 }, "_enabled": true, "__prefab": { - "__id__": 3357 + "__id__": 3402 }, "_contentSize": { "__type__": "cc.Size", @@ -75757,11 +76794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3355 + "__id__": 3400 }, "_enabled": true, "__prefab": { - "__id__": 3359 + "__id__": 3404 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75815,11 +76852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3354 + "__id__": 3399 }, "_enabled": true, "__prefab": { - "__id__": 3362 + "__id__": 3407 }, "_contentSize": { "__type__": "cc.Size", @@ -75843,11 +76880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3354 + "__id__": 3399 }, "_enabled": true, "__prefab": { - "__id__": 3364 + "__id__": 3409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -75901,11 +76938,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3331 + "__id__": 3376 }, "_enabled": true, "__prefab": { - "__id__": 3367 + "__id__": 3412 }, "_contentSize": { "__type__": "cc.Size", @@ -75929,11 +76966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3331 + "__id__": 3376 }, "_enabled": true, "__prefab": { - "__id__": 3369 + "__id__": 3414 }, "_alignFlags": 12, "_target": null, @@ -75978,11 +77015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3170 + "__id__": 3215 }, "_enabled": true, "__prefab": { - "__id__": 3372 + "__id__": 3417 }, "_contentSize": { "__type__": "cc.Size", @@ -76006,11 +77043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3170 + "__id__": 3215 }, "_enabled": true, "__prefab": { - "__id__": 3374 + "__id__": 3419 }, "_alignFlags": 41, "_target": null, @@ -76042,11 +77079,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3170 + "__id__": 3215 }, "_enabled": true, "__prefab": { - "__id__": 3376 + "__id__": 3421 }, "_resizeMode": 0, "_layoutType": 1, @@ -76097,7 +77134,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3379 + "__id__": 3424 }, "_contentSize": { "__type__": "cc.Size", @@ -76125,7 +77162,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3381 + "__id__": 3426 }, "_alignFlags": 45, "_target": null, @@ -76161,7 +77198,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 3383 + "__id__": 3428 }, "_id": "" }, @@ -76182,28 +77219,28 @@ "targetOverrides": [], "nestedPrefabInstanceRoots": [ { - "__id__": 3105 + "__id__": 3150 }, { - "__id__": 2527 + "__id__": 2572 }, { - "__id__": 2489 + "__id__": 2534 }, { - "__id__": 2263 + "__id__": 2308 }, { - "__id__": 2220 + "__id__": 2265 }, { - "__id__": 2116 + "__id__": 2161 }, { - "__id__": 2107 + "__id__": 2152 }, { - "__id__": 2096 + "__id__": 2141 } ] } diff --git a/assets/script/game/common/config/GameEvent.ts b/assets/script/game/common/config/GameEvent.ts index 632b59b3..03e8f3a4 100644 --- a/assets/script/game/common/config/GameEvent.ts +++ b/assets/script/game/common/config/GameEvent.ts @@ -31,6 +31,7 @@ export enum GameEvent { HeroSkillSelectEnd = "HeroSkillSelectEnd", HeroSelect = "HeroSelect", EnhancementSelect = "EnhancementSelect", + CanUpdateLv = "CanUpdateLv", UseEnhancement = "UseEnhancement", MasterCalled = "MasterCalled", FightStart = "FightStart", diff --git a/assets/script/game/common/config/heroSet.ts b/assets/script/game/common/config/heroSet.ts index 0f3ab651..974c3f82 100644 --- a/assets/script/game/common/config/heroSet.ts +++ b/assets/script/game/common/config/heroSet.ts @@ -54,32 +54,28 @@ export const HQuality = { } export const MonSet = { 0:{pos:v3(390,0,0)}, - 1:{pos:v3(390,+80,0)}, - 2:{pos:v3(390,-80,0)}, - 3:{pos:v3(420,0,0)}, - 4:{pos:v3(420,+80,0)}, - 5:{pos:v3(420,-80,0)}, - 6:{pos:v3(450,0,0)}, - 7:{pos:v3(450,+80,0)}, - 8:{pos:v3(450,-80,0)}, - 9:{pos:v3(480,0,0)}, - 10:{pos:v3(480,+80,0)}, - 11:{pos:v3(480,-80,0)}, - 12:{pos:v3(510,0,0)}, - 13:{pos:v3(510,+80,0)}, - 14:{pos:v3(510,-80,0)}, - 15:{pos:v3(540,0,0)}, - 16:{pos:v3(540,+80,0)}, - 17:{pos:v3(540,-80,0)}, - 18:{pos:v3(570,0,0)}, - 19:{pos:v3(570,+80,0)}, - 20:{pos:v3(570,-80,0)}, - 21:{pos:v3(600,0,0)}, - 22:{pos:v3(600,+80,0)}, - 23:{pos:v3(600,-80,0)}, - 24:{pos:v3(630,0,0)}, - 25:{pos:v3(630,+80,0)}, - 26:{pos:v3(630,-80,0)}, + 1:{pos:v3(420,0,0)}, + 2:{pos:v3(450,0,0)}, + 3:{pos:v3(480,0,0)}, + 4:{pos:v3(510,0,0)}, + 5:{pos:v3(540,0,0)}, + 6:{pos:v3(570,0,0)}, + 7:{pos:v3(600,0,0)}, + 8:{pos:v3(630,0,0)}, + 9:{pos:v3(660,0,0)}, + 10:{pos:v3(690,0,0)}, + 11:{pos:v3(720,0,0)}, + 12:{pos:v3(750,0,0)}, + 13:{pos:v3(780,0,0)}, + 14:{pos:v3(810,0,0)}, + 15:{pos:v3(840,0,0)}, + 16:{pos:v3(870,0,0)}, + 17:{pos:v3(900,0,0)}, + 18:{pos:v3(930,0,0)}, + 19:{pos:v3(960,0,0)}, + 20:{pos:v3(990,0,0)}, + 21:{pos:v3(1020,0,0)}, + 22:{pos:v3(1050,0,0)}, } // 经验值计算函数 - 复杂递增规律 diff --git a/assets/script/game/hero/BuffComp.ts b/assets/script/game/hero/BuffComp.ts index f769f823..677cc595 100644 --- a/assets/script/game/hero/BuffComp.ts +++ b/assets/script/game/hero/BuffComp.ts @@ -94,6 +94,7 @@ export class BuffComp extends Component { let buff=null let info= null if(!this.HeroView) return + if(!this.HeroView.is_master) return if(this.HeroView.fac==FacSet.HERO) {info=smc.vmdata.hero;buff=this.FIGHTCON.hero_buff} if(this.HeroView.is_boss) {info=smc.vmdata.boss;buff=this.FIGHTCON.enemy_buff} //if(this.HeroView.is_kalami) {target_key="enemy";buff_key="enemy"} 不显示小怪 @@ -104,8 +105,8 @@ export class BuffComp extends Component { info.hp=this.HeroView.hp info.hp_buff=buff.HP info.hp_max=this.HeroView.hp_max*(100+buff.HP)/100 - info.exp=this.HeroView.exp - info.next_exp=this.HeroView.next_exp + // info.exp=this.HeroView.exp + // info.next_exp=this.HeroView.next_exp }else{ info.hp=this.HeroView.hp info.hp_buff=buff.HP @@ -118,7 +119,7 @@ export class BuffComp extends Component { view_deatk += this.HeroView.DEBUFF_DEATKS[i].value } info.ap=this.HeroView.ap - info.lv=this.HeroView.lv + // info.lv=this.HeroView.lv info.cd=Number((this.HeroView.cd*(100-buff.ATK_CD)/100).toFixed(2)) console.log("info.buff.ATK_CD",buff.ATK_CD) info.equip_ap=buff.ATK diff --git a/assets/script/game/hero/HeroViewComp.ts b/assets/script/game/hero/HeroViewComp.ts index 17b522dc..4b32d393 100644 --- a/assets/script/game/hero/HeroViewComp.ts +++ b/assets/script/game/hero/HeroViewComp.ts @@ -162,26 +162,7 @@ export class HeroViewComp extends CCComp { // 处理伤害队列 this.processDamageQueue(); } - use_enhancement(e:GameEvent,data:any){ - //console.log("[HeroViewComp]:use_enhancement",data) - if(this.is_master){ - switch(data.type){ - case EnhancementType.ATTACK: - this.add_ap(data.value) - break - case EnhancementType.ATTACK_SPEED: - this.add_speed(data.value) - break - case EnhancementType.HEALTH: - this.add_hp_max(data.value) - break - case EnhancementType.DEF: - this.add_def(data.value) - break - } - } - - } + change_atk(e:GameEvent,data:any){ if(!this.is_master) return @@ -225,12 +206,13 @@ export class HeroViewComp extends CCComp { */ add_def(def: number){ this.def+=def - this.BUFFCOMP.vmdata_update() + if(this.is_master) this.BUFFCOMP.vmdata_update() + // this.BUFFCOMP.tooltip(TooltipTypes.defup,def.toFixed(0)); } add_speed(cd: number){ this.cd -=this.cd*cd/100 - this.BUFFCOMP.vmdata_update() + if(this.is_master) this.BUFFCOMP.vmdata_update() // this.BUFFCOMP.tooltip(TooltipTypes.speedup,speed.toFixed(0)); } add_ap(ap: number,is_num:boolean=true){ @@ -240,9 +222,12 @@ export class HeroViewComp extends CCComp { }else{ this.ap += Math.floor(ap/100*this.ap); } - this.BUFFCOMP.vmdata_update() this.BUFFCOMP.tooltip(TooltipTypes.apup,ap.toFixed(0)); - oops.message.dispatchEvent(GameEvent.APChange,{is_master:this.is_master,fac:this.fac}) + + if(this.is_master) { + this.BUFFCOMP.vmdata_update(); + oops.message.dispatchEvent(GameEvent.APChange,{is_master:this.is_master,fac:this.fac}) + } } de_ap(ap: number,is_num:boolean=true){ @@ -252,7 +237,7 @@ export class HeroViewComp extends CCComp { }else{ this.ap -= Math.floor(ap/100*this.ap); } - this.BUFFCOMP.vmdata_update() + if(this.is_master) this.BUFFCOMP.vmdata_update() } update_hp(e:GameEvent,data:any){ //console.log("[HeroViewComp]:update_hp",data) @@ -269,7 +254,7 @@ export class HeroViewComp extends CCComp { add_hp_max(hp: number=0,is_num:boolean=true){ this.hp_max += Math.floor(hp) ; this.hp += Math.floor(hp*(100+this.buff_hp)/100) ; - this.BUFFCOMP.vmdata_update(true) + if(this.is_master) this.BUFFCOMP.vmdata_update(true) this.BUFFCOMP.tooltip(TooltipTypes.hpup,hp.toFixed(0)); } @@ -277,7 +262,7 @@ export class HeroViewComp extends CCComp { de_hp_max(hp: number=0,is_num:boolean=true){ //最大值 只存在数值添加, 比例通过buff_hp处理 //console.log("[HeroViewComp]:de_hp_max de:",hp,this.hp_max) this.hp_max -= Math.floor(hp) ; - this.BUFFCOMP.vmdata_update(true) + if(this.is_master) this.BUFFCOMP.vmdata_update(true) } add_hp(hp: number = 0,is_num:boolean=true) { @@ -302,7 +287,7 @@ export class HeroViewComp extends CCComp { this.hp+=real_hp; this.BUFFCOMP.tooltip(TooltipTypes.health,real_hp.toFixed(0)); } - this.BUFFCOMP.vmdata_update(true) + if(this.is_master) this.BUFFCOMP.vmdata_update(true) } @@ -494,7 +479,7 @@ export class HeroViewComp extends CCComp { this.ent.destroy(); } } - this.BUFFCOMP.vmdata_update(true) + if(this.is_master) this.BUFFCOMP.vmdata_update(true) this.showDamage(damage, is_crit); } @@ -646,24 +631,40 @@ export class HeroViewComp extends CCComp { exp_up(e:any,data:any){ if(this.fac==FacSet.MON) return //console.log("[HeroViewComp]:经验提高",data.exp) - this.exp+=data.exp - this.next_exp=getUpExp(this.lv) - let diff=this.exp-this.next_exp - if(diff >= 0){ - this.exp=diff - //console.log("[HeroViewComp]:exp_up",this.exp,this.next_exp) - oops.message.dispatchEvent(GameEvent.EnhancementSelect) - this.to_update() + smc.vmdata.hero.exp+=data.exp + // smc.vmdata.hero.next_exp=getUpExp(this.lv) + if(smc.vmdata.hero.exp >= smc.vmdata.hero.next_exp){ + oops.message.dispatchEvent(GameEvent.CanUpdateLv) } - this.BUFFCOMP.vmdata_update(true) //简易更新vmdata + + } + use_enhancement(e:GameEvent,data:any){ + //console.log("[HeroViewComp]:use_enhancement",data) + if(!this.is_master) return + switch(data.type){ + case EnhancementType.ATTACK: + this.add_ap(data.value) + break + case EnhancementType.ATTACK_SPEED: + this.add_speed(data.value) + break + case EnhancementType.HEALTH: + this.add_hp_max(data.value) + break + case EnhancementType.DEF: + this.add_def(data.value) + break + } + this.to_update() } - to_update(){ if(!this.is_master) return - oops.message.dispatchEvent(GameEvent.HeroLvUp,{lv:this.lv}) - this.lv+=1 - this.next_exp=getUpExp(this.lv) - this.BUFFCOMP.vmdata_update() + // oops.message.dispatchEvent(GameEvent.HeroLvUp,{lv:this.lv}) + + smc.vmdata.hero.exp = smc.vmdata.hero.exp-smc.vmdata.hero.next_exp + smc.vmdata.hero.lv = smc.vmdata.hero.lv+1 + smc.vmdata.hero.next_exp=getUpExp(smc.vmdata.hero.lv) + this.BUFFCOMP.lv_up() this.BUFFCOMP.tooltip(TooltipTypes.lvup) //@todo 需要添加 升级动画 diff --git a/assets/script/game/map/BarComp.ts b/assets/script/game/map/BarComp.ts index 2270734d..61981eb4 100644 --- a/assets/script/game/map/BarComp.ts +++ b/assets/script/game/map/BarComp.ts @@ -25,6 +25,8 @@ export class BarCompComp extends CCComp { this.on(GameEvent.FightReady,this.readay,this) this.on(GameEvent.MasterCalled,this.master_called,this) this.on(GameEvent.APChange,this.ap_change,this) + this.on(GameEvent.CanUpdateLv,this.show_uplv_button,this) + this.on(GameEvent.UseEnhancement,this.hide_uplv_button,this) } start() { @@ -35,6 +37,7 @@ export class BarCompComp extends CCComp { private readay(){ this.node.getChildByName("bar").active = true this.node.getChildByName("bar").getChildByName("more").active=false + this.node.getChildByName("bar").getChildByName("uplv").active=false } private master_called(e:any,data:any){ this.node.getChildByName("bar").active = true @@ -58,6 +61,12 @@ export class BarCompComp extends CCComp { } } + show_uplv_button(){ + this.node.getChildByName("bar").getChildByName("uplv").active=true + } + hide_uplv_button(){ + this.node.getChildByName("bar").getChildByName("uplv").active=false + } show_master_more(){ let barNode = this.node.getChildByName("bar"); let node = barNode.getChildByName("more"); diff --git a/assets/script/game/map/MissionComp.ts b/assets/script/game/map/MissionComp.ts index 3f0e017e..6e312d9e 100644 --- a/assets/script/game/map/MissionComp.ts +++ b/assets/script/game/map/MissionComp.ts @@ -69,7 +69,9 @@ export class MissionComp extends CCComp { to_ready(){ oops.message.dispatchEvent(GameEvent.HeroSelect,{is_master:true}) } - + to_uplv(){ + oops.message.dispatchEvent(GameEvent.EnhancementSelect) + } to_call_friend(){ oops.message.dispatchEvent(GameEvent.HeroSelect,{is_master:false}) }