From bb88212218f470b79df2634b26f8e0cdd7f79a22 Mon Sep 17 00:00:00 2001 From: tiendat3699 <96950844+tiendat3699@users.noreply.github.com> Date: Wed, 15 May 2024 16:44:01 +0700 Subject: [PATCH] feat: dynamic sprite load --- assets/_Game/Prefabs/Label.prefab | 54 +- assets/_Game/Prefabs/UI/itemNormal.prefab | 134 +- assets/_Game/Prefabs/UI/itemTop1.prefab | 175 +- assets/_Game/Prefabs/UI/itemTop2.prefab | 136 +- assets/_Game/Prefabs/UI/itemTop3.prefab | 136 +- assets/_Game/Scenes/City-theme.scene | 3174 ++++++++-------- assets/_Game/Scenes/Default-theme.scene | 2942 +++++++-------- assets/_Game/Scenes/Farm-theme.scene | 3198 ++++++++--------- assets/_Game/Scenes/Park-theme.scene | 3180 ++++++++-------- assets/_Game/Scripts/DynamicSprite.ts | 20 + assets/_Game/Scripts/DynamicSprite.ts.meta | 9 + assets/_Game/Scripts/GamePlay/Enemy.ts | 16 +- .../Scripts/Manager/DynamicSpriteManager.ts | 56 + .../Manager/DynamicSpriteManager.ts.meta | 9 + assets/_Game/Scripts/Manager/GameManager.ts | 36 +- .../_Game/Scripts/Manager/StickerManager.ts | 2 +- assets/_Game/spriteData.json | 6 + assets/_Game/spriteData.json.meta | 11 + extensions/excel-extension/dist/main.js | 29 + .../dist/panels/default/index.js | 169 + extensions/excel-extension/i18n/en.js | 1 + extensions/excel-extension/i18n/zh.js | 1 + extensions/excel-extension/package.json | 56 + .../static/style/default/index.css | 29 + .../static/template/default/index.html | 40 + settings/v2/packages/project.json | 4 +- 26 files changed, 7071 insertions(+), 6552 deletions(-) create mode 100644 assets/_Game/Scripts/DynamicSprite.ts create mode 100644 assets/_Game/Scripts/DynamicSprite.ts.meta create mode 100644 assets/_Game/Scripts/Manager/DynamicSpriteManager.ts create mode 100644 assets/_Game/Scripts/Manager/DynamicSpriteManager.ts.meta create mode 100644 assets/_Game/spriteData.json create mode 100644 assets/_Game/spriteData.json.meta create mode 100644 extensions/excel-extension/dist/main.js create mode 100644 extensions/excel-extension/dist/panels/default/index.js create mode 100644 extensions/excel-extension/i18n/en.js create mode 100644 extensions/excel-extension/i18n/zh.js create mode 100644 extensions/excel-extension/package.json create mode 100644 extensions/excel-extension/static/style/default/index.css create mode 100644 extensions/excel-extension/static/template/default/index.html diff --git a/assets/_Game/Prefabs/Label.prefab b/assets/_Game/Prefabs/Label.prefab index c7e3f46..54917b7 100644 --- a/assets/_Game/Prefabs/Label.prefab +++ b/assets/_Game/Prefabs/Label.prefab @@ -3,6 +3,7 @@ "__type__": "cc.Prefab", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_native": "", "data": { "__id__": 1 @@ -31,13 +32,10 @@ }, { "__id__": 14 - }, - { - "__id__": 18 } ], "_prefab": { - "__id__": 20 + "__id__": 18 }, "_lpos": { "__type__": "cc.Vec3", @@ -72,6 +70,7 @@ "__type__": "cc.Node", "_name": "Sprite", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, @@ -93,7 +92,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 30.310000000000002, + "x": 30.310546875, "y": 0, "z": 0 }, @@ -124,6 +123,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, @@ -151,6 +151,7 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, @@ -195,6 +196,7 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, @@ -243,6 +245,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, @@ -252,7 +255,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 60.62, + "width": 60.62109375, "height": 54.4 }, "_anchorPoint": { @@ -270,6 +273,7 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, @@ -307,16 +311,30 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, - "_id": "", "_enableOutline": true, - "_outlineWidth": 2, "_outlineColor": { "__type__": "cc.Color", "r": 255, "g": 102, "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", @@ -326,6 +344,7 @@ "__type__": "7ea0aCduT5OYaPoiJan0I8j", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, @@ -390,23 +409,6 @@ "preExtrapolation": 2, "postExtrapolation": 1 }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "__prefab": { - "__id__": 19 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c5nnXEe4VJB4s9qYdfaoP/" - }, { "__type__": "cc.PrefabInfo", "root": { diff --git a/assets/_Game/Prefabs/UI/itemNormal.prefab b/assets/_Game/Prefabs/UI/itemNormal.prefab index 075c968..6d917bf 100644 --- a/assets/_Game/Prefabs/UI/itemNormal.prefab +++ b/assets/_Game/Prefabs/UI/itemNormal.prefab @@ -3,6 +3,7 @@ "__type__": "cc.Prefab", "_name": "itemNormal", "_objFlags": 0, + "__editorExtras__": {}, "_native": "", "data": { "__id__": 1 @@ -21,23 +22,23 @@ "__id__": 2 }, { - "__id__": 24 + "__id__": 22 } ], "_active": true, "_components": [ + { + "__id__": 30 + }, { "__id__": 32 }, { "__id__": 34 - }, - { - "__id__": 36 } ], "_prefab": { - "__id__": 38 + "__id__": 36 }, "_lpos": { "__type__": "cc.Vec3", @@ -72,6 +73,7 @@ "__type__": "cc.Node", "_name": "top", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, @@ -86,14 +88,14 @@ "_active": true, "_components": [ { - "__id__": 19 + "__id__": 17 }, { - "__id__": 21 + "__id__": 19 } ], "_prefab": { - "__id__": 23 + "__id__": 21 }, "_lpos": { "__type__": "cc.Vec3", @@ -128,6 +130,7 @@ "__type__": "cc.Node", "_name": "Sprite", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 2 }, @@ -177,6 +180,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -204,6 +208,7 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -261,6 +266,7 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 2 }, @@ -275,13 +281,10 @@ }, { "__id__": 14 - }, - { - "__id__": 16 } ], "_prefab": { - "__id__": 18 + "__id__": 16 }, "_lpos": { "__type__": "cc.Vec3", @@ -316,6 +319,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 9 }, @@ -343,6 +347,7 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 9 }, @@ -380,16 +385,30 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, - "_id": "", "_enableOutline": true, - "_outlineWidth": 4, "_outlineColor": { "__type__": "cc.Color", "r": 96, "g": 96, "b": 96, "a": 255 - } + }, + "_outlineWidth": 4, + "_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", @@ -399,6 +418,7 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 9 }, @@ -430,23 +450,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "76HqScksFCcZ6GUvSeKOhP" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 9 - }, - "_enabled": true, - "__prefab": { - "__id__": 17 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95uDDSqJpEvq+ATOvbMO/W" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -464,12 +467,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 18 }, "_contentSize": { "__type__": "cc.Size", @@ -491,12 +495,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 20 }, "_alignFlags": 10, "_target": null, @@ -539,24 +544,25 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 23 + }, { "__id__": 25 }, { "__id__": 27 - }, - { - "__id__": 29 } ], "_prefab": { - "__id__": 31 + "__id__": 29 }, "_lpos": { "__type__": "cc.Vec3", @@ -591,12 +597,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 24 }, "_contentSize": { "__type__": "cc.Size", @@ -618,12 +625,13 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 28 + "__id__": 26 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -655,6 +663,29 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, "_id": "" }, { @@ -665,12 +696,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 30 + "__id__": 28 }, "_alignFlags": 45, "_target": null, @@ -713,12 +745,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 31 }, "_contentSize": { "__type__": "cc.Size", @@ -740,12 +773,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 35 + "__id__": 33 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -784,18 +818,19 @@ "__type__": "552d1g5QNpOeIBUm3Wr1J5c", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 37 + "__id__": 35 }, "_bg": { - "__id__": 34 + "__id__": 32 }, "_scoreText": { - "__id__": 27 + "__id__": 25 }, "_topText": { "__id__": 12 @@ -822,6 +857,7 @@ "__id__": 0 }, "fileId": "6bZKxhllhMCqrTReiih0t4", + "instance": null, "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/_Game/Prefabs/UI/itemTop1.prefab b/assets/_Game/Prefabs/UI/itemTop1.prefab index 63d4db4..cba057e 100644 --- a/assets/_Game/Prefabs/UI/itemTop1.prefab +++ b/assets/_Game/Prefabs/UI/itemTop1.prefab @@ -3,6 +3,7 @@ "__type__": "cc.Prefab", "_name": "itemTop1", "_objFlags": 0, + "__editorExtras__": {}, "_native": "", "data": { "__id__": 1 @@ -21,26 +22,26 @@ "__id__": 2 }, { - "__id__": 20 + "__id__": 18 }, { - "__id__": 28 + "__id__": 26 } ], "_active": true, "_components": [ + { + "__id__": 38 + }, { "__id__": 40 }, { "__id__": 42 - }, - { - "__id__": 44 } ], "_prefab": { - "__id__": 46 + "__id__": 44 }, "_lpos": { "__type__": "cc.Vec3", @@ -75,6 +76,7 @@ "__type__": "cc.Node", "_name": "top", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, @@ -85,18 +87,18 @@ ], "_active": true, "_components": [ + { + "__id__": 11 + }, { "__id__": 13 }, { "__id__": 15 - }, - { - "__id__": 17 } ], "_prefab": { - "__id__": 19 + "__id__": 17 }, "_lpos": { "__type__": "cc.Vec3", @@ -131,6 +133,7 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 2 }, @@ -145,13 +148,10 @@ }, { "__id__": 8 - }, - { - "__id__": 10 } ], "_prefab": { - "__id__": 12 + "__id__": 10 }, "_lpos": { "__type__": "cc.Vec3", @@ -186,6 +186,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -213,6 +214,7 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -250,16 +252,30 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, - "_id": "", "_enableOutline": true, - "_outlineWidth": 4, "_outlineColor": { "__type__": "cc.Color", "r": 255, "g": 102, "b": 0, "a": 255 - } + }, + "_outlineWidth": 4, + "_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", @@ -269,6 +285,7 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -300,23 +317,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "5bQ0X7vzRNMr55LtO97SRv" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 11 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "40bKbcvN5E84Ydy7sEwJcK" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -334,12 +334,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 12 }, "_contentSize": { "__type__": "cc.Size", @@ -361,12 +362,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -405,12 +407,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 16 }, "_alignFlags": 9, "_target": null, @@ -453,24 +456,25 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 19 + }, { "__id__": 21 }, { "__id__": 23 - }, - { - "__id__": 25 } ], "_prefab": { - "__id__": 27 + "__id__": 25 }, "_lpos": { "__type__": "cc.Vec3", @@ -505,12 +509,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 20 }, "_contentSize": { "__type__": "cc.Size", @@ -532,12 +537,13 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 22 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -569,6 +575,29 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, "_id": "" }, { @@ -579,12 +608,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 24 }, "_alignFlags": 45, "_target": null, @@ -630,14 +660,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 29 + "__id__": 27 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 28 + "__id__": 26 }, "asset": { "__uuid__": "08db7198-bf32-48a4-b5c6-cb88bdb15478", @@ -645,7 +675,7 @@ }, "fileId": "8dLJOK/3dIHrry1f3GsMwX", "instance": { - "__id__": 30 + "__id__": 28 }, "targetOverrides": null }, @@ -658,21 +688,21 @@ "mountedChildren": [], "mountedComponents": [ { - "__id__": 31 + "__id__": 29 } ], "propertyOverrides": [ + { + "__id__": 33 + }, { "__id__": 35 }, + { + "__id__": 36 + }, { "__id__": 37 - }, - { - "__id__": 38 - }, - { - "__id__": 39 } ], "removedComponents": [] @@ -680,11 +710,11 @@ { "__type__": "cc.MountedComponentsInfo", "targetInfo": { - "__id__": 32 + "__id__": 30 }, "components": [ { - "__id__": 33 + "__id__": 31 } ] }, @@ -700,15 +730,15 @@ "_objFlags": 0, "__editorExtras__": { "mountedRoot": { - "__id__": 28 + "__id__": 26 } }, "node": { - "__id__": 28 + "__id__": 26 }, "_enabled": true, "__prefab": { - "__id__": 34 + "__id__": 32 }, "_alignFlags": 18, "_target": null, @@ -737,7 +767,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 36 + "__id__": 34 }, "propertyPath": [ "_name" @@ -753,7 +783,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 36 + "__id__": 34 }, "propertyPath": [ "_lpos" @@ -768,7 +798,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 36 + "__id__": 34 }, "propertyPath": [ "_lrot" @@ -784,7 +814,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 36 + "__id__": 34 }, "propertyPath": [ "_euler" @@ -800,12 +830,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 39 }, "_contentSize": { "__type__": "cc.Size", @@ -827,12 +858,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 41 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -871,15 +903,16 @@ "__type__": "552d1g5QNpOeIBUm3Wr1J5c", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 43 }, "_bg": { - "__id__": 42 + "__id__": 40 }, "_highLightColor": { "__type__": "cc.Color", @@ -907,7 +940,7 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": [ { - "__id__": 28 + "__id__": 26 } ] } diff --git a/assets/_Game/Prefabs/UI/itemTop2.prefab b/assets/_Game/Prefabs/UI/itemTop2.prefab index 6cfd9f0..d8112b4 100644 --- a/assets/_Game/Prefabs/UI/itemTop2.prefab +++ b/assets/_Game/Prefabs/UI/itemTop2.prefab @@ -3,6 +3,7 @@ "__type__": "cc.Prefab", "_name": "itemTop2", "_objFlags": 0, + "__editorExtras__": {}, "_native": "", "data": { "__id__": 1 @@ -21,23 +22,23 @@ "__id__": 2 }, { - "__id__": 20 + "__id__": 18 } ], "_active": true, "_components": [ + { + "__id__": 26 + }, { "__id__": 28 }, { "__id__": 30 - }, - { - "__id__": 32 } ], "_prefab": { - "__id__": 34 + "__id__": 32 }, "_lpos": { "__type__": "cc.Vec3", @@ -72,6 +73,7 @@ "__type__": "cc.Node", "_name": "top", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, @@ -82,18 +84,18 @@ ], "_active": true, "_components": [ + { + "__id__": 11 + }, { "__id__": 13 }, { "__id__": 15 - }, - { - "__id__": 17 } ], "_prefab": { - "__id__": 19 + "__id__": 17 }, "_lpos": { "__type__": "cc.Vec3", @@ -128,6 +130,7 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 2 }, @@ -142,13 +145,10 @@ }, { "__id__": 8 - }, - { - "__id__": 10 } ], "_prefab": { - "__id__": 12 + "__id__": 10 }, "_lpos": { "__type__": "cc.Vec3", @@ -183,6 +183,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -210,6 +211,7 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -247,16 +249,30 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, - "_id": "", "_enableOutline": true, - "_outlineWidth": 4, "_outlineColor": { "__type__": "cc.Color", "r": 99, "g": 113, "b": 133, "a": 255 - } + }, + "_outlineWidth": 4, + "_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", @@ -266,6 +282,7 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -297,23 +314,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "2abEt1Ja1CtqNxk3xMCJFo" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 11 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4eAtE+DrBIgb0jJv6fBI5r" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -331,12 +331,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 12 }, "_contentSize": { "__type__": "cc.Size", @@ -358,12 +359,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -402,12 +404,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 16 }, "_alignFlags": 9, "_target": null, @@ -450,24 +453,25 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 19 + }, { "__id__": 21 }, { "__id__": 23 - }, - { - "__id__": 25 } ], "_prefab": { - "__id__": 27 + "__id__": 25 }, "_lpos": { "__type__": "cc.Vec3", @@ -502,12 +506,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 20 }, "_contentSize": { "__type__": "cc.Size", @@ -529,12 +534,13 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 22 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -566,6 +572,29 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, "_id": "" }, { @@ -576,12 +605,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 24 }, "_alignFlags": 45, "_target": null, @@ -624,12 +654,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 27 }, "_contentSize": { "__type__": "cc.Size", @@ -651,12 +682,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 29 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -695,18 +727,19 @@ "__type__": "552d1g5QNpOeIBUm3Wr1J5c", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 31 }, "_bg": { - "__id__": 30 + "__id__": 28 }, "_scoreText": { - "__id__": 23 + "__id__": 21 }, "_topText": { "__id__": 6 @@ -733,6 +766,7 @@ "__id__": 0 }, "fileId": "5dP05mPalLwZZ2b8ZT1A3S", + "instance": null, "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/_Game/Prefabs/UI/itemTop3.prefab b/assets/_Game/Prefabs/UI/itemTop3.prefab index 590efc7..b983674 100644 --- a/assets/_Game/Prefabs/UI/itemTop3.prefab +++ b/assets/_Game/Prefabs/UI/itemTop3.prefab @@ -3,6 +3,7 @@ "__type__": "cc.Prefab", "_name": "itemTop3", "_objFlags": 0, + "__editorExtras__": {}, "_native": "", "data": { "__id__": 1 @@ -21,23 +22,23 @@ "__id__": 2 }, { - "__id__": 20 + "__id__": 18 } ], "_active": true, "_components": [ + { + "__id__": 26 + }, { "__id__": 28 }, { "__id__": 30 - }, - { - "__id__": 32 } ], "_prefab": { - "__id__": 34 + "__id__": 32 }, "_lpos": { "__type__": "cc.Vec3", @@ -72,6 +73,7 @@ "__type__": "cc.Node", "_name": "top", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, @@ -82,18 +84,18 @@ ], "_active": true, "_components": [ + { + "__id__": 11 + }, { "__id__": 13 }, { "__id__": 15 - }, - { - "__id__": 17 } ], "_prefab": { - "__id__": 19 + "__id__": 17 }, "_lpos": { "__type__": "cc.Vec3", @@ -128,6 +130,7 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 2 }, @@ -142,13 +145,10 @@ }, { "__id__": 8 - }, - { - "__id__": 10 } ], "_prefab": { - "__id__": 12 + "__id__": 10 }, "_lpos": { "__type__": "cc.Vec3", @@ -183,6 +183,7 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -210,6 +211,7 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -247,16 +249,30 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, - "_id": "", "_enableOutline": true, - "_outlineWidth": 4, "_outlineColor": { "__type__": "cc.Color", "r": 126, "g": 41, "b": 19, "a": 255 - } + }, + "_outlineWidth": 4, + "_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", @@ -266,6 +282,7 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 3 }, @@ -297,23 +314,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "26aSxa/n1HP4WeMiJZNg1Q" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 11 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3e20tfG/ZEZqoVu6uSplwa" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -331,12 +331,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 12 }, "_contentSize": { "__type__": "cc.Size", @@ -358,12 +359,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -402,12 +404,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 2 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 16 }, "_alignFlags": 9, "_target": null, @@ -450,24 +453,25 @@ "__type__": "cc.Node", "_name": "Label", "_objFlags": 0, + "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 19 + }, { "__id__": 21 }, { "__id__": 23 - }, - { - "__id__": 25 } ], "_prefab": { - "__id__": 27 + "__id__": 25 }, "_lpos": { "__type__": "cc.Vec3", @@ -502,12 +506,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 20 }, "_contentSize": { "__type__": "cc.Size", @@ -529,12 +534,13 @@ "__type__": "cc.Label", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 22 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -566,6 +572,29 @@ "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, "_id": "" }, { @@ -576,12 +605,13 @@ "__type__": "cc.Widget", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 24 }, "_alignFlags": 45, "_target": null, @@ -624,12 +654,13 @@ "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 27 }, "_contentSize": { "__type__": "cc.Size", @@ -651,12 +682,13 @@ "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 29 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -695,18 +727,19 @@ "__type__": "552d1g5QNpOeIBUm3Wr1J5c", "_name": "", "_objFlags": 0, + "__editorExtras__": {}, "node": { "__id__": 1 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 31 }, "_bg": { - "__id__": 30 + "__id__": 28 }, "_scoreText": { - "__id__": 23 + "__id__": 21 }, "_topText": { "__id__": 6 @@ -733,6 +766,7 @@ "__id__": 0 }, "fileId": "ceuq3bJktG3ojoU7UZJ27S", + "instance": null, "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/_Game/Scenes/City-theme.scene b/assets/_Game/Scenes/City-theme.scene index ffe244d..ed2ca83 100644 --- a/assets/_Game/Scenes/City-theme.scene +++ b/assets/_Game/Scenes/City-theme.scene @@ -26,7 +26,7 @@ "_active": true, "_components": [], "_prefab": { - "__id__": 1280 + "__id__": 1278 }, "_lpos": { "__type__": "cc.Vec3", @@ -57,7 +57,7 @@ }, "autoReleaseAssets": false, "_globals": { - "__id__": 1294 + "__id__": 1292 }, "_id": "1e498311-fccb-4ff2-9dcb-01b2626287c2" }, @@ -80,19 +80,19 @@ "__id__": 9 }, { - "__id__": 1275 + "__id__": 1273 } ], "_active": true, "_components": [ + { + "__id__": 1275 + }, + { + "__id__": 1276 + }, { "__id__": 1277 - }, - { - "__id__": 1278 - }, - { - "__id__": 1279 } ], "_prefab": null, @@ -376,40 +376,40 @@ "__id__": 128 }, { - "__id__": 634 + "__id__": 633 }, { - "__id__": 709 + "__id__": 708 }, { - "__id__": 771 + "__id__": 770 }, { - "__id__": 776 + "__id__": 775 }, { - "__id__": 980 + "__id__": 979 }, { - "__id__": 983 + "__id__": 982 }, { - "__id__": 985 + "__id__": 984 }, { - "__id__": 1257 + "__id__": 1256 }, { - "__id__": 1260 + "__id__": 1259 } ], "_active": true, "_components": [ { - "__id__": 1273 + "__id__": 1271 }, { - "__id__": 1274 + "__id__": 1272 } ], "_prefab": null, @@ -5207,13 +5207,13 @@ "__id__": 132 }, { - "__id__": 559 + "__id__": 558 }, { - "__id__": 624 + "__id__": 623 }, { - "__id__": 629 + "__id__": 628 } ], "_active": true, @@ -5385,7 +5385,7 @@ "__id__": 143 }, { - "__id__": 553 + "__id__": 552 } ], "_prefab": null, @@ -5802,7 +5802,7 @@ "_minAngle": 10, "_maxAngle": 170, "_soundFx": { - "__id__": 553 + "__id__": 552 }, "_goalSound": { "__uuid__": "4ce9d2c6-98c5-4d05-94af-70193bb795fe", @@ -5817,6 +5817,9 @@ "__expectedType__": "cc.AudioClip" }, "_rewards": [ + { + "__id__": 553 + }, { "__id__": 554 }, @@ -5828,9 +5831,6 @@ }, { "__id__": 557 - }, - { - "__id__": 558 } ], "_id": "e5qVdeXFZOu6/MatkdDEG6" @@ -5847,10 +5847,10 @@ "_active": true, "_components": [ { - "__id__": 551 + "__id__": 550 }, { - "__id__": 552 + "__id__": 551 } ], "_prefab": null, @@ -5896,11 +5896,14 @@ "__id__": 144 }, { - "__id__": 486 + "__id__": 485 } ], "_active": true, "_components": [ + { + "__id__": 546 + }, { "__id__": 547 }, @@ -5909,9 +5912,6 @@ }, { "__id__": 549 - }, - { - "__id__": 550 } ], "_prefab": null, @@ -5954,10 +5954,10 @@ }, "_children": [ { - "__id__": 536 + "__id__": 535 }, { - "__id__": 540 + "__id__": 539 }, { "__id__": 145 @@ -5965,14 +5965,14 @@ ], "_active": true, "_components": [ + { + "__id__": 543 + }, { "__id__": 544 }, { "__id__": 545 - }, - { - "__id__": 546 } ], "_prefab": null, @@ -6018,22 +6018,22 @@ "__id__": 146 }, { - "__id__": 499 + "__id__": 498 }, { - "__id__": 490 + "__id__": 489 }, { - "__id__": 521 + "__id__": 520 } ], "_active": true, "_components": [ { - "__id__": 534 + "__id__": 533 }, { - "__id__": 535 + "__id__": 534 } ], "_prefab": null, @@ -6082,19 +6082,19 @@ "__id__": 147 }, { - "__id__": 452 + "__id__": 451 } ], "_active": true, "_components": [ + { + "__id__": 481 + }, { "__id__": 482 }, { "__id__": 483 - }, - { - "__id__": 484 } ], "_prefab": null, @@ -9453,14 +9453,14 @@ ], "_active": false, "_components": [ + { + "__id__": 444 + }, { "__id__": 445 }, { "__id__": 446 - }, - { - "__id__": 447 } ], "_prefab": null, @@ -9618,19 +9618,19 @@ "__id__": 379 }, { - "__id__": 423 + "__id__": 422 }, { - "__id__": 435 + "__id__": 434 } ], "_active": true, "_components": [ { - "__id__": 443 + "__id__": 442 }, { - "__id__": 444 + "__id__": 443 } ], "_prefab": null, @@ -9846,6 +9846,9 @@ ], "_active": true, "_components": [ + { + "__id__": 418 + }, { "__id__": 419 }, @@ -9854,9 +9857,6 @@ }, { "__id__": 421 - }, - { - "__id__": 422 } ], "_prefab": null, @@ -9904,6 +9904,9 @@ ], "_active": true, "_components": [ + { + "__id__": 414 + }, { "__id__": 415 }, @@ -9912,9 +9915,6 @@ }, { "__id__": 417 - }, - { - "__id__": 418 } ], "_prefab": null, @@ -9966,10 +9966,10 @@ "_active": true, "_components": [ { - "__id__": 413 + "__id__": 412 }, { - "__id__": 414 + "__id__": 413 } ], "_prefab": null, @@ -10125,22 +10125,22 @@ "__id__": 391 }, { - "__id__": 402 + "__id__": 401 }, { - "__id__": 406 + "__id__": 405 } ], "_active": true, "_components": [ + { + "__id__": 409 + }, { "__id__": 410 }, { "__id__": 411 - }, - { - "__id__": 412 } ], "_prefab": null, @@ -10192,10 +10192,10 @@ "_active": false, "_components": [ { - "__id__": 400 + "__id__": 399 }, { - "__id__": 401 + "__id__": 400 } ], "_prefab": null, @@ -10356,9 +10356,6 @@ }, { "__id__": 398 - }, - { - "__id__": 399 } ], "_prefab": null, @@ -10508,18 +10505,6 @@ "_lockFlags": 0, "_id": "9d1dXZleNEYo0PraCOGsU1" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 395 - }, - "_enabled": true, - "__prefab": null, - "_id": "3aIIwlJ+BJmp6k0VBid2/K" - }, { "__type__": "cc.UITransform", "_name": "", @@ -10583,14 +10568,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 402 + }, { "__id__": 403 }, { "__id__": 404 - }, - { - "__id__": 405 } ], "_prefab": null, @@ -10629,7 +10614,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 402 + "__id__": 401 }, "_enabled": true, "__prefab": null, @@ -10651,7 +10636,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 402 + "__id__": 401 }, "_enabled": true, "__prefab": null, @@ -10716,7 +10701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 402 + "__id__": 401 }, "_enabled": true, "__prefab": null, @@ -10751,14 +10736,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 406 + }, { "__id__": 407 }, { "__id__": 408 - }, - { - "__id__": 409 } ], "_prefab": null, @@ -10797,7 +10782,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10819,7 +10804,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10884,7 +10869,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10980,10 +10965,10 @@ "_enabled": true, "__prefab": null, "_bg": { - "__id__": 411 + "__id__": 410 }, "_scoreText": { - "__id__": 408 + "__id__": 407 }, "_topText": { "__id__": 397 @@ -11285,14 +11270,17 @@ }, "_children": [ { - "__id__": 424 + "__id__": 423 }, { - "__id__": 427 + "__id__": 426 } ], "_active": true, "_components": [ + { + "__id__": 429 + }, { "__id__": 430 }, @@ -11300,10 +11288,7 @@ "__id__": 431 }, { - "__id__": 432 - }, - { - "__id__": 434 + "__id__": 433 } ], "_prefab": null, @@ -11342,16 +11327,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 422 }, "_children": [], "_active": true, "_components": [ { - "__id__": 425 + "__id__": 424 }, { - "__id__": 426 + "__id__": 425 } ], "_prefab": null, @@ -11390,7 +11375,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 424 + "__id__": 423 }, "_enabled": true, "__prefab": null, @@ -11412,7 +11397,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 424 + "__id__": 423 }, "_enabled": true, "__prefab": null, @@ -11477,16 +11462,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 423 + "__id__": 422 }, "_children": [], "_active": true, "_components": [ { - "__id__": 428 + "__id__": 427 }, { - "__id__": 429 + "__id__": 428 } ], "_prefab": null, @@ -11525,7 +11510,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, @@ -11547,7 +11532,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, @@ -11586,7 +11571,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 422 }, "_enabled": true, "__prefab": null, @@ -11608,7 +11593,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 422 }, "_enabled": true, "__prefab": null, @@ -11647,13 +11632,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 422 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 433 + "__id__": 432 } ], "_interactable": true, @@ -11696,7 +11681,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 423 + "__id__": 422 }, "_id": "83tN1zwmxCxI7aJ2ug7LTQ" }, @@ -11716,7 +11701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 422 }, "_enabled": true, "__prefab": null, @@ -11750,19 +11735,19 @@ }, "_children": [ { - "__id__": 436 + "__id__": 435 } ], "_active": true, "_components": [ + { + "__id__": 438 + }, { "__id__": 439 }, { - "__id__": 440 - }, - { - "__id__": 442 + "__id__": 441 } ], "_prefab": null, @@ -11801,16 +11786,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 435 + "__id__": 434 }, "_children": [], "_active": true, "_components": [ { - "__id__": 437 + "__id__": 436 }, { - "__id__": 438 + "__id__": 437 } ], "_prefab": null, @@ -11849,7 +11834,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 436 + "__id__": 435 }, "_enabled": true, "__prefab": null, @@ -11871,7 +11856,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 436 + "__id__": 435 }, "_enabled": true, "__prefab": null, @@ -11936,7 +11921,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 435 + "__id__": 434 }, "_enabled": true, "__prefab": null, @@ -11958,13 +11943,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 435 + "__id__": 434 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 441 + "__id__": 440 } ], "_interactable": true, @@ -12016,7 +12001,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 435 + "__id__": 434 }, "_id": "05kavv3MFKp4R9iVYAgcDb" }, @@ -12036,7 +12021,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 435 + "__id__": 434 }, "_enabled": true, "__prefab": null, @@ -12185,16 +12170,16 @@ "__prefab": null, "topScore": null, "yourScore": { - "__id__": 408 + "__id__": 407 }, "_ticketMinus": { - "__id__": 426 + "__id__": 425 }, "_buyTicketBtn": { - "__id__": 423 + "__id__": 422 }, "_quitBtn": { - "__id__": 435 + "__id__": 434 }, "_scoreUI": { "__id__": 144 @@ -12212,17 +12197,17 @@ "__expectedType__": "cc.AudioClip" }, "_starSpeedCurve": { - "__id__": 448 + "__id__": 447 }, "_starScaleCurve": { - "__id__": 450 + "__id__": 449 }, "_id": "bbcyvzebBDsJfOOH9VNeON" }, { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 449 + "__id__": 448 } }, { @@ -12263,7 +12248,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 451 + "__id__": 450 } }, { @@ -12324,19 +12309,19 @@ }, "_children": [ { - "__id__": 453 + "__id__": 452 } ], "_active": false, "_components": [ + { + "__id__": 478 + }, { "__id__": 479 }, { "__id__": 480 - }, - { - "__id__": 481 } ], "_prefab": null, @@ -12375,15 +12360,18 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 452 + "__id__": 451 }, "_children": [ { - "__id__": 454 + "__id__": 453 } ], "_active": true, "_components": [ + { + "__id__": 472 + }, { "__id__": 473 }, @@ -12398,9 +12386,6 @@ }, { "__id__": 477 - }, - { - "__id__": 478 } ], "_prefab": null, @@ -12439,29 +12424,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 453 + "__id__": 452 }, "_children": [ { - "__id__": 455 + "__id__": 454 }, { - "__id__": 458 + "__id__": 457 }, { - "__id__": 461 + "__id__": 460 }, { - "__id__": 465 + "__id__": 464 } ], "_active": true, "_components": [ { - "__id__": 471 + "__id__": 470 }, { - "__id__": 472 + "__id__": 471 } ], "_prefab": null, @@ -12500,16 +12485,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 454 + "__id__": 453 }, "_children": [], "_active": true, "_components": [ { - "__id__": 456 + "__id__": 455 }, { - "__id__": 457 + "__id__": 456 } ], "_prefab": null, @@ -12548,7 +12533,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 455 + "__id__": 454 }, "_enabled": true, "__prefab": null, @@ -12570,7 +12555,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 455 + "__id__": 454 }, "_enabled": true, "__prefab": null, @@ -12609,16 +12594,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 454 + "__id__": 453 }, "_children": [], "_active": true, "_components": [ { - "__id__": 459 + "__id__": 458 }, { - "__id__": 460 + "__id__": 459 } ], "_prefab": null, @@ -12657,7 +12642,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -12679,7 +12664,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -12718,19 +12703,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 454 + "__id__": 453 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 461 + }, { "__id__": 462 }, { "__id__": 463 - }, - { - "__id__": 464 } ], "_prefab": null, @@ -12769,7 +12754,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 460 }, "_enabled": true, "__prefab": null, @@ -12791,7 +12776,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 460 }, "_enabled": true, "__prefab": null, @@ -12830,7 +12815,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 460 }, "_enabled": true, "__prefab": null, @@ -12860,11 +12845,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 454 + "__id__": 453 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 465 + }, { "__id__": 466 }, @@ -12872,10 +12860,7 @@ "__id__": 467 }, { - "__id__": 468 - }, - { - "__id__": 470 + "__id__": 469 } ], "_prefab": null, @@ -12914,7 +12899,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 464 }, "_enabled": true, "__prefab": null, @@ -12936,7 +12921,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 464 }, "_enabled": true, "__prefab": null, @@ -12975,13 +12960,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 464 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 469 + "__id__": 468 } ], "_interactable": true, @@ -13021,7 +13006,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 465 + "__id__": 464 }, "_id": "b5HEsyyjZJ8Yb2u2q1fD82" }, @@ -13041,7 +13026,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 465 + "__id__": 464 }, "_enabled": true, "__prefab": null, @@ -13071,7 +13056,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 454 + "__id__": 453 }, "_enabled": true, "__prefab": null, @@ -13093,7 +13078,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 454 + "__id__": 453 }, "_enabled": true, "__prefab": null, @@ -13132,7 +13117,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, @@ -13154,7 +13139,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, @@ -13170,7 +13155,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, @@ -13210,7 +13195,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, @@ -13226,7 +13211,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, @@ -13253,12 +13238,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 452 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 477 + "__id__": 476 }, "_id": "21CWF/h19B4IC/OI3ayhGG" }, @@ -13268,7 +13253,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 452 + "__id__": 451 }, "_enabled": true, "__prefab": null, @@ -13290,7 +13275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 452 + "__id__": 451 }, "_enabled": true, "__prefab": null, @@ -13329,7 +13314,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 452 + "__id__": 451 }, "_enabled": true, "__prefab": null, @@ -13416,17 +13401,17 @@ "_enabled": true, "__prefab": null, "_scoreLabel": { - "__id__": 485 + "__id__": 484 }, "_ticketLabel": { - "__id__": 488 + "__id__": 487 }, "_buffFx": null, "_controlPanel": { "__id__": 223 }, "_startPanel": { - "__id__": 452 + "__id__": 451 }, "_overPanel": { "__id__": 370 @@ -13439,7 +13424,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 486 + "__id__": 485 }, "_enabled": true, "__prefab": null, @@ -13510,10 +13495,10 @@ "_active": true, "_components": [ { - "__id__": 487 + "__id__": 486 }, { - "__id__": 485 + "__id__": 484 } ], "_prefab": null, @@ -13552,7 +13537,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 486 + "__id__": 485 }, "_enabled": true, "__prefab": null, @@ -13574,7 +13559,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 489 + "__id__": 488 }, "_enabled": true, "__prefab": null, @@ -13639,16 +13624,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 490 + "__id__": 489 }, "_children": [], "_active": true, "_components": [ { - "__id__": 498 + "__id__": 497 }, { - "__id__": 488 + "__id__": 487 } ], "_prefab": null, @@ -13691,14 +13676,17 @@ }, "_children": [ { - "__id__": 491 + "__id__": 490 }, { - "__id__": 489 + "__id__": 488 } ], "_active": true, "_components": [ + { + "__id__": 493 + }, { "__id__": 494 }, @@ -13707,9 +13695,6 @@ }, { "__id__": 496 - }, - { - "__id__": 497 } ], "_prefab": null, @@ -13748,16 +13733,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 490 + "__id__": 489 }, "_children": [], "_active": true, "_components": [ { - "__id__": 492 + "__id__": 491 }, { - "__id__": 493 + "__id__": 492 } ], "_prefab": null, @@ -13796,7 +13781,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 490 }, "_enabled": true, "__prefab": null, @@ -13818,7 +13803,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 490 }, "_enabled": true, "__prefab": null, @@ -13857,7 +13842,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13879,7 +13864,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13918,7 +13903,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13948,7 +13933,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13980,7 +13965,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 489 + "__id__": 488 }, "_enabled": true, "__prefab": null, @@ -14006,14 +13991,17 @@ }, "_children": [ { - "__id__": 500 + "__id__": 499 }, { - "__id__": 504 + "__id__": 503 } ], "_active": true, "_components": [ + { + "__id__": 516 + }, { "__id__": 517 }, @@ -14022,9 +14010,6 @@ }, { "__id__": 519 - }, - { - "__id__": 520 } ], "_prefab": null, @@ -14063,19 +14048,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 499 + "__id__": 498 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 500 + }, { "__id__": 501 }, { "__id__": 502 - }, - { - "__id__": 503 } ], "_prefab": null, @@ -14114,7 +14099,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 500 + "__id__": 499 }, "_enabled": true, "__prefab": null, @@ -14136,7 +14121,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 500 + "__id__": 499 }, "_enabled": true, "__prefab": null, @@ -14175,7 +14160,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 500 + "__id__": 499 }, "_enabled": true, "__prefab": null, @@ -14205,26 +14190,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 499 + "__id__": 498 }, "_children": [ { - "__id__": 505 + "__id__": 504 }, { - "__id__": 511 + "__id__": 510 } ], "_active": true, "_components": [ + { + "__id__": 513 + }, { "__id__": 514 }, { "__id__": 515 - }, - { - "__id__": 516 } ], "_prefab": null, @@ -14263,20 +14248,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 503 }, "_children": [ { - "__id__": 506 + "__id__": 505 } ], "_active": true, "_components": [ { - "__id__": 509 + "__id__": 508 }, { - "__id__": 510 + "__id__": 509 } ], "_prefab": null, @@ -14315,16 +14300,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 505 + "__id__": 504 }, "_children": [], "_active": true, "_components": [ { - "__id__": 507 + "__id__": 506 }, { - "__id__": 508 + "__id__": 507 } ], "_prefab": null, @@ -14363,7 +14348,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 506 + "__id__": 505 }, "_enabled": true, "__prefab": null, @@ -14385,7 +14370,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 506 + "__id__": 505 }, "_enabled": true, "__prefab": null, @@ -14424,7 +14409,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 504 }, "_enabled": true, "__prefab": null, @@ -14446,7 +14431,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 504 }, "_enabled": true, "__prefab": null, @@ -14485,16 +14470,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 503 }, "_children": [], "_active": true, "_components": [ { - "__id__": 512 + "__id__": 511 }, { - "__id__": 513 + "__id__": 512 } ], "_prefab": null, @@ -14533,7 +14518,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14555,7 +14540,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14620,7 +14605,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14642,7 +14627,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14674,7 +14659,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14704,7 +14689,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 499 + "__id__": 498 }, "_enabled": true, "__prefab": null, @@ -14726,7 +14711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 499 + "__id__": 498 }, "_enabled": true, "__prefab": null, @@ -14765,7 +14750,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 499 + "__id__": 498 }, "_enabled": true, "__prefab": null, @@ -14795,18 +14780,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 499 + "__id__": 498 }, "_enabled": true, "__prefab": null, "_timeLabel": { - "__id__": 513 + "__id__": 512 }, "_fill": { - "__id__": 502 + "__id__": 501 }, "_timeIcon": { - "__id__": 506 + "__id__": 505 }, "_countDownSound": { "__uuid__": "c96f7bd8-69d7-4810-a6d4-3cfa61766b2c", @@ -14824,14 +14809,17 @@ }, "_children": [ { - "__id__": 522 + "__id__": 521 }, { - "__id__": 525 + "__id__": 524 } ], "_active": true, "_components": [ + { + "__id__": 527 + }, { "__id__": 528 }, @@ -14839,13 +14827,10 @@ "__id__": 529 }, { - "__id__": 530 + "__id__": 531 }, { "__id__": 532 - }, - { - "__id__": 533 } ], "_prefab": null, @@ -14884,16 +14869,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 521 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 523 + "__id__": 522 }, { - "__id__": 524 + "__id__": 523 } ], "_prefab": null, @@ -14932,7 +14917,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 522 + "__id__": 521 }, "_enabled": true, "__prefab": null, @@ -14954,7 +14939,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 522 + "__id__": 521 }, "_enabled": true, "__prefab": null, @@ -14993,16 +14978,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 521 + "__id__": 520 }, "_children": [], "_active": false, "_components": [ { - "__id__": 526 + "__id__": 525 }, { - "__id__": 527 + "__id__": 526 } ], "_prefab": null, @@ -15041,7 +15026,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, @@ -15063,7 +15048,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, @@ -15102,7 +15087,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 521 + "__id__": 520 }, "_enabled": true, "__prefab": null, @@ -15124,7 +15109,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 521 + "__id__": 520 }, "_enabled": true, "__prefab": null, @@ -15163,13 +15148,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 521 + "__id__": 520 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 531 + "__id__": 530 } ], "_interactable": true, @@ -15212,14 +15197,14 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 521 + "__id__": 520 }, "_id": "1cDmuMEIFEs5ImBNG5Gm0F" }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 521 + "__id__": 520 }, "component": "", "_componentId": "fe619HtEX1OQq7oeACKrANd", @@ -15232,7 +15217,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 521 + "__id__": 520 }, "_enabled": true, "__prefab": null, @@ -15262,15 +15247,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 521 + "__id__": 520 }, "_enabled": true, "__prefab": null, "_unMute": { - "__id__": 522 + "__id__": 521 }, "_mute": { - "__id__": 525 + "__id__": 524 }, "_id": "adeG5FRP1GpLzDXol2pxU+" }, @@ -15337,14 +15322,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 536 + }, { "__id__": 537 }, { "__id__": 538 - }, - { - "__id__": 539 } ], "_prefab": null, @@ -15383,7 +15368,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 536 + "__id__": 535 }, "_enabled": true, "__prefab": null, @@ -15405,7 +15390,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 536 + "__id__": 535 }, "_enabled": true, "__prefab": null, @@ -15444,7 +15429,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 536 + "__id__": 535 }, "_enabled": true, "__prefab": null, @@ -15479,14 +15464,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 540 + }, { "__id__": 541 }, { "__id__": 542 - }, - { - "__id__": 543 } ], "_prefab": null, @@ -15525,7 +15510,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15547,7 +15532,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15612,7 +15597,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -16053,28 +16038,28 @@ }, "_children": [ { - "__id__": 560 + "__id__": 559 }, { - "__id__": 569 + "__id__": 568 }, { - "__id__": 575 + "__id__": 574 }, { - "__id__": 617 + "__id__": 616 } ], "_active": true, "_components": [ + { + "__id__": 620 + }, { "__id__": 621 }, { "__id__": 622 - }, - { - "__id__": 623 } ], "_prefab": null, @@ -16113,23 +16098,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 559 + "__id__": 558 }, "_children": [ { - "__id__": 561 + "__id__": 560 }, { - "__id__": 564 + "__id__": 563 } ], "_active": true, "_components": [ { - "__id__": 567 + "__id__": 566 }, { - "__id__": 568 + "__id__": 567 } ], "_prefab": null, @@ -16168,16 +16153,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 560 + "__id__": 559 }, "_children": [], "_active": true, "_components": [ { - "__id__": 562 + "__id__": 561 }, { - "__id__": 563 + "__id__": 562 } ], "_prefab": null, @@ -16216,7 +16201,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 561 + "__id__": 560 }, "_enabled": true, "__prefab": null, @@ -16238,7 +16223,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 561 + "__id__": 560 }, "_enabled": true, "__prefab": null, @@ -16277,16 +16262,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 560 + "__id__": 559 }, "_children": [], "_active": true, "_components": [ { - "__id__": 565 + "__id__": 564 }, { - "__id__": 566 + "__id__": 565 } ], "_prefab": null, @@ -16325,7 +16310,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -16347,7 +16332,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -16386,7 +16371,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 560 + "__id__": 559 }, "_enabled": true, "__prefab": null, @@ -16408,7 +16393,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 560 + "__id__": 559 }, "_enabled": true, "__prefab": null, @@ -16447,20 +16432,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 559 + "__id__": 558 }, "_children": [ { - "__id__": 570 + "__id__": 569 } ], "_active": true, "_components": [ { - "__id__": 573 + "__id__": 572 }, { - "__id__": 574 + "__id__": 573 } ], "_prefab": null, @@ -16499,16 +16484,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 569 + "__id__": 568 }, "_children": [], "_active": true, "_components": [ { - "__id__": 571 + "__id__": 570 }, { - "__id__": 572 + "__id__": 571 } ], "_prefab": null, @@ -16547,7 +16532,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 570 + "__id__": 569 }, "_enabled": true, "__prefab": null, @@ -16569,7 +16554,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 570 + "__id__": 569 }, "_enabled": true, "__prefab": null, @@ -16608,7 +16593,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 568 }, "_enabled": true, "__prefab": null, @@ -16630,7 +16615,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 568 }, "_enabled": false, "__prefab": null, @@ -16669,20 +16654,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 559 + "__id__": 558 }, "_children": [ { - "__id__": 576 + "__id__": 575 }, { - "__id__": 595 + "__id__": 594 } ], "_active": true, "_components": [ { - "__id__": 616 + "__id__": 615 } ], "_prefab": null, @@ -16719,17 +16704,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 575 + "__id__": 574 }, "_prefab": { - "__id__": 577 + "__id__": 576 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 576 + "__id__": 575 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -16737,7 +16722,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 578 + "__id__": 577 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -16750,7 +16735,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 579 + "__id__": 578 + }, + { + "__id__": 580 }, { "__id__": 581 @@ -16762,7 +16750,7 @@ "__id__": 583 }, { - "__id__": 584 + "__id__": 585 }, { "__id__": 586 @@ -16774,13 +16762,10 @@ "__id__": 588 }, { - "__id__": 589 + "__id__": 590 }, { - "__id__": 591 - }, - { - "__id__": 593 + "__id__": 592 } ], "removedComponents": [] @@ -16788,7 +16773,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 580 + "__id__": 579 }, "propertyPath": [ "_name" @@ -16804,7 +16789,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 580 + "__id__": 579 }, "propertyPath": [ "_lpos" @@ -16819,7 +16804,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 580 + "__id__": 579 }, "propertyPath": [ "_lrot" @@ -16835,7 +16820,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 580 + "__id__": 579 }, "propertyPath": [ "_euler" @@ -16850,7 +16835,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 585 + "__id__": 584 }, "propertyPath": [ "_lrot" @@ -16872,7 +16857,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 585 + "__id__": 584 }, "propertyPath": [ "_euler" @@ -16887,7 +16872,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 580 + "__id__": 579 }, "propertyPath": [ "_layer" @@ -16897,7 +16882,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 585 + "__id__": 584 }, "propertyPath": [ "_layer" @@ -16907,7 +16892,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 590 + "__id__": 589 }, "propertyPath": [ "_layer" @@ -16923,7 +16908,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 592 + "__id__": 591 }, "propertyPath": [ "_layer" @@ -16939,7 +16924,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 594 + "__id__": 593 }, "propertyPath": [ "_rotationOvertimeModule", @@ -16958,17 +16943,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 575 + "__id__": 574 }, "_prefab": { - "__id__": 596 + "__id__": 595 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 595 + "__id__": 594 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -16976,7 +16961,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 597 + "__id__": 596 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -16989,7 +16974,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 598 + "__id__": 597 + }, + { + "__id__": 599 }, { "__id__": 600 @@ -17004,7 +16992,7 @@ "__id__": 603 }, { - "__id__": 604 + "__id__": 605 }, { "__id__": 606 @@ -17016,16 +17004,13 @@ "__id__": 608 }, { - "__id__": 609 + "__id__": 610 }, { "__id__": 611 }, { - "__id__": 612 - }, - { - "__id__": 614 + "__id__": 613 } ], "removedComponents": [] @@ -17033,7 +17018,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_name" @@ -17049,7 +17034,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_lpos" @@ -17064,7 +17049,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_lrot" @@ -17080,7 +17065,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_euler" @@ -17095,7 +17080,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_layer" @@ -17105,7 +17090,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 605 + "__id__": 604 }, "propertyPath": [ "_lrot" @@ -17127,7 +17112,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 605 + "__id__": 604 }, "propertyPath": [ "_euler" @@ -17142,7 +17127,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 599 + "__id__": 598 }, "propertyPath": [ "_lscale" @@ -17157,7 +17142,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 605 + "__id__": 604 }, "propertyPath": [ "_lscale" @@ -17172,7 +17157,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_rotationOvertimeModule", @@ -17190,7 +17175,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 605 + "__id__": 604 }, "propertyPath": [ "_layer" @@ -17200,7 +17185,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 613 + "__id__": 612 }, "propertyPath": [ "_layer" @@ -17216,7 +17201,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 615 + "__id__": 614 }, "propertyPath": [ "_layer" @@ -17235,7 +17220,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 575 + "__id__": 574 }, "_enabled": true, "__prefab": null, @@ -17257,19 +17242,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 559 + "__id__": 558 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 617 + }, { "__id__": 618 }, { "__id__": 619 - }, - { - "__id__": 620 } ], "_prefab": null, @@ -17308,7 +17293,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 617 + "__id__": 616 }, "_enabled": true, "__prefab": null, @@ -17330,7 +17315,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 617 + "__id__": 616 }, "_enabled": true, "__prefab": null, @@ -17390,7 +17375,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 617 + "__id__": 616 }, "_enabled": true, "__prefab": null, @@ -17418,7 +17403,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 559 + "__id__": 558 }, "_enabled": true, "__prefab": null, @@ -17440,15 +17425,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 559 + "__id__": 558 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 619 + "__id__": 618 }, "_animation": { - "__id__": 623 + "__id__": 622 }, "_score": 100, "_goalFx": { @@ -17463,7 +17448,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 559 + "__id__": 558 }, "_enabled": true, "__prefab": null, @@ -17495,6 +17480,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 624 + }, { "__id__": 625 }, @@ -17503,9 +17491,6 @@ }, { "__id__": 627 - }, - { - "__id__": 628 } ], "_prefab": null, @@ -17544,7 +17529,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17566,7 +17551,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17691,7 +17676,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17811,7 +17796,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17844,6 +17829,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 629 + }, { "__id__": 630 }, @@ -17852,9 +17840,6 @@ }, { "__id__": 632 - }, - { - "__id__": 633 } ], "_prefab": null, @@ -17893,7 +17878,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -17915,7 +17900,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -17970,18 +17955,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 631 + "__id__": 630 }, "_portLeft": { - "__id__": 576 + "__id__": 575 }, "_portRight": { - "__id__": 595 + "__id__": 594 }, "_fx": { "__uuid__": "7afbc379-62e2-4721-b6d4-be47b00b6db2", @@ -17999,7 +17984,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -18031,22 +18016,22 @@ }, "_children": [ { - "__id__": 635 + "__id__": 634 }, { - "__id__": 651 + "__id__": 650 }, { - "__id__": 670 + "__id__": 669 }, { - "__id__": 689 + "__id__": 688 } ], "_active": true, "_components": [ { - "__id__": 708 + "__id__": 707 } ], "_prefab": null, @@ -18085,26 +18070,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 634 + "__id__": 633 }, "_children": [ { - "__id__": 636 + "__id__": 635 }, { - "__id__": 643 + "__id__": 642 }, { - "__id__": 645 + "__id__": 644 } ], "_active": true, "_components": [ { - "__id__": 647 + "__id__": 646 }, { - "__id__": 648 + "__id__": 647 } ], "_prefab": null, @@ -18143,23 +18128,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 635 + "__id__": 634 }, "_children": [ { - "__id__": 637 + "__id__": 636 } ], "_active": true, "_components": [ + { + "__id__": 639 + }, { "__id__": 640 }, { "__id__": 641 - }, - { - "__id__": 642 } ], "_prefab": null, @@ -18198,16 +18183,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 636 + "__id__": 635 }, "_children": [], "_active": true, "_components": [ { - "__id__": 638 + "__id__": 637 }, { - "__id__": 639 + "__id__": 638 } ], "_prefab": null, @@ -18246,7 +18231,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, @@ -18268,7 +18253,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, @@ -18307,7 +18292,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18329,7 +18314,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18357,7 +18342,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18385,13 +18370,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 635 + "__id__": 634 }, "_children": [], "_active": true, "_components": [ { - "__id__": 644 + "__id__": 643 } ], "_prefab": null, @@ -18430,7 +18415,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 643 + "__id__": 642 }, "_enabled": true, "__prefab": null, @@ -18452,13 +18437,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 635 + "__id__": 634 }, "_children": [], "_active": true, "_components": [ { - "__id__": 646 + "__id__": 645 } ], "_prefab": null, @@ -18497,7 +18482,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 645 + "__id__": 644 }, "_enabled": true, "__prefab": null, @@ -18519,7 +18504,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 635 + "__id__": 634 }, "_enabled": true, "__prefab": null, @@ -18541,27 +18526,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 635 + "__id__": 634 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 641 + "__id__": 640 }, "_sprite": { - "__id__": 639 + "__id__": 638 }, "_patrolPoint1": { - "__id__": 643 + "__id__": 642 }, "_patrolPoint2": { - "__id__": 645 + "__id__": 644 }, "_speed": 50, "_requireGoal": 3, "_curveY": true, "_patrolCurve": { - "__id__": 649 + "__id__": 648 }, "_multiplierCurve": 120, "_hitSound": { @@ -18573,7 +18558,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 650 + "__id__": 649 } }, { @@ -18617,29 +18602,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 634 + "__id__": 633 }, "_children": [ { - "__id__": 652 + "__id__": 651 }, { - "__id__": 655 + "__id__": 654 }, { - "__id__": 662 + "__id__": 661 }, { - "__id__": 664 + "__id__": 663 } ], "_active": true, "_components": [ { - "__id__": 666 + "__id__": 665 }, { - "__id__": 667 + "__id__": 666 } ], "_prefab": null, @@ -18678,16 +18663,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 651 + "__id__": 650 }, "_children": [], "_active": true, "_components": [ { - "__id__": 653 + "__id__": 652 }, { - "__id__": 654 + "__id__": 653 } ], "_prefab": null, @@ -18726,7 +18711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 652 + "__id__": 651 }, "_enabled": true, "__prefab": null, @@ -18748,7 +18733,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 652 + "__id__": 651 }, "_enabled": true, "__prefab": null, @@ -18787,23 +18772,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 651 + "__id__": 650 }, "_children": [ { - "__id__": 656 + "__id__": 655 } ], "_active": true, "_components": [ + { + "__id__": 658 + }, { "__id__": 659 }, { "__id__": 660 - }, - { - "__id__": 661 } ], "_prefab": null, @@ -18842,16 +18827,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 655 + "__id__": 654 }, "_children": [], "_active": true, "_components": [ { - "__id__": 657 + "__id__": 656 }, { - "__id__": 658 + "__id__": 657 } ], "_prefab": null, @@ -18890,7 +18875,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 656 + "__id__": 655 }, "_enabled": true, "__prefab": null, @@ -18912,7 +18897,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 656 + "__id__": 655 }, "_enabled": true, "__prefab": null, @@ -18951,7 +18936,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 655 + "__id__": 654 }, "_enabled": true, "__prefab": null, @@ -18973,7 +18958,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 655 + "__id__": 654 }, "_enabled": true, "__prefab": null, @@ -19001,7 +18986,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 655 + "__id__": 654 }, "_enabled": true, "__prefab": null, @@ -19029,13 +19014,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 651 + "__id__": 650 }, "_children": [], "_active": true, "_components": [ { - "__id__": 663 + "__id__": 662 } ], "_prefab": null, @@ -19074,7 +19059,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 662 + "__id__": 661 }, "_enabled": true, "__prefab": null, @@ -19096,13 +19081,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 651 + "__id__": 650 }, "_children": [], "_active": true, "_components": [ { - "__id__": 665 + "__id__": 664 } ], "_prefab": null, @@ -19141,7 +19126,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19163,7 +19148,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 651 + "__id__": 650 }, "_enabled": true, "__prefab": null, @@ -19185,27 +19170,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 651 + "__id__": 650 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 660 + "__id__": 659 }, "_sprite": { - "__id__": 658 + "__id__": 657 }, "_patrolPoint1": { - "__id__": 662 + "__id__": 661 }, "_patrolPoint2": { - "__id__": 664 + "__id__": 663 }, "_speed": 50, "_requireGoal": 6, "_curveY": false, "_patrolCurve": { - "__id__": 668 + "__id__": 667 }, "_multiplierCurve": 100, "_hitSound": { @@ -19217,7 +19202,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 669 + "__id__": 668 } }, { @@ -19261,29 +19246,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 634 + "__id__": 633 }, "_children": [ { - "__id__": 671 + "__id__": 670 }, { - "__id__": 674 + "__id__": 673 }, { - "__id__": 681 + "__id__": 680 }, { - "__id__": 683 + "__id__": 682 } ], "_active": true, "_components": [ { - "__id__": 685 + "__id__": 684 }, { - "__id__": 686 + "__id__": 685 } ], "_prefab": null, @@ -19322,16 +19307,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 670 + "__id__": 669 }, "_children": [], "_active": true, "_components": [ { - "__id__": 672 + "__id__": 671 }, { - "__id__": 673 + "__id__": 672 } ], "_prefab": null, @@ -19370,7 +19355,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 670 }, "_enabled": true, "__prefab": null, @@ -19392,7 +19377,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 670 }, "_enabled": true, "__prefab": null, @@ -19431,23 +19416,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 670 + "__id__": 669 }, "_children": [ { - "__id__": 675 + "__id__": 674 } ], "_active": true, "_components": [ + { + "__id__": 677 + }, { "__id__": 678 }, { "__id__": 679 - }, - { - "__id__": 680 } ], "_prefab": null, @@ -19486,16 +19471,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 674 + "__id__": 673 }, "_children": [], "_active": true, "_components": [ { - "__id__": 676 + "__id__": 675 }, { - "__id__": 677 + "__id__": 676 } ], "_prefab": null, @@ -19534,7 +19519,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 675 + "__id__": 674 }, "_enabled": true, "__prefab": null, @@ -19556,7 +19541,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 675 + "__id__": 674 }, "_enabled": true, "__prefab": null, @@ -19595,7 +19580,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 674 + "__id__": 673 }, "_enabled": true, "__prefab": null, @@ -19617,7 +19602,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 674 + "__id__": 673 }, "_enabled": true, "__prefab": null, @@ -19645,7 +19630,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 674 + "__id__": 673 }, "_enabled": true, "__prefab": null, @@ -19673,13 +19658,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 670 + "__id__": 669 }, "_children": [], "_active": true, "_components": [ { - "__id__": 682 + "__id__": 681 } ], "_prefab": null, @@ -19718,7 +19703,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 680 }, "_enabled": true, "__prefab": null, @@ -19740,13 +19725,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 670 + "__id__": 669 }, "_children": [], "_active": true, "_components": [ { - "__id__": 684 + "__id__": 683 } ], "_prefab": null, @@ -19785,7 +19770,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -19807,7 +19792,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 670 + "__id__": 669 }, "_enabled": true, "__prefab": null, @@ -19829,27 +19814,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 670 + "__id__": 669 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 679 + "__id__": 678 }, "_sprite": { - "__id__": 677 + "__id__": 676 }, "_patrolPoint1": { - "__id__": 681 + "__id__": 680 }, "_patrolPoint2": { - "__id__": 683 + "__id__": 682 }, "_speed": 50, "_requireGoal": 9, "_curveY": false, "_patrolCurve": { - "__id__": 687 + "__id__": 686 }, "_multiplierCurve": 100, "_hitSound": { @@ -19861,7 +19846,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 688 + "__id__": 687 } }, { @@ -19905,29 +19890,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 634 + "__id__": 633 }, "_children": [ { - "__id__": 690 + "__id__": 689 }, { - "__id__": 693 + "__id__": 692 }, { - "__id__": 700 + "__id__": 699 }, { - "__id__": 702 + "__id__": 701 } ], "_active": true, "_components": [ { - "__id__": 704 + "__id__": 703 }, { - "__id__": 705 + "__id__": 704 } ], "_prefab": null, @@ -19966,16 +19951,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 689 + "__id__": 688 }, "_children": [], "_active": true, "_components": [ { - "__id__": 691 + "__id__": 690 }, { - "__id__": 692 + "__id__": 691 } ], "_prefab": null, @@ -20014,7 +19999,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 690 + "__id__": 689 }, "_enabled": true, "__prefab": null, @@ -20036,7 +20021,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 690 + "__id__": 689 }, "_enabled": true, "__prefab": null, @@ -20075,23 +20060,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 689 + "__id__": 688 }, "_children": [ { - "__id__": 694 + "__id__": 693 } ], "_active": true, "_components": [ + { + "__id__": 696 + }, { "__id__": 697 }, { "__id__": 698 - }, - { - "__id__": 699 } ], "_prefab": null, @@ -20130,16 +20115,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 693 + "__id__": 692 }, "_children": [], "_active": true, "_components": [ { - "__id__": 695 + "__id__": 694 }, { - "__id__": 696 + "__id__": 695 } ], "_prefab": null, @@ -20178,7 +20163,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 694 + "__id__": 693 }, "_enabled": true, "__prefab": null, @@ -20200,7 +20185,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 694 + "__id__": 693 }, "_enabled": true, "__prefab": null, @@ -20239,7 +20224,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 692 }, "_enabled": true, "__prefab": null, @@ -20261,7 +20246,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 692 }, "_enabled": true, "__prefab": null, @@ -20289,7 +20274,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 692 }, "_enabled": true, "__prefab": null, @@ -20317,13 +20302,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 689 + "__id__": 688 }, "_children": [], "_active": true, "_components": [ { - "__id__": 701 + "__id__": 700 } ], "_prefab": null, @@ -20362,7 +20347,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 700 + "__id__": 699 }, "_enabled": true, "__prefab": null, @@ -20384,13 +20369,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 689 + "__id__": 688 }, "_children": [], "_active": true, "_components": [ { - "__id__": 703 + "__id__": 702 } ], "_prefab": null, @@ -20429,7 +20414,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20451,7 +20436,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 689 + "__id__": 688 }, "_enabled": true, "__prefab": null, @@ -20473,27 +20458,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 689 + "__id__": 688 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 698 + "__id__": 697 }, "_sprite": { - "__id__": 696 + "__id__": 695 }, "_patrolPoint1": { - "__id__": 700 + "__id__": 699 }, "_patrolPoint2": { - "__id__": 702 + "__id__": 701 }, "_speed": 50, "_requireGoal": 12, "_curveY": false, "_patrolCurve": { - "__id__": 706 + "__id__": 705 }, "_multiplierCurve": 100, "_hitSound": { @@ -20505,7 +20490,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 707 + "__id__": 706 } }, { @@ -20549,7 +20534,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 634 + "__id__": 633 }, "_enabled": true, "__prefab": null, @@ -20575,22 +20560,22 @@ }, "_children": [ { - "__id__": 710 + "__id__": 709 }, { - "__id__": 725 + "__id__": 724 }, { - "__id__": 740 + "__id__": 739 }, { - "__id__": 755 + "__id__": 754 } ], "_active": true, "_components": [ { - "__id__": 770 + "__id__": 769 } ], "_prefab": null, @@ -20629,23 +20614,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 709 + "__id__": 708 }, "_children": [ { - "__id__": 711 + "__id__": 710 } ], "_active": true, "_components": [ { - "__id__": 720 + "__id__": 719 + }, + { + "__id__": 722 }, { "__id__": 723 - }, - { - "__id__": 724 } ], "_prefab": null, @@ -20684,29 +20669,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 710 + "__id__": 709 }, "_children": [ { - "__id__": 712 + "__id__": 711 }, { - "__id__": 715 + "__id__": 714 } ], "_active": true, "_components": [ + { + "__id__": 717 + }, { "__id__": 718 }, { - "__id__": 719 + "__id__": 720 }, { "__id__": 721 - }, - { - "__id__": 722 } ], "_prefab": null, @@ -20745,16 +20730,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 711 + "__id__": 710 }, "_children": [], "_active": true, "_components": [ { - "__id__": 713 + "__id__": 712 }, { - "__id__": 714 + "__id__": 713 } ], "_prefab": null, @@ -20793,7 +20778,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 712 + "__id__": 711 }, "_enabled": true, "__prefab": null, @@ -20815,7 +20800,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 712 + "__id__": 711 }, "_enabled": true, "__prefab": null, @@ -20854,16 +20839,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 711 + "__id__": 710 }, "_children": [], "_active": true, "_components": [ { - "__id__": 716 + "__id__": 715 }, { - "__id__": 717 + "__id__": 716 } ], "_prefab": null, @@ -20902,7 +20887,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 714 }, "_enabled": true, "__prefab": null, @@ -20924,7 +20909,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 714 }, "_enabled": true, "__prefab": null, @@ -20963,7 +20948,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 711 + "__id__": 710 }, "_enabled": true, "__prefab": null, @@ -20991,7 +20976,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 711 + "__id__": 710 }, "_enabled": true, "__prefab": null, @@ -21007,7 +20992,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 720 + "__id__": 719 }, "_enableLimit": true, "_lowerAngle": -60, @@ -21023,7 +21008,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 710 + "__id__": 709 }, "_enabled": true, "__prefab": null, @@ -21051,7 +21036,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 711 + "__id__": 710 }, "_enabled": true, "__prefab": null, @@ -21131,7 +21116,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 711 + "__id__": 710 }, "_enabled": true, "__prefab": null, @@ -21153,15 +21138,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 710 + "__id__": 709 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 724 + "__id__": 723 }, "_hingeJoint": { - "__id__": 719 + "__id__": 718 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -21178,7 +21163,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 710 + "__id__": 709 }, "_enabled": true, "__prefab": null, @@ -21201,23 +21186,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 709 + "__id__": 708 }, "_children": [ { - "__id__": 726 + "__id__": 725 } ], "_active": true, "_components": [ { - "__id__": 735 + "__id__": 734 + }, + { + "__id__": 737 }, { "__id__": 738 - }, - { - "__id__": 739 } ], "_prefab": null, @@ -21256,29 +21241,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 725 + "__id__": 724 }, "_children": [ { - "__id__": 727 + "__id__": 726 }, { - "__id__": 730 + "__id__": 729 } ], "_active": true, "_components": [ + { + "__id__": 732 + }, { "__id__": 733 }, { - "__id__": 734 + "__id__": 735 }, { "__id__": 736 - }, - { - "__id__": 737 } ], "_prefab": null, @@ -21317,16 +21302,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 726 + "__id__": 725 }, "_children": [], "_active": true, "_components": [ { - "__id__": 728 + "__id__": 727 }, { - "__id__": 729 + "__id__": 728 } ], "_prefab": null, @@ -21365,7 +21350,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 727 + "__id__": 726 }, "_enabled": true, "__prefab": null, @@ -21387,7 +21372,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 727 + "__id__": 726 }, "_enabled": true, "__prefab": null, @@ -21426,16 +21411,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 726 + "__id__": 725 }, "_children": [], "_active": true, "_components": [ { - "__id__": 731 + "__id__": 730 }, { - "__id__": 732 + "__id__": 731 } ], "_prefab": null, @@ -21474,7 +21459,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 730 + "__id__": 729 }, "_enabled": true, "__prefab": null, @@ -21496,7 +21481,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 730 + "__id__": 729 }, "_enabled": true, "__prefab": null, @@ -21535,7 +21520,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 726 + "__id__": 725 }, "_enabled": true, "__prefab": null, @@ -21563,7 +21548,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 726 + "__id__": 725 }, "_enabled": true, "__prefab": null, @@ -21579,7 +21564,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 735 + "__id__": 734 }, "_enableLimit": true, "_lowerAngle": 0, @@ -21595,7 +21580,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 724 }, "_enabled": true, "__prefab": null, @@ -21623,7 +21608,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 726 + "__id__": 725 }, "_enabled": true, "__prefab": null, @@ -21718,7 +21703,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 726 + "__id__": 725 }, "_enabled": true, "__prefab": null, @@ -21740,15 +21725,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 724 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 739 + "__id__": 738 }, "_hingeJoint": { - "__id__": 734 + "__id__": 733 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -21765,7 +21750,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 724 }, "_enabled": true, "__prefab": null, @@ -21788,23 +21773,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 709 + "__id__": 708 }, "_children": [ { - "__id__": 741 + "__id__": 740 } ], "_active": true, "_components": [ { - "__id__": 750 + "__id__": 749 + }, + { + "__id__": 752 }, { "__id__": 753 - }, - { - "__id__": 754 } ], "_prefab": null, @@ -21843,29 +21828,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 740 + "__id__": 739 }, "_children": [ { - "__id__": 742 + "__id__": 741 }, { - "__id__": 745 + "__id__": 744 } ], "_active": true, "_components": [ + { + "__id__": 747 + }, { "__id__": 748 }, { - "__id__": 749 + "__id__": 750 }, { "__id__": 751 - }, - { - "__id__": 752 } ], "_prefab": null, @@ -21904,16 +21889,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 741 + "__id__": 740 }, "_children": [], "_active": true, "_components": [ { - "__id__": 743 + "__id__": 742 }, { - "__id__": 744 + "__id__": 743 } ], "_prefab": null, @@ -21952,7 +21937,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 741 }, "_enabled": true, "__prefab": null, @@ -21974,7 +21959,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 741 }, "_enabled": true, "__prefab": null, @@ -22013,16 +21998,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 741 + "__id__": 740 }, "_children": [], "_active": true, "_components": [ { - "__id__": 746 + "__id__": 745 }, { - "__id__": 747 + "__id__": 746 } ], "_prefab": null, @@ -22061,7 +22046,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 745 + "__id__": 744 }, "_enabled": true, "__prefab": null, @@ -22083,7 +22068,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 745 + "__id__": 744 }, "_enabled": true, "__prefab": null, @@ -22122,7 +22107,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 740 }, "_enabled": true, "__prefab": null, @@ -22150,7 +22135,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 740 }, "_enabled": true, "__prefab": null, @@ -22166,7 +22151,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 750 + "__id__": 749 }, "_enableLimit": true, "_lowerAngle": 0, @@ -22182,7 +22167,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 740 + "__id__": 739 }, "_enabled": true, "__prefab": null, @@ -22210,7 +22195,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 740 }, "_enabled": true, "__prefab": null, @@ -22305,7 +22290,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 740 }, "_enabled": true, "__prefab": null, @@ -22327,15 +22312,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 740 + "__id__": 739 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 754 + "__id__": 753 }, "_hingeJoint": { - "__id__": 749 + "__id__": 748 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22352,7 +22337,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 740 + "__id__": 739 }, "_enabled": true, "__prefab": null, @@ -22375,23 +22360,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 709 + "__id__": 708 }, "_children": [ { - "__id__": 756 + "__id__": 755 } ], "_active": true, "_components": [ { - "__id__": 765 + "__id__": 764 + }, + { + "__id__": 767 }, { "__id__": 768 - }, - { - "__id__": 769 } ], "_prefab": null, @@ -22430,29 +22415,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 755 + "__id__": 754 }, "_children": [ { - "__id__": 757 + "__id__": 756 }, { - "__id__": 760 + "__id__": 759 } ], "_active": true, "_components": [ + { + "__id__": 762 + }, { "__id__": 763 }, { - "__id__": 764 + "__id__": 765 }, { "__id__": 766 - }, - { - "__id__": 767 } ], "_prefab": null, @@ -22491,16 +22476,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 756 + "__id__": 755 }, "_children": [], "_active": true, "_components": [ { - "__id__": 758 + "__id__": 757 }, { - "__id__": 759 + "__id__": 758 } ], "_prefab": null, @@ -22539,7 +22524,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 756 }, "_enabled": true, "__prefab": null, @@ -22561,7 +22546,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 756 }, "_enabled": true, "__prefab": null, @@ -22600,16 +22585,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 756 + "__id__": 755 }, "_children": [], "_active": true, "_components": [ { - "__id__": 761 + "__id__": 760 }, { - "__id__": 762 + "__id__": 761 } ], "_prefab": null, @@ -22648,7 +22633,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 760 + "__id__": 759 }, "_enabled": true, "__prefab": null, @@ -22670,7 +22655,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 760 + "__id__": 759 }, "_enabled": true, "__prefab": null, @@ -22709,7 +22694,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 756 + "__id__": 755 }, "_enabled": true, "__prefab": null, @@ -22737,7 +22722,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 756 + "__id__": 755 }, "_enabled": true, "__prefab": null, @@ -22753,7 +22738,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 765 + "__id__": 764 }, "_enableLimit": true, "_lowerAngle": -60, @@ -22769,7 +22754,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 755 + "__id__": 754 }, "_enabled": true, "__prefab": null, @@ -22797,7 +22782,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 756 + "__id__": 755 }, "_enabled": true, "__prefab": null, @@ -22877,7 +22862,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 756 + "__id__": 755 }, "_enabled": true, "__prefab": null, @@ -22899,15 +22884,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 755 + "__id__": 754 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 769 + "__id__": 768 }, "_hingeJoint": { - "__id__": 764 + "__id__": 763 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -22924,7 +22909,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 755 + "__id__": 754 }, "_enabled": true, "__prefab": null, @@ -22947,7 +22932,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 709 + "__id__": 708 }, "_enabled": true, "__prefab": null, @@ -22974,6 +22959,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 771 + }, { "__id__": 772 }, @@ -22982,9 +22970,6 @@ }, { "__id__": 774 - }, - { - "__id__": 775 } ], "_prefab": null, @@ -23023,7 +23008,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 771 + "__id__": 770 }, "_enabled": true, "__prefab": null, @@ -23045,7 +23030,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 771 + "__id__": 770 }, "_enabled": true, "__prefab": null, @@ -23073,12 +23058,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 771 + "__id__": 770 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 773 + "__id__": 772 }, "_id": "63rfzsm3REkprs+s68PCRK" }, @@ -23088,7 +23073,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 771 + "__id__": 770 }, "_enabled": true, "__prefab": null, @@ -23120,211 +23105,211 @@ }, "_children": [ { - "__id__": 777 + "__id__": 776 }, { - "__id__": 780 + "__id__": 779 }, { - "__id__": 783 + "__id__": 782 }, { - "__id__": 786 + "__id__": 785 }, { - "__id__": 789 + "__id__": 788 }, { - "__id__": 792 + "__id__": 791 }, { - "__id__": 795 + "__id__": 794 }, { - "__id__": 798 + "__id__": 797 }, { - "__id__": 801 + "__id__": 800 }, { - "__id__": 804 + "__id__": 803 }, { - "__id__": 807 + "__id__": 806 }, { - "__id__": 810 + "__id__": 809 }, { - "__id__": 813 + "__id__": 812 }, { - "__id__": 816 + "__id__": 815 }, { - "__id__": 819 + "__id__": 818 }, { - "__id__": 822 + "__id__": 821 }, { - "__id__": 825 + "__id__": 824 }, { - "__id__": 828 + "__id__": 827 }, { - "__id__": 831 + "__id__": 830 }, { - "__id__": 834 + "__id__": 833 }, { - "__id__": 837 + "__id__": 836 }, { - "__id__": 840 + "__id__": 839 }, { - "__id__": 843 + "__id__": 842 }, { - "__id__": 846 + "__id__": 845 }, { - "__id__": 849 + "__id__": 848 }, { - "__id__": 852 + "__id__": 851 }, { - "__id__": 855 + "__id__": 854 }, { - "__id__": 858 + "__id__": 857 }, { - "__id__": 861 + "__id__": 860 }, { - "__id__": 864 + "__id__": 863 }, { - "__id__": 867 + "__id__": 866 }, { - "__id__": 870 + "__id__": 869 }, { - "__id__": 873 + "__id__": 872 }, { - "__id__": 876 + "__id__": 875 }, { - "__id__": 879 + "__id__": 878 }, { - "__id__": 882 + "__id__": 881 }, { - "__id__": 885 + "__id__": 884 }, { - "__id__": 888 + "__id__": 887 }, { - "__id__": 891 + "__id__": 890 }, { - "__id__": 894 + "__id__": 893 }, { - "__id__": 897 + "__id__": 896 }, { - "__id__": 900 + "__id__": 899 }, { - "__id__": 903 + "__id__": 902 }, { - "__id__": 906 + "__id__": 905 }, { - "__id__": 909 + "__id__": 908 }, { - "__id__": 912 + "__id__": 911 }, { - "__id__": 915 + "__id__": 914 }, { - "__id__": 918 + "__id__": 917 }, { - "__id__": 921 + "__id__": 920 }, { - "__id__": 924 + "__id__": 923 }, { - "__id__": 927 + "__id__": 926 }, { - "__id__": 930 + "__id__": 929 }, { - "__id__": 933 + "__id__": 932 }, { - "__id__": 936 + "__id__": 935 }, { - "__id__": 939 + "__id__": 938 }, { - "__id__": 942 + "__id__": 941 }, { - "__id__": 945 + "__id__": 944 }, { - "__id__": 948 + "__id__": 947 }, { - "__id__": 951 + "__id__": 950 }, { - "__id__": 954 + "__id__": 953 }, { - "__id__": 957 + "__id__": 956 }, { - "__id__": 960 + "__id__": 959 }, { - "__id__": 963 + "__id__": 962 }, { - "__id__": 966 + "__id__": 965 }, { - "__id__": 969 + "__id__": 968 }, { - "__id__": 972 + "__id__": 971 } ], "_active": true, "_components": [ { - "__id__": 975 + "__id__": 974 }, { - "__id__": 976 + "__id__": 975 } ], "_prefab": null, @@ -23363,16 +23348,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 778 + "__id__": 777 }, { - "__id__": 779 + "__id__": 778 } ], "_prefab": null, @@ -23411,7 +23396,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 777 + "__id__": 776 }, "_enabled": true, "__prefab": null, @@ -23433,7 +23418,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 777 + "__id__": 776 }, "_enabled": true, "__prefab": null, @@ -23472,16 +23457,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 781 + "__id__": 780 }, { - "__id__": 782 + "__id__": 781 } ], "_prefab": null, @@ -23520,7 +23505,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 780 + "__id__": 779 }, "_enabled": true, "__prefab": null, @@ -23542,7 +23527,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 780 + "__id__": 779 }, "_enabled": true, "__prefab": null, @@ -23581,16 +23566,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 784 + "__id__": 783 }, { - "__id__": 785 + "__id__": 784 } ], "_prefab": null, @@ -23629,7 +23614,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, @@ -23651,7 +23636,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, @@ -23690,16 +23675,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 787 + "__id__": 786 }, { - "__id__": 788 + "__id__": 787 } ], "_prefab": null, @@ -23738,7 +23723,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 786 + "__id__": 785 }, "_enabled": true, "__prefab": null, @@ -23760,7 +23745,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 786 + "__id__": 785 }, "_enabled": true, "__prefab": null, @@ -23799,16 +23784,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 790 + "__id__": 789 }, { - "__id__": 791 + "__id__": 790 } ], "_prefab": null, @@ -23847,7 +23832,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, @@ -23869,7 +23854,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, @@ -23908,16 +23893,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 793 + "__id__": 792 }, { - "__id__": 794 + "__id__": 793 } ], "_prefab": null, @@ -23956,7 +23941,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 792 + "__id__": 791 }, "_enabled": true, "__prefab": null, @@ -23978,7 +23963,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 792 + "__id__": 791 }, "_enabled": true, "__prefab": null, @@ -24017,16 +24002,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 796 + "__id__": 795 }, { - "__id__": 797 + "__id__": 796 } ], "_prefab": null, @@ -24065,7 +24050,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 795 + "__id__": 794 }, "_enabled": true, "__prefab": null, @@ -24087,7 +24072,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 795 + "__id__": 794 }, "_enabled": true, "__prefab": null, @@ -24126,16 +24111,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 799 + "__id__": 798 }, { - "__id__": 800 + "__id__": 799 } ], "_prefab": null, @@ -24174,7 +24159,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 798 + "__id__": 797 }, "_enabled": true, "__prefab": null, @@ -24196,7 +24181,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 798 + "__id__": 797 }, "_enabled": true, "__prefab": null, @@ -24235,16 +24220,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 802 + "__id__": 801 }, { - "__id__": 803 + "__id__": 802 } ], "_prefab": null, @@ -24283,7 +24268,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 800 }, "_enabled": true, "__prefab": null, @@ -24305,7 +24290,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 800 }, "_enabled": true, "__prefab": null, @@ -24344,16 +24329,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 805 + "__id__": 804 }, { - "__id__": 806 + "__id__": 805 } ], "_prefab": null, @@ -24392,7 +24377,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 804 + "__id__": 803 }, "_enabled": true, "__prefab": null, @@ -24414,7 +24399,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 804 + "__id__": 803 }, "_enabled": true, "__prefab": null, @@ -24453,16 +24438,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 808 + "__id__": 807 }, { - "__id__": 809 + "__id__": 808 } ], "_prefab": null, @@ -24501,7 +24486,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 806 }, "_enabled": true, "__prefab": null, @@ -24523,7 +24508,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 806 }, "_enabled": true, "__prefab": null, @@ -24562,16 +24547,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 811 + "__id__": 810 }, { - "__id__": 812 + "__id__": 811 } ], "_prefab": null, @@ -24610,7 +24595,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 810 + "__id__": 809 }, "_enabled": true, "__prefab": null, @@ -24632,7 +24617,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 810 + "__id__": 809 }, "_enabled": true, "__prefab": null, @@ -24671,16 +24656,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 814 + "__id__": 813 }, { - "__id__": 815 + "__id__": 814 } ], "_prefab": null, @@ -24719,7 +24704,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 812 }, "_enabled": true, "__prefab": null, @@ -24741,7 +24726,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 812 }, "_enabled": true, "__prefab": null, @@ -24780,16 +24765,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 817 + "__id__": 816 }, { - "__id__": 818 + "__id__": 817 } ], "_prefab": null, @@ -24828,7 +24813,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 816 + "__id__": 815 }, "_enabled": true, "__prefab": null, @@ -24850,7 +24835,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 816 + "__id__": 815 }, "_enabled": true, "__prefab": null, @@ -24889,16 +24874,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 820 + "__id__": 819 }, { - "__id__": 821 + "__id__": 820 } ], "_prefab": null, @@ -24937,7 +24922,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 818 }, "_enabled": true, "__prefab": null, @@ -24959,7 +24944,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 818 }, "_enabled": true, "__prefab": null, @@ -24998,16 +24983,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 823 + "__id__": 822 }, { - "__id__": 824 + "__id__": 823 } ], "_prefab": null, @@ -25046,7 +25031,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 821 }, "_enabled": true, "__prefab": null, @@ -25068,7 +25053,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 821 }, "_enabled": true, "__prefab": null, @@ -25107,16 +25092,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 826 + "__id__": 825 }, { - "__id__": 827 + "__id__": 826 } ], "_prefab": null, @@ -25155,7 +25140,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 824 }, "_enabled": true, "__prefab": null, @@ -25177,7 +25162,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 824 }, "_enabled": true, "__prefab": null, @@ -25216,16 +25201,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 829 + "__id__": 828 }, { - "__id__": 830 + "__id__": 829 } ], "_prefab": null, @@ -25264,7 +25249,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 828 + "__id__": 827 }, "_enabled": true, "__prefab": null, @@ -25286,7 +25271,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 828 + "__id__": 827 }, "_enabled": true, "__prefab": null, @@ -25325,16 +25310,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 832 + "__id__": 831 }, { - "__id__": 833 + "__id__": 832 } ], "_prefab": null, @@ -25373,7 +25358,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 831 + "__id__": 830 }, "_enabled": true, "__prefab": null, @@ -25395,7 +25380,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 831 + "__id__": 830 }, "_enabled": true, "__prefab": null, @@ -25434,16 +25419,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 835 + "__id__": 834 }, { - "__id__": 836 + "__id__": 835 } ], "_prefab": null, @@ -25482,7 +25467,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 834 + "__id__": 833 }, "_enabled": true, "__prefab": null, @@ -25504,7 +25489,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 834 + "__id__": 833 }, "_enabled": true, "__prefab": null, @@ -25543,16 +25528,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 838 + "__id__": 837 }, { - "__id__": 839 + "__id__": 838 } ], "_prefab": null, @@ -25591,7 +25576,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 837 + "__id__": 836 }, "_enabled": true, "__prefab": null, @@ -25613,7 +25598,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 837 + "__id__": 836 }, "_enabled": true, "__prefab": null, @@ -25652,16 +25637,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 841 + "__id__": 840 }, { - "__id__": 842 + "__id__": 841 } ], "_prefab": null, @@ -25700,7 +25685,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 840 + "__id__": 839 }, "_enabled": true, "__prefab": null, @@ -25722,7 +25707,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 840 + "__id__": 839 }, "_enabled": true, "__prefab": null, @@ -25761,16 +25746,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 844 + "__id__": 843 }, { - "__id__": 845 + "__id__": 844 } ], "_prefab": null, @@ -25809,7 +25794,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 842 }, "_enabled": true, "__prefab": null, @@ -25831,7 +25816,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 842 }, "_enabled": true, "__prefab": null, @@ -25870,16 +25855,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 847 + "__id__": 846 }, { - "__id__": 848 + "__id__": 847 } ], "_prefab": null, @@ -25918,7 +25903,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 845 }, "_enabled": true, "__prefab": null, @@ -25940,7 +25925,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 845 }, "_enabled": true, "__prefab": null, @@ -25979,16 +25964,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 850 + "__id__": 849 }, { - "__id__": 851 + "__id__": 850 } ], "_prefab": null, @@ -26027,7 +26012,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 849 + "__id__": 848 }, "_enabled": true, "__prefab": null, @@ -26049,7 +26034,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 849 + "__id__": 848 }, "_enabled": true, "__prefab": null, @@ -26088,16 +26073,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 853 + "__id__": 852 }, { - "__id__": 854 + "__id__": 853 } ], "_prefab": null, @@ -26136,7 +26121,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 852 + "__id__": 851 }, "_enabled": true, "__prefab": null, @@ -26158,7 +26143,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 852 + "__id__": 851 }, "_enabled": true, "__prefab": null, @@ -26197,16 +26182,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 856 + "__id__": 855 }, { - "__id__": 857 + "__id__": 856 } ], "_prefab": null, @@ -26245,7 +26230,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 854 }, "_enabled": true, "__prefab": null, @@ -26267,7 +26252,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 854 }, "_enabled": true, "__prefab": null, @@ -26306,16 +26291,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 859 + "__id__": 858 }, { - "__id__": 860 + "__id__": 859 } ], "_prefab": null, @@ -26354,7 +26339,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 857 }, "_enabled": true, "__prefab": null, @@ -26376,7 +26361,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 857 }, "_enabled": true, "__prefab": null, @@ -26415,16 +26400,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 862 + "__id__": 861 }, { - "__id__": 863 + "__id__": 862 } ], "_prefab": null, @@ -26463,7 +26448,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 860 }, "_enabled": true, "__prefab": null, @@ -26485,7 +26470,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 860 }, "_enabled": true, "__prefab": null, @@ -26524,16 +26509,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 865 + "__id__": 864 }, { - "__id__": 866 + "__id__": 865 } ], "_prefab": null, @@ -26572,7 +26557,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 864 + "__id__": 863 }, "_enabled": true, "__prefab": null, @@ -26594,7 +26579,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 864 + "__id__": 863 }, "_enabled": true, "__prefab": null, @@ -26633,16 +26618,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 868 + "__id__": 867 }, { - "__id__": 869 + "__id__": 868 } ], "_prefab": null, @@ -26681,7 +26666,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 867 + "__id__": 866 }, "_enabled": true, "__prefab": null, @@ -26703,7 +26688,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 867 + "__id__": 866 }, "_enabled": true, "__prefab": null, @@ -26742,16 +26727,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 871 + "__id__": 870 }, { - "__id__": 872 + "__id__": 871 } ], "_prefab": null, @@ -26790,7 +26775,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 870 + "__id__": 869 }, "_enabled": true, "__prefab": null, @@ -26812,7 +26797,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 870 + "__id__": 869 }, "_enabled": true, "__prefab": null, @@ -26851,16 +26836,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 874 + "__id__": 873 }, { - "__id__": 875 + "__id__": 874 } ], "_prefab": null, @@ -26899,7 +26884,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 873 + "__id__": 872 }, "_enabled": true, "__prefab": null, @@ -26921,7 +26906,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 873 + "__id__": 872 }, "_enabled": true, "__prefab": null, @@ -26960,16 +26945,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 877 + "__id__": 876 }, { - "__id__": 878 + "__id__": 877 } ], "_prefab": null, @@ -27008,7 +26993,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 876 + "__id__": 875 }, "_enabled": true, "__prefab": null, @@ -27030,7 +27015,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 876 + "__id__": 875 }, "_enabled": true, "__prefab": null, @@ -27069,16 +27054,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 880 + "__id__": 879 }, { - "__id__": 881 + "__id__": 880 } ], "_prefab": null, @@ -27117,7 +27102,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 879 + "__id__": 878 }, "_enabled": true, "__prefab": null, @@ -27139,7 +27124,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 879 + "__id__": 878 }, "_enabled": true, "__prefab": null, @@ -27178,16 +27163,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 883 + "__id__": 882 }, { - "__id__": 884 + "__id__": 883 } ], "_prefab": null, @@ -27226,7 +27211,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 882 + "__id__": 881 }, "_enabled": true, "__prefab": null, @@ -27248,7 +27233,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 882 + "__id__": 881 }, "_enabled": true, "__prefab": null, @@ -27287,16 +27272,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 886 + "__id__": 885 }, { - "__id__": 887 + "__id__": 886 } ], "_prefab": null, @@ -27335,7 +27320,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 885 + "__id__": 884 }, "_enabled": true, "__prefab": null, @@ -27357,7 +27342,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 885 + "__id__": 884 }, "_enabled": true, "__prefab": null, @@ -27396,16 +27381,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 889 + "__id__": 888 }, { - "__id__": 890 + "__id__": 889 } ], "_prefab": null, @@ -27444,7 +27429,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 888 + "__id__": 887 }, "_enabled": true, "__prefab": null, @@ -27466,7 +27451,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 888 + "__id__": 887 }, "_enabled": true, "__prefab": null, @@ -27505,16 +27490,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 892 + "__id__": 891 }, { - "__id__": 893 + "__id__": 892 } ], "_prefab": null, @@ -27553,7 +27538,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 891 + "__id__": 890 }, "_enabled": true, "__prefab": null, @@ -27575,7 +27560,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 891 + "__id__": 890 }, "_enabled": true, "__prefab": null, @@ -27614,16 +27599,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 895 + "__id__": 894 }, { - "__id__": 896 + "__id__": 895 } ], "_prefab": null, @@ -27662,7 +27647,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 893 }, "_enabled": true, "__prefab": null, @@ -27684,7 +27669,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 893 }, "_enabled": true, "__prefab": null, @@ -27723,16 +27708,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 898 + "__id__": 897 }, { - "__id__": 899 + "__id__": 898 } ], "_prefab": null, @@ -27771,7 +27756,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 897 + "__id__": 896 }, "_enabled": true, "__prefab": null, @@ -27793,7 +27778,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 897 + "__id__": 896 }, "_enabled": true, "__prefab": null, @@ -27832,16 +27817,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 901 + "__id__": 900 }, { - "__id__": 902 + "__id__": 901 } ], "_prefab": null, @@ -27880,7 +27865,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 900 + "__id__": 899 }, "_enabled": true, "__prefab": null, @@ -27902,7 +27887,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 900 + "__id__": 899 }, "_enabled": true, "__prefab": null, @@ -27941,16 +27926,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 904 + "__id__": 903 }, { - "__id__": 905 + "__id__": 904 } ], "_prefab": null, @@ -27989,7 +27974,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 902 }, "_enabled": true, "__prefab": null, @@ -28011,7 +27996,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 902 }, "_enabled": true, "__prefab": null, @@ -28050,16 +28035,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 907 + "__id__": 906 }, { - "__id__": 908 + "__id__": 907 } ], "_prefab": null, @@ -28098,7 +28083,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 906 + "__id__": 905 }, "_enabled": true, "__prefab": null, @@ -28120,7 +28105,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 906 + "__id__": 905 }, "_enabled": true, "__prefab": null, @@ -28159,16 +28144,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 910 + "__id__": 909 }, { - "__id__": 911 + "__id__": 910 } ], "_prefab": null, @@ -28207,7 +28192,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 908 }, "_enabled": true, "__prefab": null, @@ -28229,7 +28214,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 908 }, "_enabled": true, "__prefab": null, @@ -28268,16 +28253,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 913 + "__id__": 912 }, { - "__id__": 914 + "__id__": 913 } ], "_prefab": null, @@ -28316,7 +28301,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 912 + "__id__": 911 }, "_enabled": true, "__prefab": null, @@ -28338,7 +28323,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 912 + "__id__": 911 }, "_enabled": true, "__prefab": null, @@ -28377,16 +28362,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 916 + "__id__": 915 }, { - "__id__": 917 + "__id__": 916 } ], "_prefab": null, @@ -28425,7 +28410,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 914 }, "_enabled": true, "__prefab": null, @@ -28447,7 +28432,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 914 }, "_enabled": true, "__prefab": null, @@ -28486,16 +28471,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 919 + "__id__": 918 }, { - "__id__": 920 + "__id__": 919 } ], "_prefab": null, @@ -28534,7 +28519,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 917 }, "_enabled": true, "__prefab": null, @@ -28556,7 +28541,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 917 }, "_enabled": true, "__prefab": null, @@ -28595,16 +28580,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 922 + "__id__": 921 }, { - "__id__": 923 + "__id__": 922 } ], "_prefab": null, @@ -28643,7 +28628,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 920 }, "_enabled": true, "__prefab": null, @@ -28665,7 +28650,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 920 }, "_enabled": true, "__prefab": null, @@ -28704,16 +28689,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 925 + "__id__": 924 }, { - "__id__": 926 + "__id__": 925 } ], "_prefab": null, @@ -28752,7 +28737,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 924 + "__id__": 923 }, "_enabled": true, "__prefab": null, @@ -28774,7 +28759,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 924 + "__id__": 923 }, "_enabled": true, "__prefab": null, @@ -28813,16 +28798,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 928 + "__id__": 927 }, { - "__id__": 929 + "__id__": 928 } ], "_prefab": null, @@ -28861,7 +28846,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 926 }, "_enabled": true, "__prefab": null, @@ -28883,7 +28868,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 926 }, "_enabled": true, "__prefab": null, @@ -28922,16 +28907,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 931 + "__id__": 930 }, { - "__id__": 932 + "__id__": 931 } ], "_prefab": null, @@ -28970,7 +28955,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 930 + "__id__": 929 }, "_enabled": true, "__prefab": null, @@ -28992,7 +28977,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 930 + "__id__": 929 }, "_enabled": true, "__prefab": null, @@ -29031,16 +29016,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 934 + "__id__": 933 }, { - "__id__": 935 + "__id__": 934 } ], "_prefab": null, @@ -29079,7 +29064,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 932 }, "_enabled": true, "__prefab": null, @@ -29101,7 +29086,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 932 }, "_enabled": true, "__prefab": null, @@ -29140,16 +29125,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 937 + "__id__": 936 }, { - "__id__": 938 + "__id__": 937 } ], "_prefab": null, @@ -29188,7 +29173,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 936 + "__id__": 935 }, "_enabled": true, "__prefab": null, @@ -29210,7 +29195,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 936 + "__id__": 935 }, "_enabled": true, "__prefab": null, @@ -29249,16 +29234,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 940 + "__id__": 939 }, { - "__id__": 941 + "__id__": 940 } ], "_prefab": null, @@ -29297,7 +29282,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 939 + "__id__": 938 }, "_enabled": true, "__prefab": null, @@ -29319,7 +29304,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 939 + "__id__": 938 }, "_enabled": true, "__prefab": null, @@ -29358,16 +29343,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 943 + "__id__": 942 }, { - "__id__": 944 + "__id__": 943 } ], "_prefab": null, @@ -29406,7 +29391,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 941 }, "_enabled": true, "__prefab": null, @@ -29428,7 +29413,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 941 }, "_enabled": true, "__prefab": null, @@ -29467,16 +29452,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 946 + "__id__": 945 }, { - "__id__": 947 + "__id__": 946 } ], "_prefab": null, @@ -29515,7 +29500,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 945 + "__id__": 944 }, "_enabled": true, "__prefab": null, @@ -29537,7 +29522,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 945 + "__id__": 944 }, "_enabled": true, "__prefab": null, @@ -29576,16 +29561,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 949 + "__id__": 948 }, { - "__id__": 950 + "__id__": 949 } ], "_prefab": null, @@ -29624,7 +29609,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 948 + "__id__": 947 }, "_enabled": true, "__prefab": null, @@ -29646,7 +29631,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 948 + "__id__": 947 }, "_enabled": true, "__prefab": null, @@ -29685,16 +29670,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 952 + "__id__": 951 }, { - "__id__": 953 + "__id__": 952 } ], "_prefab": null, @@ -29733,7 +29718,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 950 }, "_enabled": true, "__prefab": null, @@ -29755,7 +29740,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 950 }, "_enabled": true, "__prefab": null, @@ -29794,16 +29779,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 955 + "__id__": 954 }, { - "__id__": 956 + "__id__": 955 } ], "_prefab": null, @@ -29842,7 +29827,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 954 + "__id__": 953 }, "_enabled": true, "__prefab": null, @@ -29864,7 +29849,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 954 + "__id__": 953 }, "_enabled": true, "__prefab": null, @@ -29903,16 +29888,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 958 + "__id__": 957 }, { - "__id__": 959 + "__id__": 958 } ], "_prefab": null, @@ -29951,7 +29936,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 956 }, "_enabled": true, "__prefab": null, @@ -29973,7 +29958,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 956 }, "_enabled": true, "__prefab": null, @@ -30012,16 +29997,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 961 + "__id__": 960 }, { - "__id__": 962 + "__id__": 961 } ], "_prefab": null, @@ -30060,7 +30045,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 959 }, "_enabled": true, "__prefab": null, @@ -30082,7 +30067,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 959 }, "_enabled": true, "__prefab": null, @@ -30121,16 +30106,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 964 + "__id__": 963 }, { - "__id__": 965 + "__id__": 964 } ], "_prefab": null, @@ -30169,7 +30154,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 963 + "__id__": 962 }, "_enabled": true, "__prefab": null, @@ -30191,7 +30176,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 963 + "__id__": 962 }, "_enabled": true, "__prefab": null, @@ -30230,16 +30215,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 967 + "__id__": 966 }, { - "__id__": 968 + "__id__": 967 } ], "_prefab": null, @@ -30278,7 +30263,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 966 + "__id__": 965 }, "_enabled": true, "__prefab": null, @@ -30300,7 +30285,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 966 + "__id__": 965 }, "_enabled": true, "__prefab": null, @@ -30339,16 +30324,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 970 + "__id__": 969 }, { - "__id__": 971 + "__id__": 970 } ], "_prefab": null, @@ -30387,7 +30372,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 968 }, "_enabled": true, "__prefab": null, @@ -30409,7 +30394,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 968 }, "_enabled": true, "__prefab": null, @@ -30448,16 +30433,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 776 + "__id__": 775 }, "_children": [], "_active": true, "_components": [ { - "__id__": 973 + "__id__": 972 }, { - "__id__": 974 + "__id__": 973 } ], "_prefab": null, @@ -30496,7 +30481,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 972 + "__id__": 971 }, "_enabled": true, "__prefab": null, @@ -30518,7 +30503,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 972 + "__id__": 971 }, "_enabled": true, "__prefab": null, @@ -30557,7 +30542,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 776 + "__id__": 775 }, "_enabled": true, "__prefab": null, @@ -30579,221 +30564,221 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 776 + "__id__": 775 }, "_enabled": true, "__prefab": null, "_objects": [ { - "__id__": 977 + "__id__": 976 }, { - "__id__": 978 + "__id__": 977 } ], "_boosters": [ { - "__id__": 979 + "__id__": 978 } ], "_spawnPoints": [ { - "__id__": 777 + "__id__": 776 }, { - "__id__": 780 + "__id__": 779 }, { - "__id__": 783 + "__id__": 782 }, { - "__id__": 786 + "__id__": 785 }, { - "__id__": 789 + "__id__": 788 }, { - "__id__": 792 + "__id__": 791 }, { - "__id__": 795 + "__id__": 794 }, { - "__id__": 798 + "__id__": 797 }, { - "__id__": 801 + "__id__": 800 }, { - "__id__": 804 + "__id__": 803 }, { - "__id__": 807 + "__id__": 806 }, { - "__id__": 810 + "__id__": 809 }, { - "__id__": 813 + "__id__": 812 }, { - "__id__": 816 + "__id__": 815 }, { - "__id__": 819 + "__id__": 818 }, { - "__id__": 822 + "__id__": 821 }, { - "__id__": 825 + "__id__": 824 }, { - "__id__": 828 + "__id__": 827 }, { - "__id__": 831 + "__id__": 830 }, { - "__id__": 834 + "__id__": 833 }, { - "__id__": 837 + "__id__": 836 }, { - "__id__": 840 + "__id__": 839 }, { - "__id__": 843 + "__id__": 842 }, { - "__id__": 846 + "__id__": 845 }, { - "__id__": 849 + "__id__": 848 }, { - "__id__": 852 + "__id__": 851 }, { - "__id__": 855 + "__id__": 854 }, { - "__id__": 858 + "__id__": 857 }, { - "__id__": 861 + "__id__": 860 }, { - "__id__": 864 + "__id__": 863 }, { - "__id__": 867 + "__id__": 866 }, { - "__id__": 870 + "__id__": 869 }, { - "__id__": 873 + "__id__": 872 }, { - "__id__": 876 + "__id__": 875 }, { - "__id__": 879 + "__id__": 878 }, { - "__id__": 882 + "__id__": 881 }, { - "__id__": 885 + "__id__": 884 }, { - "__id__": 888 + "__id__": 887 }, { - "__id__": 891 + "__id__": 890 }, { - "__id__": 894 + "__id__": 893 }, { - "__id__": 897 + "__id__": 896 }, { - "__id__": 900 + "__id__": 899 }, { - "__id__": 903 + "__id__": 902 }, { - "__id__": 906 + "__id__": 905 }, { - "__id__": 909 + "__id__": 908 }, { - "__id__": 912 + "__id__": 911 }, { - "__id__": 915 + "__id__": 914 }, { - "__id__": 918 + "__id__": 917 }, { - "__id__": 921 + "__id__": 920 }, { - "__id__": 924 + "__id__": 923 }, { - "__id__": 927 + "__id__": 926 }, { - "__id__": 930 + "__id__": 929 }, { - "__id__": 933 + "__id__": 932 }, { - "__id__": 936 + "__id__": 935 }, { - "__id__": 939 + "__id__": 938 }, { - "__id__": 942 + "__id__": 941 }, { - "__id__": 945 + "__id__": 944 }, { - "__id__": 948 + "__id__": 947 }, { - "__id__": 951 + "__id__": 950 }, { - "__id__": 954 + "__id__": 953 }, { - "__id__": 957 + "__id__": 956 }, { - "__id__": 960 + "__id__": 959 }, { - "__id__": 963 + "__id__": 962 }, { - "__id__": 966 + "__id__": 965 }, { - "__id__": 969 + "__id__": 968 }, { - "__id__": 972 + "__id__": 971 } ], "_spawnTime": 1.5, @@ -30846,10 +30831,10 @@ "_active": true, "_components": [ { - "__id__": 981 + "__id__": 980 }, { - "__id__": 982 + "__id__": 981 } ], "_prefab": null, @@ -30888,7 +30873,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 980 + "__id__": 979 }, "_enabled": true, "__prefab": null, @@ -30910,7 +30895,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 980 + "__id__": 979 }, "_enabled": true, "__prefab": null, @@ -30955,7 +30940,7 @@ "_active": true, "_components": [ { - "__id__": 984 + "__id__": 983 } ], "_prefab": null, @@ -30994,7 +30979,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 983 + "__id__": 982 }, "_enabled": true, "__prefab": null, @@ -31020,16 +31005,16 @@ }, "_children": [ { - "__id__": 986 + "__id__": 985 }, { - "__id__": 1121 + "__id__": 1120 } ], "_active": true, "_components": [ { - "__id__": 1256 + "__id__": 1255 } ], "_prefab": null, @@ -31068,26 +31053,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 985 + "__id__": 984 }, "_children": [ { - "__id__": 987 + "__id__": 986 }, { - "__id__": 992 + "__id__": 991 } ], "_active": true, "_components": [ + { + "__id__": 1117 + }, { "__id__": 1118 }, { "__id__": 1119 - }, - { - "__id__": 1120 } ], "_prefab": null, @@ -31126,11 +31111,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 986 + "__id__": 985 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 987 + }, { "__id__": 988 }, @@ -31139,9 +31127,6 @@ }, { "__id__": 990 - }, - { - "__id__": 991 } ], "_prefab": null, @@ -31180,7 +31165,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 987 + "__id__": 986 }, "_enabled": true, "__prefab": null, @@ -31202,7 +31187,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 987 + "__id__": 986 }, "_enabled": true, "__prefab": null, @@ -31241,7 +31226,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 987 + "__id__": 986 }, "_enabled": true, "__prefab": null, @@ -31269,7 +31254,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 987 + "__id__": 986 }, "_enabled": true, "__prefab": null, @@ -31297,20 +31282,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 986 + "__id__": 985 }, "_children": [ { - "__id__": 993 + "__id__": 992 }, { - "__id__": 1052 + "__id__": 1051 } ], "_active": false, "_components": [ { - "__id__": 1117 + "__id__": 1116 } ], "_prefab": null, @@ -31349,19 +31334,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 992 + "__id__": 991 }, "_children": [], "_active": true, "_components": [ { - "__id__": 994 + "__id__": 993 + }, + { + "__id__": 1049 }, { "__id__": 1050 - }, - { - "__id__": 1051 } ], "_prefab": null, @@ -31400,7 +31385,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -31413,60 +31398,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 995 + "__id__": 994 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 996 + "__id__": 995 }, "startSize": { - "__id__": 996 + "__id__": 995 }, "startSizeY": { - "__id__": 997 + "__id__": 996 }, "startSizeZ": { - "__id__": 998 + "__id__": 997 }, "startSpeed": { - "__id__": 999 + "__id__": 998 }, "startRotation3D": false, "startRotationX": { - "__id__": 1000 + "__id__": 999 }, "startRotationY": { - "__id__": 1001 + "__id__": 1000 }, "startRotationZ": { - "__id__": 1002 + "__id__": 1001 }, "startRotation": { - "__id__": 1002 + "__id__": 1001 }, "startDelay": { - "__id__": 1003 + "__id__": 1002 }, "startLifetime": { - "__id__": 1004 + "__id__": 1003 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1005 + "__id__": 1004 }, "rateOverTime": { - "__id__": 1006 + "__id__": 1005 }, "rateOverDistance": { - "__id__": 1007 + "__id__": 1006 }, "bursts": [ { - "__id__": 1008 + "__id__": 1007 } ], "_renderCulling": false, @@ -31477,37 +31462,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1010 + "__id__": 1009 }, "_shapeModule": { - "__id__": 1012 + "__id__": 1011 }, "_sizeOvertimeModule": { - "__id__": 1014 + "__id__": 1013 }, "_velocityOvertimeModule": { - "__id__": 1020 + "__id__": 1019 }, "_forceOvertimeModule": { - "__id__": 1026 + "__id__": 1025 }, "_limitVelocityOvertimeModule": { - "__id__": 1030 + "__id__": 1029 }, "_rotationOvertimeModule": { - "__id__": 1035 + "__id__": 1034 }, "_textureAnimationModule": { - "__id__": 1039 + "__id__": 1038 }, "_noiseModule": { - "__id__": 1043 + "__id__": 1042 }, "_trailModule": { - "__id__": 1044 + "__id__": 1043 }, "renderer": { - "__id__": 1049 + "__id__": 1048 }, "_prewarm": false, "_capacity": 8, @@ -31607,7 +31592,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1009 + "__id__": 1008 } }, { @@ -31620,7 +31605,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1011 + "__id__": 1010 } }, { @@ -31649,7 +31634,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1013 + "__id__": 1012 }, "length": 5, "boxThickness": { @@ -31690,23 +31675,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1015 + "__id__": 1014 }, "x": { - "__id__": 1017 + "__id__": 1016 }, "y": { - "__id__": 1018 + "__id__": 1017 }, "z": { - "__id__": 1019 + "__id__": 1018 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1016 + "__id__": 1015 }, "multiplier": 1 }, @@ -31767,16 +31752,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1021 + "__id__": 1020 }, "y": { - "__id__": 1022 + "__id__": 1021 }, "z": { - "__id__": 1024 + "__id__": 1023 }, "speedModifier": { - "__id__": 1025 + "__id__": 1024 }, "space": 1 }, @@ -31790,7 +31775,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1023 + "__id__": 1022 }, "multiplier": 1 }, @@ -31845,13 +31830,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1027 + "__id__": 1026 }, "y": { - "__id__": 1028 + "__id__": 1027 }, "z": { - "__id__": 1029 + "__id__": 1028 }, "space": 1 }, @@ -31877,16 +31862,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1031 + "__id__": 1030 }, "limitY": { - "__id__": 1032 + "__id__": 1031 }, "limitZ": { - "__id__": 1033 + "__id__": 1032 }, "limit": { - "__id__": 1034 + "__id__": 1033 }, "dampen": 3, "separateAxes": false, @@ -31921,13 +31906,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1036 + "__id__": 1035 }, "y": { - "__id__": 1037 + "__id__": 1036 }, "z": { - "__id__": 1038 + "__id__": 1037 } }, { @@ -31961,10 +31946,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1040 + "__id__": 1039 }, "startFrame": { - "__id__": 1042 + "__id__": 1041 }, "cycleCount": 0, "_flipU": 0, @@ -31977,7 +31962,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1041 + "__id__": 1040 }, "multiplier": 1 }, @@ -32044,25 +32029,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1045 + "__id__": 1044 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1046 + "__id__": 1045 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1047 + "__id__": 1046 }, "colorOvertime": { - "__id__": 1048 + "__id__": 1047 }, "_space": 0, "_particleSystem": { - "__id__": 994 + "__id__": 993 } }, { @@ -32123,7 +32108,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -32135,7 +32120,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -32157,19 +32142,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 992 + "__id__": 991 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1053 + "__id__": 1052 + }, + { + "__id__": 1114 }, { "__id__": 1115 - }, - { - "__id__": 1116 } ], "_prefab": null, @@ -32208,7 +32193,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1052 + "__id__": 1051 }, "_enabled": true, "__prefab": null, @@ -32221,60 +32206,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1054 + "__id__": 1053 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1055 + "__id__": 1054 }, "startSize": { - "__id__": 1055 + "__id__": 1054 }, "startSizeY": { - "__id__": 1056 + "__id__": 1055 }, "startSizeZ": { - "__id__": 1057 + "__id__": 1056 }, "startSpeed": { - "__id__": 1058 + "__id__": 1057 }, "startRotation3D": false, "startRotationX": { - "__id__": 1059 + "__id__": 1058 }, "startRotationY": { - "__id__": 1060 + "__id__": 1059 }, "startRotationZ": { - "__id__": 1061 + "__id__": 1060 }, "startRotation": { - "__id__": 1061 + "__id__": 1060 }, "startDelay": { - "__id__": 1062 + "__id__": 1061 }, "startLifetime": { - "__id__": 1063 + "__id__": 1062 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1064 + "__id__": 1063 }, "rateOverTime": { - "__id__": 1065 + "__id__": 1064 }, "rateOverDistance": { - "__id__": 1066 + "__id__": 1065 }, "bursts": [ { - "__id__": 1067 + "__id__": 1066 } ], "_renderCulling": false, @@ -32285,37 +32270,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1069 + "__id__": 1068 }, "_shapeModule": { - "__id__": 1078 + "__id__": 1077 }, "_sizeOvertimeModule": { - "__id__": 1080 + "__id__": 1079 }, "_velocityOvertimeModule": { - "__id__": 1086 + "__id__": 1085 }, "_forceOvertimeModule": { - "__id__": 1091 + "__id__": 1090 }, "_limitVelocityOvertimeModule": { - "__id__": 1095 + "__id__": 1094 }, "_rotationOvertimeModule": { - "__id__": 1100 + "__id__": 1099 }, "_textureAnimationModule": { - "__id__": 1104 + "__id__": 1103 }, "_noiseModule": { - "__id__": 1108 + "__id__": 1107 }, "_trailModule": { - "__id__": 1109 + "__id__": 1108 }, "renderer": { - "__id__": 1114 + "__id__": 1113 }, "_prewarm": false, "_capacity": 100, @@ -32413,7 +32398,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1068 + "__id__": 1067 } }, { @@ -32426,38 +32411,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1070 + "__id__": 1069 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1071 + "__id__": 1070 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1071 + }, { "__id__": 1072 }, { "__id__": 1073 - }, - { - "__id__": 1074 } ], "alphaKeys": [ + { + "__id__": 1074 + }, { "__id__": 1075 }, { "__id__": 1076 - }, - { - "__id__": 1077 } ], "mode": 0 @@ -32525,7 +32510,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1079 + "__id__": 1078 }, "length": 5, "boxThickness": { @@ -32566,23 +32551,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1081 + "__id__": 1080 }, "x": { - "__id__": 1083 + "__id__": 1082 }, "y": { - "__id__": 1084 + "__id__": 1083 }, "z": { - "__id__": 1085 + "__id__": 1084 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1082 + "__id__": 1081 }, "multiplier": 1 }, @@ -32643,16 +32628,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1087 + "__id__": 1086 }, "y": { - "__id__": 1088 + "__id__": 1087 }, "z": { - "__id__": 1089 + "__id__": 1088 }, "speedModifier": { - "__id__": 1090 + "__id__": 1089 }, "space": 1 }, @@ -32684,13 +32669,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1092 + "__id__": 1091 }, "y": { - "__id__": 1093 + "__id__": 1092 }, "z": { - "__id__": 1094 + "__id__": 1093 }, "space": 1 }, @@ -32716,16 +32701,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1096 + "__id__": 1095 }, "limitY": { - "__id__": 1097 + "__id__": 1096 }, "limitZ": { - "__id__": 1098 + "__id__": 1097 }, "limit": { - "__id__": 1099 + "__id__": 1098 }, "dampen": 0.05, "separateAxes": false, @@ -32760,13 +32745,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1101 + "__id__": 1100 }, "y": { - "__id__": 1102 + "__id__": 1101 }, "z": { - "__id__": 1103 + "__id__": 1102 } }, { @@ -32798,10 +32783,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1105 + "__id__": 1104 }, "startFrame": { - "__id__": 1107 + "__id__": 1106 }, "cycleCount": 1, "_flipU": 0, @@ -32814,7 +32799,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1106 + "__id__": 1105 }, "multiplier": 1 }, @@ -32882,25 +32867,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1110 + "__id__": 1109 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1111 + "__id__": 1110 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1112 + "__id__": 1111 }, "colorOvertime": { - "__id__": 1113 + "__id__": 1112 }, "_space": 0, "_particleSystem": { - "__id__": 1053 + "__id__": 1052 } }, { @@ -32961,7 +32946,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1052 + "__id__": 1051 }, "_enabled": true, "__prefab": null, @@ -32973,7 +32958,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1052 + "__id__": 1051 }, "_enabled": true, "__prefab": null, @@ -32995,7 +32980,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 992 + "__id__": 991 }, "_enabled": true, "__prefab": null, @@ -33017,7 +33002,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 986 + "__id__": 985 }, "_enabled": true, "__prefab": null, @@ -33039,15 +33024,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 986 + "__id__": 985 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 990 + "__id__": 989 }, "_animation": { - "__id__": 1120 + "__id__": 1119 }, "_force": 40, "_soundFx": { @@ -33063,7 +33048,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 986 + "__id__": 985 }, "_enabled": true, "__prefab": null, @@ -33086,26 +33071,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 985 + "__id__": 984 }, "_children": [ { - "__id__": 1122 + "__id__": 1121 }, { - "__id__": 1127 + "__id__": 1126 } ], "_active": true, "_components": [ + { + "__id__": 1252 + }, { "__id__": 1253 }, { "__id__": 1254 - }, - { - "__id__": 1255 } ], "_prefab": null, @@ -33144,11 +33129,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1121 + "__id__": 1120 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1122 + }, { "__id__": 1123 }, @@ -33157,9 +33145,6 @@ }, { "__id__": 1125 - }, - { - "__id__": 1126 } ], "_prefab": null, @@ -33198,7 +33183,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1122 + "__id__": 1121 }, "_enabled": true, "__prefab": null, @@ -33220,7 +33205,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1122 + "__id__": 1121 }, "_enabled": true, "__prefab": null, @@ -33259,7 +33244,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1122 + "__id__": 1121 }, "_enabled": true, "__prefab": null, @@ -33287,7 +33272,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1122 + "__id__": 1121 }, "_enabled": true, "__prefab": null, @@ -33315,20 +33300,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1121 + "__id__": 1120 }, "_children": [ { - "__id__": 1128 + "__id__": 1127 }, { - "__id__": 1187 + "__id__": 1186 } ], "_active": false, "_components": [ { - "__id__": 1252 + "__id__": 1251 } ], "_prefab": null, @@ -33367,19 +33352,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1127 + "__id__": 1126 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1129 + "__id__": 1128 + }, + { + "__id__": 1184 }, { "__id__": 1185 - }, - { - "__id__": 1186 } ], "_prefab": null, @@ -33418,7 +33403,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1128 + "__id__": 1127 }, "_enabled": true, "__prefab": null, @@ -33431,60 +33416,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1130 + "__id__": 1129 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1131 + "__id__": 1130 }, "startSize": { - "__id__": 1131 + "__id__": 1130 }, "startSizeY": { - "__id__": 1132 + "__id__": 1131 }, "startSizeZ": { - "__id__": 1133 + "__id__": 1132 }, "startSpeed": { - "__id__": 1134 + "__id__": 1133 }, "startRotation3D": false, "startRotationX": { - "__id__": 1135 + "__id__": 1134 }, "startRotationY": { - "__id__": 1136 + "__id__": 1135 }, "startRotationZ": { - "__id__": 1137 + "__id__": 1136 }, "startRotation": { - "__id__": 1137 + "__id__": 1136 }, "startDelay": { - "__id__": 1138 + "__id__": 1137 }, "startLifetime": { - "__id__": 1139 + "__id__": 1138 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1140 + "__id__": 1139 }, "rateOverTime": { - "__id__": 1141 + "__id__": 1140 }, "rateOverDistance": { - "__id__": 1142 + "__id__": 1141 }, "bursts": [ { - "__id__": 1143 + "__id__": 1142 } ], "_renderCulling": false, @@ -33495,37 +33480,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1145 + "__id__": 1144 }, "_shapeModule": { - "__id__": 1147 + "__id__": 1146 }, "_sizeOvertimeModule": { - "__id__": 1149 + "__id__": 1148 }, "_velocityOvertimeModule": { - "__id__": 1155 + "__id__": 1154 }, "_forceOvertimeModule": { - "__id__": 1161 + "__id__": 1160 }, "_limitVelocityOvertimeModule": { - "__id__": 1165 + "__id__": 1164 }, "_rotationOvertimeModule": { - "__id__": 1170 + "__id__": 1169 }, "_textureAnimationModule": { - "__id__": 1174 + "__id__": 1173 }, "_noiseModule": { - "__id__": 1178 + "__id__": 1177 }, "_trailModule": { - "__id__": 1179 + "__id__": 1178 }, "renderer": { - "__id__": 1184 + "__id__": 1183 }, "_prewarm": false, "_capacity": 8, @@ -33625,7 +33610,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1144 + "__id__": 1143 } }, { @@ -33638,7 +33623,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1146 + "__id__": 1145 } }, { @@ -33667,7 +33652,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1148 + "__id__": 1147 }, "length": 5, "boxThickness": { @@ -33708,23 +33693,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1150 + "__id__": 1149 }, "x": { - "__id__": 1152 + "__id__": 1151 }, "y": { - "__id__": 1153 + "__id__": 1152 }, "z": { - "__id__": 1154 + "__id__": 1153 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1151 + "__id__": 1150 }, "multiplier": 1 }, @@ -33785,16 +33770,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1156 + "__id__": 1155 }, "y": { - "__id__": 1157 + "__id__": 1156 }, "z": { - "__id__": 1159 + "__id__": 1158 }, "speedModifier": { - "__id__": 1160 + "__id__": 1159 }, "space": 1 }, @@ -33808,7 +33793,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1158 + "__id__": 1157 }, "multiplier": 1 }, @@ -33863,13 +33848,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1162 + "__id__": 1161 }, "y": { - "__id__": 1163 + "__id__": 1162 }, "z": { - "__id__": 1164 + "__id__": 1163 }, "space": 1 }, @@ -33895,16 +33880,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1166 + "__id__": 1165 }, "limitY": { - "__id__": 1167 + "__id__": 1166 }, "limitZ": { - "__id__": 1168 + "__id__": 1167 }, "limit": { - "__id__": 1169 + "__id__": 1168 }, "dampen": 3, "separateAxes": false, @@ -33939,13 +33924,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1171 + "__id__": 1170 }, "y": { - "__id__": 1172 + "__id__": 1171 }, "z": { - "__id__": 1173 + "__id__": 1172 } }, { @@ -33979,10 +33964,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1175 + "__id__": 1174 }, "startFrame": { - "__id__": 1177 + "__id__": 1176 }, "cycleCount": 0, "_flipU": 0, @@ -33995,7 +33980,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1176 + "__id__": 1175 }, "multiplier": 1 }, @@ -34062,25 +34047,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1180 + "__id__": 1179 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1181 + "__id__": 1180 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1182 + "__id__": 1181 }, "colorOvertime": { - "__id__": 1183 + "__id__": 1182 }, "_space": 0, "_particleSystem": { - "__id__": 1129 + "__id__": 1128 } }, { @@ -34141,7 +34126,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1128 + "__id__": 1127 }, "_enabled": true, "__prefab": null, @@ -34153,7 +34138,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1128 + "__id__": 1127 }, "_enabled": true, "__prefab": null, @@ -34175,19 +34160,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1127 + "__id__": 1126 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1188 + "__id__": 1187 + }, + { + "__id__": 1249 }, { "__id__": 1250 - }, - { - "__id__": 1251 } ], "_prefab": null, @@ -34226,7 +34211,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1187 + "__id__": 1186 }, "_enabled": true, "__prefab": null, @@ -34239,60 +34224,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1189 + "__id__": 1188 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1190 + "__id__": 1189 }, "startSize": { - "__id__": 1190 + "__id__": 1189 }, "startSizeY": { - "__id__": 1191 + "__id__": 1190 }, "startSizeZ": { - "__id__": 1192 + "__id__": 1191 }, "startSpeed": { - "__id__": 1193 + "__id__": 1192 }, "startRotation3D": false, "startRotationX": { - "__id__": 1194 + "__id__": 1193 }, "startRotationY": { - "__id__": 1195 + "__id__": 1194 }, "startRotationZ": { - "__id__": 1196 + "__id__": 1195 }, "startRotation": { - "__id__": 1196 + "__id__": 1195 }, "startDelay": { - "__id__": 1197 + "__id__": 1196 }, "startLifetime": { - "__id__": 1198 + "__id__": 1197 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1199 + "__id__": 1198 }, "rateOverTime": { - "__id__": 1200 + "__id__": 1199 }, "rateOverDistance": { - "__id__": 1201 + "__id__": 1200 }, "bursts": [ { - "__id__": 1202 + "__id__": 1201 } ], "_renderCulling": false, @@ -34303,37 +34288,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1204 + "__id__": 1203 }, "_shapeModule": { - "__id__": 1213 + "__id__": 1212 }, "_sizeOvertimeModule": { - "__id__": 1215 + "__id__": 1214 }, "_velocityOvertimeModule": { - "__id__": 1221 + "__id__": 1220 }, "_forceOvertimeModule": { - "__id__": 1226 + "__id__": 1225 }, "_limitVelocityOvertimeModule": { - "__id__": 1230 + "__id__": 1229 }, "_rotationOvertimeModule": { - "__id__": 1235 + "__id__": 1234 }, "_textureAnimationModule": { - "__id__": 1239 + "__id__": 1238 }, "_noiseModule": { - "__id__": 1243 + "__id__": 1242 }, "_trailModule": { - "__id__": 1244 + "__id__": 1243 }, "renderer": { - "__id__": 1249 + "__id__": 1248 }, "_prewarm": false, "_capacity": 100, @@ -34431,7 +34416,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1203 + "__id__": 1202 } }, { @@ -34444,38 +34429,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1205 + "__id__": 1204 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1206 + "__id__": 1205 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1206 + }, { "__id__": 1207 }, { "__id__": 1208 - }, - { - "__id__": 1209 } ], "alphaKeys": [ + { + "__id__": 1209 + }, { "__id__": 1210 }, { "__id__": 1211 - }, - { - "__id__": 1212 } ], "mode": 0 @@ -34543,7 +34528,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1214 + "__id__": 1213 }, "length": 5, "boxThickness": { @@ -34584,23 +34569,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1216 + "__id__": 1215 }, "x": { - "__id__": 1218 + "__id__": 1217 }, "y": { - "__id__": 1219 + "__id__": 1218 }, "z": { - "__id__": 1220 + "__id__": 1219 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1217 + "__id__": 1216 }, "multiplier": 1 }, @@ -34661,16 +34646,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1222 + "__id__": 1221 }, "y": { - "__id__": 1223 + "__id__": 1222 }, "z": { - "__id__": 1224 + "__id__": 1223 }, "speedModifier": { - "__id__": 1225 + "__id__": 1224 }, "space": 1 }, @@ -34702,13 +34687,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1227 + "__id__": 1226 }, "y": { - "__id__": 1228 + "__id__": 1227 }, "z": { - "__id__": 1229 + "__id__": 1228 }, "space": 1 }, @@ -34734,16 +34719,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1231 + "__id__": 1230 }, "limitY": { - "__id__": 1232 + "__id__": 1231 }, "limitZ": { - "__id__": 1233 + "__id__": 1232 }, "limit": { - "__id__": 1234 + "__id__": 1233 }, "dampen": 0.05, "separateAxes": false, @@ -34778,13 +34763,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1236 + "__id__": 1235 }, "y": { - "__id__": 1237 + "__id__": 1236 }, "z": { - "__id__": 1238 + "__id__": 1237 } }, { @@ -34816,10 +34801,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1240 + "__id__": 1239 }, "startFrame": { - "__id__": 1242 + "__id__": 1241 }, "cycleCount": 1, "_flipU": 0, @@ -34832,7 +34817,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1241 + "__id__": 1240 }, "multiplier": 1 }, @@ -34900,25 +34885,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1245 + "__id__": 1244 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1246 + "__id__": 1245 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1247 + "__id__": 1246 }, "colorOvertime": { - "__id__": 1248 + "__id__": 1247 }, "_space": 0, "_particleSystem": { - "__id__": 1188 + "__id__": 1187 } }, { @@ -34979,7 +34964,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1187 + "__id__": 1186 }, "_enabled": true, "__prefab": null, @@ -34991,7 +34976,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1187 + "__id__": 1186 }, "_enabled": true, "__prefab": null, @@ -35013,7 +34998,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1127 + "__id__": 1126 }, "_enabled": true, "__prefab": null, @@ -35035,7 +35020,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1120 }, "_enabled": true, "__prefab": null, @@ -35057,15 +35042,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1120 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1125 + "__id__": 1124 }, "_animation": { - "__id__": 1255 + "__id__": 1254 }, "_force": 40, "_soundFx": { @@ -35081,7 +35066,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1121 + "__id__": 1120 }, "_enabled": true, "__prefab": null, @@ -35104,7 +35089,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 984 }, "_enabled": true, "__prefab": null, @@ -35132,10 +35117,10 @@ "_active": true, "_components": [ { - "__id__": 1258 + "__id__": 1257 }, { - "__id__": 1259 + "__id__": 1258 } ], "_prefab": null, @@ -35174,7 +35159,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1257 + "__id__": 1256 }, "_enabled": true, "__prefab": null, @@ -35196,7 +35181,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1257 + "__id__": 1256 }, "_enabled": true, "__prefab": null, @@ -35239,19 +35224,19 @@ }, "_children": [ { - "__id__": 1261 + "__id__": 1260 }, { - "__id__": 1264 + "__id__": 1263 } ], "_active": true, "_components": [ { - "__id__": 1269 + "__id__": 1267 }, { - "__id__": 1270 + "__id__": 1268 } ], "_prefab": null, @@ -35290,16 +35275,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1260 + "__id__": 1259 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1262 + "__id__": 1261 }, { - "__id__": 1263 + "__id__": 1262 } ], "_prefab": null, @@ -35338,7 +35323,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1261 + "__id__": 1260 }, "_enabled": true, "__prefab": null, @@ -35360,7 +35345,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1261 + "__id__": 1260 }, "_enabled": true, "__prefab": null, @@ -35396,22 +35381,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1260 + "__id__": 1259 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1264 + }, { "__id__": 1265 }, { "__id__": 1266 - }, - { - "__id__": 1267 - }, - { - "__id__": 1268 } ], "_prefab": null, @@ -35450,7 +35432,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1264 + "__id__": 1263 }, "_enabled": true, "__prefab": null, @@ -35472,7 +35454,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1264 + "__id__": 1263 }, "_enabled": true, "__prefab": null, @@ -35537,7 +35519,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1264 + "__id__": 1263 }, "_enabled": true, "__prefab": null, @@ -35561,25 +35543,13 @@ "_lockFlags": 0, "_id": "31Fx2973dAt4puJYDiv8Pp" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1264 - }, - "_enabled": true, - "__prefab": null, - "_id": "48xN1y1cZE2q+KWSB/x1mb" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1260 + "__id__": 1259 }, "_enabled": true, "__prefab": null, @@ -35601,22 +35571,22 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1260 + "__id__": 1259 }, "_enabled": true, "__prefab": null, "_popup": { - "__id__": 1261 + "__id__": 1260 }, "_label": { - "__id__": 1266 + "__id__": 1265 }, "_stickers": [ { - "__id__": 1271 + "__id__": 1269 }, { - "__id__": 1272 + "__id__": 1270 } ], "_id": "bcOYTPcPRCQYASEYYE85nU" @@ -35679,10 +35649,10 @@ "__expectedType__": "cc.Prefab" }, "_topContainer": { - "__id__": 1275 + "__id__": 1273 }, "_ballHolder": { - "__id__": 983 + "__id__": 982 }, "_ballSpawnPosition": { "__type__": "cc.Vec3", @@ -35729,7 +35699,7 @@ "_active": true, "_components": [ { - "__id__": 1276 + "__id__": 1274 } ], "_prefab": null, @@ -35768,7 +35738,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1275 + "__id__": 1273 }, "_enabled": true, "__prefab": null, @@ -35860,7 +35830,10 @@ "instance": null, "targetOverrides": [ { - "__id__": 1281 + "__id__": 1279 + }, + { + "__id__": 1282 }, { "__id__": 1284 @@ -35869,18 +35842,15 @@ "__id__": 1286 }, { - "__id__": 1288 - }, - { - "__id__": 1291 + "__id__": 1289 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 576 + "__id__": 575 }, { - "__id__": 595 + "__id__": 594 }, { "__id__": 150 @@ -35893,20 +35863,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 595 + "__id__": 594 }, "sourceInfo": { - "__id__": 1282 + "__id__": 1280 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 595 + "__id__": 594 }, "targetInfo": { - "__id__": 1283 + "__id__": 1281 } }, { @@ -35924,7 +35894,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 484 + "__id__": 483 }, "sourceInfo": null, "propertyPath": [ @@ -35934,7 +35904,7 @@ "__id__": 150 }, "targetInfo": { - "__id__": 1285 + "__id__": 1283 } }, { @@ -35946,7 +35916,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 447 + "__id__": 446 }, "sourceInfo": null, "propertyPath": [ @@ -35956,7 +35926,7 @@ "__id__": 382 }, "targetInfo": { - "__id__": 1287 + "__id__": 1285 } }, { @@ -35968,20 +35938,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 576 + "__id__": 575 }, "sourceInfo": { - "__id__": 1289 + "__id__": 1287 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 576 + "__id__": 575 }, "targetInfo": { - "__id__": 1290 + "__id__": 1288 } }, { @@ -36002,7 +35972,7 @@ "__id__": 150 }, "sourceInfo": { - "__id__": 1292 + "__id__": 1290 }, "propertyPath": [ "_trailModule", @@ -36012,7 +35982,7 @@ "__id__": 150 }, "targetInfo": { - "__id__": 1293 + "__id__": 1291 } }, { @@ -36030,28 +36000,28 @@ { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 1295 + "__id__": 1293 }, "shadows": { - "__id__": 1296 + "__id__": 1294 }, "_skybox": { - "__id__": 1297 + "__id__": 1295 }, "fog": { - "__id__": 1298 + "__id__": 1296 }, "octree": { - "__id__": 1299 + "__id__": 1297 }, "skin": { - "__id__": 1300 + "__id__": 1298 }, "lightProbeInfo": { - "__id__": 1301 + "__id__": 1299 }, "postSettings": { - "__id__": 1302 + "__id__": 1300 }, "bakedWithStationaryMainLight": false, "bakedWithHighpLightmap": false diff --git a/assets/_Game/Scenes/Default-theme.scene b/assets/_Game/Scenes/Default-theme.scene index 01bd011..ac39828 100644 --- a/assets/_Game/Scenes/Default-theme.scene +++ b/assets/_Game/Scenes/Default-theme.scene @@ -21,6 +21,9 @@ }, { "__id__": 238 + }, + { + "__id__": 1288 } ], "_active": true, @@ -80,19 +83,19 @@ "__id__": 9 }, { - "__id__": 1285 + "__id__": 1283 } ], "_active": true, "_components": [ + { + "__id__": 1285 + }, + { + "__id__": 1286 + }, { "__id__": 1287 - }, - { - "__id__": 1288 - }, - { - "__id__": 1289 } ], "_prefab": null, @@ -376,37 +379,37 @@ "__id__": 131 }, { - "__id__": 647 + "__id__": 646 }, { - "__id__": 722 + "__id__": 721 }, { - "__id__": 784 + "__id__": 783 }, { - "__id__": 789 + "__id__": 788 }, { - "__id__": 993 + "__id__": 992 }, { - "__id__": 996 + "__id__": 995 }, { - "__id__": 998 + "__id__": 997 }, { - "__id__": 1270 + "__id__": 1269 } ], "_active": true, "_components": [ { - "__id__": 1283 + "__id__": 1281 }, { - "__id__": 1284 + "__id__": 1282 } ], "_prefab": null, @@ -7879,7 +7882,7 @@ "__id__": 232 }, { - "__id__": 641 + "__id__": 640 } ], "_prefab": null, @@ -8296,7 +8299,7 @@ "_minAngle": 10, "_maxAngle": 170, "_soundFx": { - "__id__": 641 + "__id__": 640 }, "_goalSound": { "__uuid__": "4ce9d2c6-98c5-4d05-94af-70193bb795fe", @@ -8311,6 +8314,9 @@ "__expectedType__": "cc.AudioClip" }, "_rewards": [ + { + "__id__": 641 + }, { "__id__": 642 }, @@ -8322,9 +8328,6 @@ }, { "__id__": 645 - }, - { - "__id__": 646 } ], "_id": "e5qVdeXFZOu6/MatkdDEG6" @@ -8341,10 +8344,10 @@ "_active": true, "_components": [ { - "__id__": 639 + "__id__": 638 }, { - "__id__": 640 + "__id__": 639 } ], "_prefab": null, @@ -8390,11 +8393,14 @@ "__id__": 233 }, { - "__id__": 574 + "__id__": 573 } ], "_active": true, "_components": [ + { + "__id__": 634 + }, { "__id__": 635 }, @@ -8403,9 +8409,6 @@ }, { "__id__": 637 - }, - { - "__id__": 638 } ], "_prefab": null, @@ -8448,10 +8451,10 @@ }, "_children": [ { - "__id__": 624 + "__id__": 623 }, { - "__id__": 628 + "__id__": 627 }, { "__id__": 234 @@ -8459,14 +8462,14 @@ ], "_active": true, "_components": [ + { + "__id__": 631 + }, { "__id__": 632 }, { "__id__": 633 - }, - { - "__id__": 634 } ], "_prefab": null, @@ -8512,22 +8515,22 @@ "__id__": 235 }, { - "__id__": 587 + "__id__": 586 }, { - "__id__": 578 + "__id__": 577 }, { - "__id__": 609 + "__id__": 608 } ], "_active": true, "_components": [ { - "__id__": 622 + "__id__": 621 }, { - "__id__": 623 + "__id__": 622 } ], "_prefab": null, @@ -8576,19 +8579,19 @@ "__id__": 236 }, { - "__id__": 540 + "__id__": 539 } ], "_active": true, "_components": [ + { + "__id__": 569 + }, { "__id__": 570 }, { "__id__": 571 - }, - { - "__id__": 572 } ], "_prefab": null, @@ -8768,7 +8771,7 @@ "__type__": "cc.Vec3", "x": 0, "y": 0, - "z": 0 + "z": 10 } }, { @@ -11941,14 +11944,14 @@ ], "_active": false, "_components": [ + { + "__id__": 532 + }, { "__id__": 533 }, { "__id__": 534 - }, - { - "__id__": 535 } ], "_prefab": null, @@ -12106,19 +12109,19 @@ "__id__": 467 }, { - "__id__": 511 + "__id__": 510 }, { - "__id__": 523 + "__id__": 522 } ], "_active": true, "_components": [ { - "__id__": 531 + "__id__": 530 }, { - "__id__": 532 + "__id__": 531 } ], "_prefab": null, @@ -12214,7 +12217,7 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 423.59, + "width": 423.5888671875, "height": 88.2 }, "_anchorPoint": { @@ -12334,6 +12337,9 @@ ], "_active": true, "_components": [ + { + "__id__": 506 + }, { "__id__": 507 }, @@ -12342,9 +12348,6 @@ }, { "__id__": 509 - }, - { - "__id__": 510 } ], "_prefab": null, @@ -12392,6 +12395,9 @@ ], "_active": true, "_components": [ + { + "__id__": 502 + }, { "__id__": 503 }, @@ -12400,9 +12406,6 @@ }, { "__id__": 505 - }, - { - "__id__": 506 } ], "_prefab": null, @@ -12454,10 +12457,10 @@ "_active": true, "_components": [ { - "__id__": 501 + "__id__": 500 }, { - "__id__": 502 + "__id__": 501 } ], "_prefab": null, @@ -12613,22 +12616,22 @@ "__id__": 479 }, { - "__id__": 490 + "__id__": 489 }, { - "__id__": 494 + "__id__": 493 } ], "_active": true, "_components": [ + { + "__id__": 497 + }, { "__id__": 498 }, { "__id__": 499 - }, - { - "__id__": 500 } ], "_prefab": null, @@ -12680,10 +12683,10 @@ "_active": false, "_components": [ { - "__id__": 488 + "__id__": 487 }, { - "__id__": 489 + "__id__": 488 } ], "_prefab": null, @@ -12844,9 +12847,6 @@ }, { "__id__": 486 - }, - { - "__id__": 487 } ], "_prefab": null, @@ -12996,18 +12996,6 @@ "_lockFlags": 0, "_id": "9d1dXZleNEYo0PraCOGsU1" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 483 - }, - "_enabled": true, - "__prefab": null, - "_id": "3aIIwlJ+BJmp6k0VBid2/K" - }, { "__type__": "cc.UITransform", "_name": "", @@ -13071,14 +13059,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 490 + }, { "__id__": 491 }, { "__id__": 492 - }, - { - "__id__": 493 } ], "_prefab": null, @@ -13117,7 +13105,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13139,7 +13127,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13204,7 +13192,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13239,14 +13227,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 494 + }, { "__id__": 495 }, { "__id__": 496 - }, - { - "__id__": 497 } ], "_prefab": null, @@ -13285,7 +13273,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -13307,7 +13295,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -13372,7 +13360,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -13468,10 +13456,10 @@ "_enabled": true, "__prefab": null, "_bg": { - "__id__": 499 + "__id__": 498 }, "_scoreText": { - "__id__": 496 + "__id__": 495 }, "_topText": { "__id__": 485 @@ -13773,14 +13761,17 @@ }, "_children": [ { - "__id__": 512 + "__id__": 511 }, { - "__id__": 515 + "__id__": 514 } ], "_active": true, "_components": [ + { + "__id__": 517 + }, { "__id__": 518 }, @@ -13788,10 +13779,7 @@ "__id__": 519 }, { - "__id__": 520 - }, - { - "__id__": 522 + "__id__": 521 } ], "_prefab": null, @@ -13830,16 +13818,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 511 + "__id__": 510 }, "_children": [], "_active": true, "_components": [ { - "__id__": 513 + "__id__": 512 }, { - "__id__": 514 + "__id__": 513 } ], "_prefab": null, @@ -13878,13 +13866,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 512 + "__id__": 511 }, "_enabled": true, "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 103.36, + "width": 103.359375, "height": 113.4 }, "_anchorPoint": { @@ -13900,7 +13888,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 512 + "__id__": 511 }, "_enabled": true, "__prefab": null, @@ -13965,16 +13953,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 511 + "__id__": 510 }, "_children": [], "_active": true, "_components": [ { - "__id__": 516 + "__id__": 515 }, { - "__id__": 517 + "__id__": 516 } ], "_prefab": null, @@ -14013,7 +14001,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 515 + "__id__": 514 }, "_enabled": true, "__prefab": null, @@ -14035,7 +14023,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 515 + "__id__": 514 }, "_enabled": true, "__prefab": null, @@ -14074,7 +14062,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14096,7 +14084,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14135,13 +14123,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 521 + "__id__": 520 } ], "_interactable": true, @@ -14184,7 +14172,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 511 + "__id__": 510 }, "_id": "83tN1zwmxCxI7aJ2ug7LTQ" }, @@ -14204,7 +14192,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14238,19 +14226,19 @@ }, "_children": [ { - "__id__": 524 + "__id__": 523 } ], "_active": true, "_components": [ + { + "__id__": 526 + }, { "__id__": 527 }, { - "__id__": 528 - }, - { - "__id__": 530 + "__id__": 529 } ], "_prefab": null, @@ -14289,16 +14277,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 523 + "__id__": 522 }, "_children": [], "_active": true, "_components": [ { - "__id__": 525 + "__id__": 524 }, { - "__id__": 526 + "__id__": 525 } ], "_prefab": null, @@ -14337,7 +14325,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 524 + "__id__": 523 }, "_enabled": true, "__prefab": null, @@ -14359,7 +14347,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 524 + "__id__": 523 }, "_enabled": true, "__prefab": null, @@ -14424,7 +14412,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 523 + "__id__": 522 }, "_enabled": true, "__prefab": null, @@ -14446,13 +14434,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 523 + "__id__": 522 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 529 + "__id__": 528 } ], "_interactable": true, @@ -14504,7 +14492,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 523 + "__id__": 522 }, "_id": "05kavv3MFKp4R9iVYAgcDb" }, @@ -14524,7 +14512,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 523 + "__id__": 522 }, "_enabled": true, "__prefab": null, @@ -14673,16 +14661,16 @@ "__prefab": null, "topScore": null, "yourScore": { - "__id__": 496 + "__id__": 495 }, "_ticketMinus": { - "__id__": 514 + "__id__": 513 }, "_buyTicketBtn": { - "__id__": 511 + "__id__": 510 }, "_quitBtn": { - "__id__": 523 + "__id__": 522 }, "_scoreUI": { "__id__": 233 @@ -14700,17 +14688,17 @@ "__expectedType__": "cc.AudioClip" }, "_starSpeedCurve": { - "__id__": 536 + "__id__": 535 }, "_starScaleCurve": { - "__id__": 538 + "__id__": 537 }, "_id": "bbcyvzebBDsJfOOH9VNeON" }, { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 537 + "__id__": 536 } }, { @@ -14751,7 +14739,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 539 + "__id__": 538 } }, { @@ -14812,19 +14800,19 @@ }, "_children": [ { - "__id__": 541 + "__id__": 540 } ], "_active": false, "_components": [ + { + "__id__": 566 + }, { "__id__": 567 }, { "__id__": 568 - }, - { - "__id__": 569 } ], "_prefab": null, @@ -14863,15 +14851,18 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 540 + "__id__": 539 }, "_children": [ { - "__id__": 542 + "__id__": 541 } ], "_active": true, "_components": [ + { + "__id__": 560 + }, { "__id__": 561 }, @@ -14886,9 +14877,6 @@ }, { "__id__": 565 - }, - { - "__id__": 566 } ], "_prefab": null, @@ -14927,29 +14915,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 541 + "__id__": 540 }, "_children": [ { - "__id__": 543 + "__id__": 542 }, { - "__id__": 547 + "__id__": 546 }, { - "__id__": 550 + "__id__": 549 }, { - "__id__": 553 + "__id__": 552 } ], "_active": true, "_components": [ { - "__id__": 559 + "__id__": 558 }, { - "__id__": 560 + "__id__": 559 } ], "_prefab": null, @@ -14988,19 +14976,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 542 + "__id__": 541 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 543 + }, { "__id__": 544 }, { "__id__": 545 - }, - { - "__id__": 546 } ], "_prefab": null, @@ -15039,7 +15027,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 542 }, "_enabled": true, "__prefab": null, @@ -15061,7 +15049,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 542 }, "_enabled": true, "__prefab": null, @@ -15100,7 +15088,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 543 + "__id__": 542 }, "_enabled": true, "__prefab": null, @@ -15130,16 +15118,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 542 + "__id__": 541 }, "_children": [], "_active": true, "_components": [ { - "__id__": 548 + "__id__": 547 }, { - "__id__": 549 + "__id__": 548 } ], "_prefab": null, @@ -15178,7 +15166,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 547 + "__id__": 546 }, "_enabled": true, "__prefab": null, @@ -15200,7 +15188,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 547 + "__id__": 546 }, "_enabled": true, "__prefab": null, @@ -15239,16 +15227,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 542 + "__id__": 541 }, "_children": [], "_active": true, "_components": [ { - "__id__": 551 + "__id__": 550 }, { - "__id__": 552 + "__id__": 551 } ], "_prefab": null, @@ -15287,7 +15275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 550 + "__id__": 549 }, "_enabled": true, "__prefab": null, @@ -15309,7 +15297,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 550 + "__id__": 549 }, "_enabled": true, "__prefab": null, @@ -15348,11 +15336,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 542 + "__id__": 541 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 553 + }, { "__id__": 554 }, @@ -15360,10 +15351,7 @@ "__id__": 555 }, { - "__id__": 556 - }, - { - "__id__": 558 + "__id__": 557 } ], "_prefab": null, @@ -15402,7 +15390,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 552 }, "_enabled": true, "__prefab": null, @@ -15424,7 +15412,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 552 }, "_enabled": true, "__prefab": null, @@ -15463,13 +15451,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 552 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 557 + "__id__": 556 } ], "_interactable": true, @@ -15512,7 +15500,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 553 + "__id__": 552 }, "_id": "b5HEsyyjZJ8Yb2u2q1fD82" }, @@ -15532,7 +15520,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 552 }, "_enabled": true, "__prefab": null, @@ -15562,7 +15550,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 542 + "__id__": 541 }, "_enabled": true, "__prefab": null, @@ -15584,7 +15572,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 542 + "__id__": 541 }, "_enabled": true, "__prefab": null, @@ -15623,7 +15611,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15645,7 +15633,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15661,7 +15649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15701,7 +15689,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15717,7 +15705,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15744,12 +15732,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 565 + "__id__": 564 }, "_id": "21CWF/h19B4IC/OI3ayhGG" }, @@ -15759,7 +15747,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15781,7 +15769,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15820,7 +15808,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15907,17 +15895,17 @@ "_enabled": true, "__prefab": null, "_scoreLabel": { - "__id__": 573 + "__id__": 572 }, "_ticketLabel": { - "__id__": 576 + "__id__": 575 }, "_buffFx": null, "_controlPanel": { "__id__": 311 }, "_startPanel": { - "__id__": 540 + "__id__": 539 }, "_overPanel": { "__id__": 458 @@ -15930,7 +15918,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 574 + "__id__": 573 }, "_enabled": true, "__prefab": null, @@ -16001,10 +15989,10 @@ "_active": true, "_components": [ { - "__id__": 575 + "__id__": 574 }, { - "__id__": 573 + "__id__": 572 } ], "_prefab": null, @@ -16043,7 +16031,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 574 + "__id__": 573 }, "_enabled": true, "__prefab": null, @@ -16065,7 +16053,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 576 }, "_enabled": true, "__prefab": null, @@ -16130,16 +16118,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 578 + "__id__": 577 }, "_children": [], "_active": true, "_components": [ { - "__id__": 586 + "__id__": 585 }, { - "__id__": 576 + "__id__": 575 } ], "_prefab": null, @@ -16182,14 +16170,17 @@ }, "_children": [ { - "__id__": 579 + "__id__": 578 }, { - "__id__": 577 + "__id__": 576 } ], "_active": true, "_components": [ + { + "__id__": 581 + }, { "__id__": 582 }, @@ -16198,9 +16189,6 @@ }, { "__id__": 584 - }, - { - "__id__": 585 } ], "_prefab": null, @@ -16239,16 +16227,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 578 + "__id__": 577 }, "_children": [], "_active": true, "_components": [ { - "__id__": 580 + "__id__": 579 }, { - "__id__": 581 + "__id__": 580 } ], "_prefab": null, @@ -16287,7 +16275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 579 + "__id__": 578 }, "_enabled": true, "__prefab": null, @@ -16309,7 +16297,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 579 + "__id__": 578 }, "_enabled": true, "__prefab": null, @@ -16348,7 +16336,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16370,7 +16358,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16409,7 +16397,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16439,7 +16427,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16471,7 +16459,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 576 }, "_enabled": true, "__prefab": null, @@ -16497,14 +16485,17 @@ }, "_children": [ { - "__id__": 588 + "__id__": 587 }, { - "__id__": 592 + "__id__": 591 } ], "_active": true, "_components": [ + { + "__id__": 604 + }, { "__id__": 605 }, @@ -16513,9 +16504,6 @@ }, { "__id__": 607 - }, - { - "__id__": 608 } ], "_prefab": null, @@ -16554,19 +16542,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 587 + "__id__": 586 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 588 + }, { "__id__": 589 }, { "__id__": 590 - }, - { - "__id__": 591 } ], "_prefab": null, @@ -16605,7 +16593,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 588 + "__id__": 587 }, "_enabled": true, "__prefab": null, @@ -16627,7 +16615,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 588 + "__id__": 587 }, "_enabled": true, "__prefab": null, @@ -16666,7 +16654,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 588 + "__id__": 587 }, "_enabled": true, "__prefab": null, @@ -16696,26 +16684,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 587 + "__id__": 586 }, "_children": [ { - "__id__": 593 + "__id__": 592 }, { - "__id__": 599 + "__id__": 598 } ], "_active": true, "_components": [ + { + "__id__": 601 + }, { "__id__": 602 }, { "__id__": 603 - }, - { - "__id__": 604 } ], "_prefab": null, @@ -16754,20 +16742,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 592 + "__id__": 591 }, "_children": [ { - "__id__": 594 + "__id__": 593 } ], "_active": true, "_components": [ { - "__id__": 597 + "__id__": 596 }, { - "__id__": 598 + "__id__": 597 } ], "_prefab": null, @@ -16806,16 +16794,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 593 + "__id__": 592 }, "_children": [], "_active": true, "_components": [ { - "__id__": 595 + "__id__": 594 }, { - "__id__": 596 + "__id__": 595 } ], "_prefab": null, @@ -16854,7 +16842,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 594 + "__id__": 593 }, "_enabled": true, "__prefab": null, @@ -16876,7 +16864,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 594 + "__id__": 593 }, "_enabled": true, "__prefab": null, @@ -16915,7 +16903,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 593 + "__id__": 592 }, "_enabled": true, "__prefab": null, @@ -16937,7 +16925,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 593 + "__id__": 592 }, "_enabled": true, "__prefab": null, @@ -16976,16 +16964,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 592 + "__id__": 591 }, "_children": [], "_active": true, "_components": [ { - "__id__": 600 + "__id__": 599 }, { - "__id__": 601 + "__id__": 600 } ], "_prefab": null, @@ -17024,7 +17012,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 599 + "__id__": 598 }, "_enabled": true, "__prefab": null, @@ -17046,7 +17034,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 599 + "__id__": 598 }, "_enabled": true, "__prefab": null, @@ -17111,7 +17099,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 592 + "__id__": 591 }, "_enabled": true, "__prefab": null, @@ -17133,7 +17121,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 592 + "__id__": 591 }, "_enabled": true, "__prefab": null, @@ -17165,7 +17153,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 592 + "__id__": 591 }, "_enabled": true, "__prefab": null, @@ -17195,7 +17183,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 587 + "__id__": 586 }, "_enabled": true, "__prefab": null, @@ -17217,7 +17205,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 587 + "__id__": 586 }, "_enabled": true, "__prefab": null, @@ -17256,7 +17244,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 587 + "__id__": 586 }, "_enabled": true, "__prefab": null, @@ -17286,18 +17274,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 587 + "__id__": 586 }, "_enabled": true, "__prefab": null, "_timeLabel": { - "__id__": 601 + "__id__": 600 }, "_fill": { - "__id__": 590 + "__id__": 589 }, "_timeIcon": { - "__id__": 594 + "__id__": 593 }, "_countDownSound": { "__uuid__": "c96f7bd8-69d7-4810-a6d4-3cfa61766b2c", @@ -17315,14 +17303,17 @@ }, "_children": [ { - "__id__": 610 + "__id__": 609 }, { - "__id__": 613 + "__id__": 612 } ], "_active": true, "_components": [ + { + "__id__": 615 + }, { "__id__": 616 }, @@ -17330,13 +17321,10 @@ "__id__": 617 }, { - "__id__": 618 + "__id__": 619 }, { "__id__": 620 - }, - { - "__id__": 621 } ], "_prefab": null, @@ -17375,16 +17363,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 609 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 611 + "__id__": 610 }, { - "__id__": 612 + "__id__": 611 } ], "_prefab": null, @@ -17423,7 +17411,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 610 + "__id__": 609 }, "_enabled": true, "__prefab": null, @@ -17445,7 +17433,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 610 + "__id__": 609 }, "_enabled": true, "__prefab": null, @@ -17484,16 +17472,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 609 + "__id__": 608 }, "_children": [], "_active": false, "_components": [ { - "__id__": 614 + "__id__": 613 }, { - "__id__": 615 + "__id__": 614 } ], "_prefab": null, @@ -17532,7 +17520,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 613 + "__id__": 612 }, "_enabled": true, "__prefab": null, @@ -17554,7 +17542,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 613 + "__id__": 612 }, "_enabled": true, "__prefab": null, @@ -17593,7 +17581,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 609 + "__id__": 608 }, "_enabled": true, "__prefab": null, @@ -17615,7 +17603,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 609 + "__id__": 608 }, "_enabled": true, "__prefab": null, @@ -17654,13 +17642,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 609 + "__id__": 608 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 619 + "__id__": 618 } ], "_interactable": true, @@ -17703,14 +17691,14 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 609 + "__id__": 608 }, "_id": "1cDmuMEIFEs5ImBNG5Gm0F" }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 609 + "__id__": 608 }, "component": "", "_componentId": "fe619HtEX1OQq7oeACKrANd", @@ -17723,7 +17711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 609 + "__id__": 608 }, "_enabled": true, "__prefab": null, @@ -17753,15 +17741,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 609 + "__id__": 608 }, "_enabled": true, "__prefab": null, "_unMute": { - "__id__": 610 + "__id__": 609 }, "_mute": { - "__id__": 613 + "__id__": 612 }, "_id": "adeG5FRP1GpLzDXol2pxU+" }, @@ -17828,14 +17816,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 624 + }, { "__id__": 625 }, { "__id__": 626 - }, - { - "__id__": 627 } ], "_prefab": null, @@ -17874,7 +17862,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17896,7 +17884,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17935,7 +17923,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 624 + "__id__": 623 }, "_enabled": true, "__prefab": null, @@ -17970,14 +17958,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 628 + }, { "__id__": 629 }, { "__id__": 630 - }, - { - "__id__": 631 } ], "_prefab": null, @@ -18016,7 +18004,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 628 + "__id__": 627 }, "_enabled": true, "__prefab": null, @@ -18038,7 +18026,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 628 + "__id__": 627 }, "_enabled": true, "__prefab": null, @@ -18103,7 +18091,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 628 + "__id__": 627 }, "_enabled": true, "__prefab": null, @@ -18544,22 +18532,22 @@ }, "_children": [ { - "__id__": 648 + "__id__": 647 }, { - "__id__": 664 + "__id__": 663 }, { - "__id__": 683 + "__id__": 682 }, { - "__id__": 702 + "__id__": 701 } ], "_active": true, "_components": [ { - "__id__": 721 + "__id__": 720 } ], "_prefab": null, @@ -18598,26 +18586,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [ { - "__id__": 649 + "__id__": 648 }, { - "__id__": 656 + "__id__": 655 }, { - "__id__": 658 + "__id__": 657 } ], "_active": true, "_components": [ { - "__id__": 660 + "__id__": 659 }, { - "__id__": 661 + "__id__": 660 } ], "_prefab": null, @@ -18656,23 +18644,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 648 + "__id__": 647 }, "_children": [ { - "__id__": 650 + "__id__": 649 } ], "_active": true, "_components": [ + { + "__id__": 652 + }, { "__id__": 653 }, { "__id__": 654 - }, - { - "__id__": 655 } ], "_prefab": null, @@ -18711,16 +18699,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 649 + "__id__": 648 }, "_children": [], "_active": true, "_components": [ { - "__id__": 651 + "__id__": 650 }, { - "__id__": 652 + "__id__": 651 } ], "_prefab": null, @@ -18759,7 +18747,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 650 + "__id__": 649 }, "_enabled": true, "__prefab": null, @@ -18781,7 +18769,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 650 + "__id__": 649 }, "_enabled": true, "__prefab": null, @@ -18820,7 +18808,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 649 + "__id__": 648 }, "_enabled": true, "__prefab": null, @@ -18842,7 +18830,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 649 + "__id__": 648 }, "_enabled": true, "__prefab": null, @@ -18870,7 +18858,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 649 + "__id__": 648 }, "_enabled": true, "__prefab": null, @@ -18898,13 +18886,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 648 + "__id__": 647 }, "_children": [], "_active": true, "_components": [ { - "__id__": 657 + "__id__": 656 } ], "_prefab": null, @@ -18943,7 +18931,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 656 + "__id__": 655 }, "_enabled": true, "__prefab": null, @@ -18965,13 +18953,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 648 + "__id__": 647 }, "_children": [], "_active": true, "_components": [ { - "__id__": 659 + "__id__": 658 } ], "_prefab": null, @@ -19010,7 +18998,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 658 + "__id__": 657 }, "_enabled": true, "__prefab": null, @@ -19032,7 +19020,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 648 + "__id__": 647 }, "_enabled": true, "__prefab": null, @@ -19054,27 +19042,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 648 + "__id__": 647 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 654 + "__id__": 653 }, "_sprite": { - "__id__": 652 + "__id__": 651 }, "_patrolPoint1": { - "__id__": 656 + "__id__": 655 }, "_patrolPoint2": { - "__id__": 658 + "__id__": 657 }, "_speed": 50, "_requireGoal": 3, "_curveY": true, "_patrolCurve": { - "__id__": 662 + "__id__": 661 }, "_multiplierCurve": 120, "_hitSound": { @@ -19086,7 +19074,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 663 + "__id__": 662 } }, { @@ -19130,29 +19118,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [ { - "__id__": 665 + "__id__": 664 }, { - "__id__": 668 + "__id__": 667 }, { - "__id__": 675 + "__id__": 674 }, { - "__id__": 677 + "__id__": 676 } ], "_active": true, "_components": [ { - "__id__": 679 + "__id__": 678 }, { - "__id__": 680 + "__id__": 679 } ], "_prefab": null, @@ -19191,16 +19179,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 663 }, "_children": [], "_active": true, "_components": [ { - "__id__": 666 + "__id__": 665 }, { - "__id__": 667 + "__id__": 666 } ], "_prefab": null, @@ -19239,7 +19227,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 665 + "__id__": 664 }, "_enabled": true, "__prefab": null, @@ -19261,7 +19249,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 665 + "__id__": 664 }, "_enabled": true, "__prefab": null, @@ -19300,23 +19288,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 663 }, "_children": [ { - "__id__": 669 + "__id__": 668 } ], "_active": true, "_components": [ + { + "__id__": 671 + }, { "__id__": 672 }, { "__id__": 673 - }, - { - "__id__": 674 } ], "_prefab": null, @@ -19355,16 +19343,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 668 + "__id__": 667 }, "_children": [], "_active": true, "_components": [ { - "__id__": 670 + "__id__": 669 }, { - "__id__": 671 + "__id__": 670 } ], "_prefab": null, @@ -19403,7 +19391,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 669 + "__id__": 668 }, "_enabled": true, "__prefab": null, @@ -19425,7 +19413,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 669 + "__id__": 668 }, "_enabled": true, "__prefab": null, @@ -19464,7 +19452,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 668 + "__id__": 667 }, "_enabled": true, "__prefab": null, @@ -19486,7 +19474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 668 + "__id__": 667 }, "_enabled": true, "__prefab": null, @@ -19514,7 +19502,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 668 + "__id__": 667 }, "_enabled": true, "__prefab": null, @@ -19542,13 +19530,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 663 }, "_children": [], "_active": true, "_components": [ { - "__id__": 676 + "__id__": 675 } ], "_prefab": null, @@ -19587,7 +19575,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 675 + "__id__": 674 }, "_enabled": true, "__prefab": null, @@ -19609,13 +19597,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 663 }, "_children": [], "_active": true, "_components": [ { - "__id__": 678 + "__id__": 677 } ], "_prefab": null, @@ -19654,7 +19642,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 677 + "__id__": 676 }, "_enabled": true, "__prefab": null, @@ -19676,7 +19664,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19698,27 +19686,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 673 + "__id__": 672 }, "_sprite": { - "__id__": 671 + "__id__": 670 }, "_patrolPoint1": { - "__id__": 675 + "__id__": 674 }, "_patrolPoint2": { - "__id__": 677 + "__id__": 676 }, "_speed": 50, "_requireGoal": 6, "_curveY": false, "_patrolCurve": { - "__id__": 681 + "__id__": 680 }, "_multiplierCurve": 100, "_hitSound": { @@ -19730,7 +19718,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 682 + "__id__": 681 } }, { @@ -19774,29 +19762,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [ { - "__id__": 684 + "__id__": 683 }, { - "__id__": 687 + "__id__": 686 }, { - "__id__": 694 + "__id__": 693 }, { - "__id__": 696 + "__id__": 695 } ], "_active": true, "_components": [ { - "__id__": 698 + "__id__": 697 }, { - "__id__": 699 + "__id__": 698 } ], "_prefab": null, @@ -19835,16 +19823,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 683 + "__id__": 682 }, "_children": [], "_active": true, "_components": [ { - "__id__": 685 + "__id__": 684 }, { - "__id__": 686 + "__id__": 685 } ], "_prefab": null, @@ -19883,7 +19871,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 684 + "__id__": 683 }, "_enabled": true, "__prefab": null, @@ -19905,7 +19893,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 684 + "__id__": 683 }, "_enabled": true, "__prefab": null, @@ -19944,23 +19932,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 683 + "__id__": 682 }, "_children": [ { - "__id__": 688 + "__id__": 687 } ], "_active": true, "_components": [ + { + "__id__": 690 + }, { "__id__": 691 }, { "__id__": 692 - }, - { - "__id__": 693 } ], "_prefab": null, @@ -19999,16 +19987,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 687 + "__id__": 686 }, "_children": [], "_active": true, "_components": [ { - "__id__": 689 + "__id__": 688 }, { - "__id__": 690 + "__id__": 689 } ], "_prefab": null, @@ -20047,7 +20035,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 688 + "__id__": 687 }, "_enabled": true, "__prefab": null, @@ -20069,7 +20057,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 688 + "__id__": 687 }, "_enabled": true, "__prefab": null, @@ -20108,7 +20096,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 687 + "__id__": 686 }, "_enabled": true, "__prefab": null, @@ -20130,7 +20118,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 687 + "__id__": 686 }, "_enabled": true, "__prefab": null, @@ -20158,7 +20146,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 687 + "__id__": 686 }, "_enabled": true, "__prefab": null, @@ -20186,13 +20174,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 683 + "__id__": 682 }, "_children": [], "_active": true, "_components": [ { - "__id__": 695 + "__id__": 694 } ], "_prefab": null, @@ -20231,7 +20219,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 694 + "__id__": 693 }, "_enabled": true, "__prefab": null, @@ -20253,13 +20241,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 683 + "__id__": 682 }, "_children": [], "_active": true, "_components": [ { - "__id__": 697 + "__id__": 696 } ], "_prefab": null, @@ -20298,7 +20286,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 696 + "__id__": 695 }, "_enabled": true, "__prefab": null, @@ -20320,7 +20308,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -20342,27 +20330,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 692 + "__id__": 691 }, "_sprite": { - "__id__": 690 + "__id__": 689 }, "_patrolPoint1": { - "__id__": 694 + "__id__": 693 }, "_patrolPoint2": { - "__id__": 696 + "__id__": 695 }, "_speed": 50, "_requireGoal": 9, "_curveY": false, "_patrolCurve": { - "__id__": 700 + "__id__": 699 }, "_multiplierCurve": 100, "_hitSound": { @@ -20374,7 +20362,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 701 + "__id__": 700 } }, { @@ -20418,29 +20406,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [ { - "__id__": 703 + "__id__": 702 }, { - "__id__": 706 + "__id__": 705 }, { - "__id__": 713 + "__id__": 712 }, { - "__id__": 715 + "__id__": 714 } ], "_active": true, "_components": [ { - "__id__": 717 + "__id__": 716 }, { - "__id__": 718 + "__id__": 717 } ], "_prefab": null, @@ -20479,16 +20467,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 702 + "__id__": 701 }, "_children": [], "_active": true, "_components": [ { - "__id__": 704 + "__id__": 703 }, { - "__id__": 705 + "__id__": 704 } ], "_prefab": null, @@ -20527,7 +20515,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 703 + "__id__": 702 }, "_enabled": true, "__prefab": null, @@ -20549,7 +20537,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 703 + "__id__": 702 }, "_enabled": true, "__prefab": null, @@ -20588,23 +20576,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 702 + "__id__": 701 }, "_children": [ { - "__id__": 707 + "__id__": 706 } ], "_active": true, "_components": [ + { + "__id__": 709 + }, { "__id__": 710 }, { "__id__": 711 - }, - { - "__id__": 712 } ], "_prefab": null, @@ -20643,16 +20631,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 706 + "__id__": 705 }, "_children": [], "_active": true, "_components": [ { - "__id__": 708 + "__id__": 707 }, { - "__id__": 709 + "__id__": 708 } ], "_prefab": null, @@ -20691,7 +20679,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 707 + "__id__": 706 }, "_enabled": true, "__prefab": null, @@ -20713,7 +20701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 707 + "__id__": 706 }, "_enabled": true, "__prefab": null, @@ -20752,7 +20740,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 705 }, "_enabled": true, "__prefab": null, @@ -20774,7 +20762,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 705 }, "_enabled": true, "__prefab": null, @@ -20802,7 +20790,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 705 }, "_enabled": true, "__prefab": null, @@ -20830,13 +20818,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 702 + "__id__": 701 }, "_children": [], "_active": true, "_components": [ { - "__id__": 714 + "__id__": 713 } ], "_prefab": null, @@ -20875,7 +20863,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 713 + "__id__": 712 }, "_enabled": true, "__prefab": null, @@ -20897,13 +20885,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 702 + "__id__": 701 }, "_children": [], "_active": true, "_components": [ { - "__id__": 716 + "__id__": 715 } ], "_prefab": null, @@ -20942,7 +20930,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 714 }, "_enabled": true, "__prefab": null, @@ -20964,7 +20952,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20986,27 +20974,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 711 + "__id__": 710 }, "_sprite": { - "__id__": 709 + "__id__": 708 }, "_patrolPoint1": { - "__id__": 713 + "__id__": 712 }, "_patrolPoint2": { - "__id__": 715 + "__id__": 714 }, "_speed": 50, "_requireGoal": 12, "_curveY": false, "_patrolCurve": { - "__id__": 719 + "__id__": 718 }, "_multiplierCurve": 100, "_hitSound": { @@ -21018,7 +21006,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 720 + "__id__": 719 } }, { @@ -21062,7 +21050,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 646 }, "_enabled": true, "__prefab": null, @@ -21088,22 +21076,22 @@ }, "_children": [ { - "__id__": 723 + "__id__": 722 }, { - "__id__": 738 + "__id__": 737 }, { - "__id__": 753 + "__id__": 752 }, { - "__id__": 768 + "__id__": 767 } ], "_active": true, "_components": [ { - "__id__": 783 + "__id__": 782 } ], "_prefab": null, @@ -21142,23 +21130,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 722 + "__id__": 721 }, "_children": [ { - "__id__": 724 + "__id__": 723 } ], "_active": true, "_components": [ { - "__id__": 733 + "__id__": 732 + }, + { + "__id__": 735 }, { "__id__": 736 - }, - { - "__id__": 737 } ], "_prefab": null, @@ -21197,29 +21185,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 723 + "__id__": 722 }, "_children": [ { - "__id__": 725 + "__id__": 724 }, { - "__id__": 728 + "__id__": 727 } ], "_active": true, "_components": [ + { + "__id__": 730 + }, { "__id__": 731 }, { - "__id__": 732 + "__id__": 733 }, { "__id__": 734 - }, - { - "__id__": 735 } ], "_prefab": null, @@ -21258,16 +21246,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 724 + "__id__": 723 }, "_children": [], "_active": true, "_components": [ { - "__id__": 726 + "__id__": 725 }, { - "__id__": 727 + "__id__": 726 } ], "_prefab": null, @@ -21306,7 +21294,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 724 }, "_enabled": true, "__prefab": null, @@ -21328,7 +21316,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 724 }, "_enabled": true, "__prefab": null, @@ -21367,16 +21355,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 724 + "__id__": 723 }, "_children": [], "_active": true, "_components": [ { - "__id__": 729 + "__id__": 728 }, { - "__id__": 730 + "__id__": 729 } ], "_prefab": null, @@ -21415,7 +21403,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 728 + "__id__": 727 }, "_enabled": true, "__prefab": null, @@ -21437,7 +21425,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 728 + "__id__": 727 }, "_enabled": true, "__prefab": null, @@ -21476,7 +21464,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21504,7 +21492,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21520,7 +21508,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 733 + "__id__": 732 }, "_enableLimit": true, "_lowerAngle": -60, @@ -21536,7 +21524,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21564,7 +21552,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21644,7 +21632,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21666,15 +21654,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 737 + "__id__": 736 }, "_hingeJoint": { - "__id__": 732 + "__id__": 731 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -21691,7 +21679,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21714,23 +21702,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 722 + "__id__": 721 }, "_children": [ { - "__id__": 739 + "__id__": 738 } ], "_active": true, "_components": [ { - "__id__": 748 + "__id__": 747 + }, + { + "__id__": 750 }, { "__id__": 751 - }, - { - "__id__": 752 } ], "_prefab": null, @@ -21769,29 +21757,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 738 + "__id__": 737 }, "_children": [ { - "__id__": 740 + "__id__": 739 }, { - "__id__": 743 + "__id__": 742 } ], "_active": true, "_components": [ + { + "__id__": 745 + }, { "__id__": 746 }, { - "__id__": 747 + "__id__": 748 }, { "__id__": 749 - }, - { - "__id__": 750 } ], "_prefab": null, @@ -21830,16 +21818,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 739 + "__id__": 738 }, "_children": [], "_active": true, "_components": [ { - "__id__": 741 + "__id__": 740 }, { - "__id__": 742 + "__id__": 741 } ], "_prefab": null, @@ -21878,7 +21866,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 740 + "__id__": 739 }, "_enabled": true, "__prefab": null, @@ -21900,7 +21888,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 740 + "__id__": 739 }, "_enabled": true, "__prefab": null, @@ -21939,16 +21927,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 739 + "__id__": 738 }, "_children": [], "_active": true, "_components": [ { - "__id__": 744 + "__id__": 743 }, { - "__id__": 745 + "__id__": 744 } ], "_prefab": null, @@ -21987,7 +21975,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 743 + "__id__": 742 }, "_enabled": true, "__prefab": null, @@ -22009,7 +21997,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 743 + "__id__": 742 }, "_enabled": true, "__prefab": null, @@ -22048,7 +22036,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -22076,7 +22064,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -22092,7 +22080,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 748 + "__id__": 747 }, "_enableLimit": true, "_lowerAngle": 0, @@ -22108,7 +22096,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -22136,7 +22124,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -22231,7 +22219,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -22253,15 +22241,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 752 + "__id__": 751 }, "_hingeJoint": { - "__id__": 747 + "__id__": 746 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22278,7 +22266,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -22301,23 +22289,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 722 + "__id__": 721 }, "_children": [ { - "__id__": 754 + "__id__": 753 } ], "_active": true, "_components": [ { - "__id__": 763 + "__id__": 762 + }, + { + "__id__": 765 }, { "__id__": 766 - }, - { - "__id__": 767 } ], "_prefab": null, @@ -22356,29 +22344,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 753 + "__id__": 752 }, "_children": [ { - "__id__": 755 + "__id__": 754 }, { - "__id__": 758 + "__id__": 757 } ], "_active": true, "_components": [ + { + "__id__": 760 + }, { "__id__": 761 }, { - "__id__": 762 + "__id__": 763 }, { "__id__": 764 - }, - { - "__id__": 765 } ], "_prefab": null, @@ -22417,16 +22405,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 754 + "__id__": 753 }, "_children": [], "_active": true, "_components": [ { - "__id__": 756 + "__id__": 755 }, { - "__id__": 757 + "__id__": 756 } ], "_prefab": null, @@ -22465,7 +22453,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 755 + "__id__": 754 }, "_enabled": true, "__prefab": null, @@ -22487,7 +22475,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 755 + "__id__": 754 }, "_enabled": true, "__prefab": null, @@ -22526,16 +22514,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 754 + "__id__": 753 }, "_children": [], "_active": true, "_components": [ { - "__id__": 759 + "__id__": 758 }, { - "__id__": 760 + "__id__": 759 } ], "_prefab": null, @@ -22574,7 +22562,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 758 + "__id__": 757 }, "_enabled": true, "__prefab": null, @@ -22596,7 +22584,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 758 + "__id__": 757 }, "_enabled": true, "__prefab": null, @@ -22635,7 +22623,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22663,7 +22651,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22679,7 +22667,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 763 + "__id__": 762 }, "_enableLimit": true, "_lowerAngle": 0, @@ -22695,7 +22683,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22723,7 +22711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22818,7 +22806,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22840,15 +22828,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 767 + "__id__": 766 }, "_hingeJoint": { - "__id__": 762 + "__id__": 761 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22865,7 +22853,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22888,23 +22876,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 722 + "__id__": 721 }, "_children": [ { - "__id__": 769 + "__id__": 768 } ], "_active": true, "_components": [ { - "__id__": 778 + "__id__": 777 + }, + { + "__id__": 780 }, { "__id__": 781 - }, - { - "__id__": 782 } ], "_prefab": null, @@ -22943,29 +22931,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 768 + "__id__": 767 }, "_children": [ { - "__id__": 770 + "__id__": 769 }, { - "__id__": 773 + "__id__": 772 } ], "_active": true, "_components": [ + { + "__id__": 775 + }, { "__id__": 776 }, { - "__id__": 777 + "__id__": 778 }, { "__id__": 779 - }, - { - "__id__": 780 } ], "_prefab": null, @@ -23004,16 +22992,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 769 + "__id__": 768 }, "_children": [], "_active": true, "_components": [ { - "__id__": 771 + "__id__": 770 }, { - "__id__": 772 + "__id__": 771 } ], "_prefab": null, @@ -23052,7 +23040,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 770 + "__id__": 769 }, "_enabled": true, "__prefab": null, @@ -23074,7 +23062,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 770 + "__id__": 769 }, "_enabled": true, "__prefab": null, @@ -23113,16 +23101,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 769 + "__id__": 768 }, "_children": [], "_active": true, "_components": [ { - "__id__": 774 + "__id__": 773 }, { - "__id__": 775 + "__id__": 774 } ], "_prefab": null, @@ -23161,7 +23149,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 773 + "__id__": 772 }, "_enabled": true, "__prefab": null, @@ -23183,7 +23171,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 773 + "__id__": 772 }, "_enabled": true, "__prefab": null, @@ -23222,7 +23210,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -23250,7 +23238,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -23266,7 +23254,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 778 + "__id__": 777 }, "_enableLimit": true, "_lowerAngle": -60, @@ -23282,7 +23270,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23310,7 +23298,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -23390,7 +23378,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -23412,15 +23400,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 782 + "__id__": 781 }, "_hingeJoint": { - "__id__": 777 + "__id__": 776 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -23437,7 +23425,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23460,7 +23448,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 722 + "__id__": 721 }, "_enabled": true, "__prefab": null, @@ -23487,6 +23475,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 784 + }, { "__id__": 785 }, @@ -23495,9 +23486,6 @@ }, { "__id__": 787 - }, - { - "__id__": 788 } ], "_prefab": null, @@ -23536,7 +23524,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, @@ -23558,7 +23546,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, @@ -23586,12 +23574,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 786 + "__id__": 785 }, "_id": "63rfzsm3REkprs+s68PCRK" }, @@ -23601,7 +23589,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, @@ -23633,211 +23621,211 @@ }, "_children": [ { - "__id__": 790 + "__id__": 789 }, { - "__id__": 793 + "__id__": 792 }, { - "__id__": 796 + "__id__": 795 }, { - "__id__": 799 + "__id__": 798 }, { - "__id__": 802 + "__id__": 801 }, { - "__id__": 805 + "__id__": 804 }, { - "__id__": 808 + "__id__": 807 }, { - "__id__": 811 + "__id__": 810 }, { - "__id__": 814 + "__id__": 813 }, { - "__id__": 817 + "__id__": 816 }, { - "__id__": 820 + "__id__": 819 }, { - "__id__": 823 + "__id__": 822 }, { - "__id__": 826 + "__id__": 825 }, { - "__id__": 829 + "__id__": 828 }, { - "__id__": 832 + "__id__": 831 }, { - "__id__": 835 + "__id__": 834 }, { - "__id__": 838 + "__id__": 837 }, { - "__id__": 841 + "__id__": 840 }, { - "__id__": 844 + "__id__": 843 }, { - "__id__": 847 + "__id__": 846 }, { - "__id__": 850 + "__id__": 849 }, { - "__id__": 853 + "__id__": 852 }, { - "__id__": 856 + "__id__": 855 }, { - "__id__": 859 + "__id__": 858 }, { - "__id__": 862 + "__id__": 861 }, { - "__id__": 865 + "__id__": 864 }, { - "__id__": 868 + "__id__": 867 }, { - "__id__": 871 + "__id__": 870 }, { - "__id__": 874 + "__id__": 873 }, { - "__id__": 877 + "__id__": 876 }, { - "__id__": 880 + "__id__": 879 }, { - "__id__": 883 + "__id__": 882 }, { - "__id__": 886 + "__id__": 885 }, { - "__id__": 889 + "__id__": 888 }, { - "__id__": 892 + "__id__": 891 }, { - "__id__": 895 + "__id__": 894 }, { - "__id__": 898 + "__id__": 897 }, { - "__id__": 901 + "__id__": 900 }, { - "__id__": 904 + "__id__": 903 }, { - "__id__": 907 + "__id__": 906 }, { - "__id__": 910 + "__id__": 909 }, { - "__id__": 913 + "__id__": 912 }, { - "__id__": 916 + "__id__": 915 }, { - "__id__": 919 + "__id__": 918 }, { - "__id__": 922 + "__id__": 921 }, { - "__id__": 925 + "__id__": 924 }, { - "__id__": 928 + "__id__": 927 }, { - "__id__": 931 + "__id__": 930 }, { - "__id__": 934 + "__id__": 933 }, { - "__id__": 937 + "__id__": 936 }, { - "__id__": 940 + "__id__": 939 }, { - "__id__": 943 + "__id__": 942 }, { - "__id__": 946 + "__id__": 945 }, { - "__id__": 949 + "__id__": 948 }, { - "__id__": 952 + "__id__": 951 }, { - "__id__": 955 + "__id__": 954 }, { - "__id__": 958 + "__id__": 957 }, { - "__id__": 961 + "__id__": 960 }, { - "__id__": 964 + "__id__": 963 }, { - "__id__": 967 + "__id__": 966 }, { - "__id__": 970 + "__id__": 969 }, { - "__id__": 973 + "__id__": 972 }, { - "__id__": 976 + "__id__": 975 }, { - "__id__": 979 + "__id__": 978 }, { - "__id__": 982 + "__id__": 981 }, { - "__id__": 985 + "__id__": 984 } ], "_active": true, "_components": [ { - "__id__": 988 + "__id__": 987 }, { - "__id__": 989 + "__id__": 988 } ], "_prefab": null, @@ -23876,16 +23864,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 791 + "__id__": 790 }, { - "__id__": 792 + "__id__": 791 } ], "_prefab": null, @@ -23924,7 +23912,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 790 + "__id__": 789 }, "_enabled": true, "__prefab": null, @@ -23946,7 +23934,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 790 + "__id__": 789 }, "_enabled": true, "__prefab": null, @@ -23985,16 +23973,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 794 + "__id__": 793 }, { - "__id__": 795 + "__id__": 794 } ], "_prefab": null, @@ -24033,7 +24021,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 793 + "__id__": 792 }, "_enabled": true, "__prefab": null, @@ -24055,7 +24043,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 793 + "__id__": 792 }, "_enabled": true, "__prefab": null, @@ -24094,16 +24082,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 797 + "__id__": 796 }, { - "__id__": 798 + "__id__": 797 } ], "_prefab": null, @@ -24142,7 +24130,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 796 + "__id__": 795 }, "_enabled": true, "__prefab": null, @@ -24164,7 +24152,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 796 + "__id__": 795 }, "_enabled": true, "__prefab": null, @@ -24203,16 +24191,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 800 + "__id__": 799 }, { - "__id__": 801 + "__id__": 800 } ], "_prefab": null, @@ -24251,7 +24239,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 799 + "__id__": 798 }, "_enabled": true, "__prefab": null, @@ -24273,7 +24261,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 799 + "__id__": 798 }, "_enabled": true, "__prefab": null, @@ -24312,16 +24300,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 803 + "__id__": 802 }, { - "__id__": 804 + "__id__": 803 } ], "_prefab": null, @@ -24360,7 +24348,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 801 }, "_enabled": true, "__prefab": null, @@ -24382,7 +24370,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 801 }, "_enabled": true, "__prefab": null, @@ -24421,16 +24409,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 806 + "__id__": 805 }, { - "__id__": 807 + "__id__": 806 } ], "_prefab": null, @@ -24469,7 +24457,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 805 + "__id__": 804 }, "_enabled": true, "__prefab": null, @@ -24491,7 +24479,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 805 + "__id__": 804 }, "_enabled": true, "__prefab": null, @@ -24530,16 +24518,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 809 + "__id__": 808 }, { - "__id__": 810 + "__id__": 809 } ], "_prefab": null, @@ -24578,7 +24566,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 808 + "__id__": 807 }, "_enabled": true, "__prefab": null, @@ -24600,7 +24588,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 808 + "__id__": 807 }, "_enabled": true, "__prefab": null, @@ -24639,16 +24627,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 812 + "__id__": 811 }, { - "__id__": 813 + "__id__": 812 } ], "_prefab": null, @@ -24687,7 +24675,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 811 + "__id__": 810 }, "_enabled": true, "__prefab": null, @@ -24709,7 +24697,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 811 + "__id__": 810 }, "_enabled": true, "__prefab": null, @@ -24748,16 +24736,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 815 + "__id__": 814 }, { - "__id__": 816 + "__id__": 815 } ], "_prefab": null, @@ -24796,7 +24784,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 814 + "__id__": 813 }, "_enabled": true, "__prefab": null, @@ -24818,7 +24806,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 814 + "__id__": 813 }, "_enabled": true, "__prefab": null, @@ -24857,16 +24845,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 818 + "__id__": 817 }, { - "__id__": 819 + "__id__": 818 } ], "_prefab": null, @@ -24905,7 +24893,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 817 + "__id__": 816 }, "_enabled": true, "__prefab": null, @@ -24927,7 +24915,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 817 + "__id__": 816 }, "_enabled": true, "__prefab": null, @@ -24966,16 +24954,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 821 + "__id__": 820 }, { - "__id__": 822 + "__id__": 821 } ], "_prefab": null, @@ -25014,7 +25002,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 820 + "__id__": 819 }, "_enabled": true, "__prefab": null, @@ -25036,7 +25024,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 820 + "__id__": 819 }, "_enabled": true, "__prefab": null, @@ -25075,16 +25063,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 824 + "__id__": 823 }, { - "__id__": 825 + "__id__": 824 } ], "_prefab": null, @@ -25123,7 +25111,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 823 + "__id__": 822 }, "_enabled": true, "__prefab": null, @@ -25145,7 +25133,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 823 + "__id__": 822 }, "_enabled": true, "__prefab": null, @@ -25184,16 +25172,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 827 + "__id__": 826 }, { - "__id__": 828 + "__id__": 827 } ], "_prefab": null, @@ -25232,7 +25220,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 826 + "__id__": 825 }, "_enabled": true, "__prefab": null, @@ -25254,7 +25242,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 826 + "__id__": 825 }, "_enabled": true, "__prefab": null, @@ -25293,16 +25281,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 830 + "__id__": 829 }, { - "__id__": 831 + "__id__": 830 } ], "_prefab": null, @@ -25341,7 +25329,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 829 + "__id__": 828 }, "_enabled": true, "__prefab": null, @@ -25363,7 +25351,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 829 + "__id__": 828 }, "_enabled": true, "__prefab": null, @@ -25402,16 +25390,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 833 + "__id__": 832 }, { - "__id__": 834 + "__id__": 833 } ], "_prefab": null, @@ -25450,7 +25438,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 831 }, "_enabled": true, "__prefab": null, @@ -25472,7 +25460,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 832 + "__id__": 831 }, "_enabled": true, "__prefab": null, @@ -25511,16 +25499,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 836 + "__id__": 835 }, { - "__id__": 837 + "__id__": 836 } ], "_prefab": null, @@ -25559,7 +25547,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 835 + "__id__": 834 }, "_enabled": true, "__prefab": null, @@ -25581,7 +25569,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 835 + "__id__": 834 }, "_enabled": true, "__prefab": null, @@ -25620,16 +25608,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 839 + "__id__": 838 }, { - "__id__": 840 + "__id__": 839 } ], "_prefab": null, @@ -25668,7 +25656,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 838 + "__id__": 837 }, "_enabled": true, "__prefab": null, @@ -25690,7 +25678,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 838 + "__id__": 837 }, "_enabled": true, "__prefab": null, @@ -25729,16 +25717,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 842 + "__id__": 841 }, { - "__id__": 843 + "__id__": 842 } ], "_prefab": null, @@ -25777,7 +25765,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 841 + "__id__": 840 }, "_enabled": true, "__prefab": null, @@ -25799,7 +25787,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 841 + "__id__": 840 }, "_enabled": true, "__prefab": null, @@ -25838,16 +25826,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 845 + "__id__": 844 }, { - "__id__": 846 + "__id__": 845 } ], "_prefab": null, @@ -25886,7 +25874,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 844 + "__id__": 843 }, "_enabled": true, "__prefab": null, @@ -25908,7 +25896,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 844 + "__id__": 843 }, "_enabled": true, "__prefab": null, @@ -25947,16 +25935,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 848 + "__id__": 847 }, { - "__id__": 849 + "__id__": 848 } ], "_prefab": null, @@ -25995,7 +25983,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 846 }, "_enabled": true, "__prefab": null, @@ -26017,7 +26005,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 846 }, "_enabled": true, "__prefab": null, @@ -26056,16 +26044,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 851 + "__id__": 850 }, { - "__id__": 852 + "__id__": 851 } ], "_prefab": null, @@ -26104,7 +26092,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 850 + "__id__": 849 }, "_enabled": true, "__prefab": null, @@ -26126,7 +26114,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 850 + "__id__": 849 }, "_enabled": true, "__prefab": null, @@ -26165,16 +26153,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 854 + "__id__": 853 }, { - "__id__": 855 + "__id__": 854 } ], "_prefab": null, @@ -26213,7 +26201,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 853 + "__id__": 852 }, "_enabled": true, "__prefab": null, @@ -26235,7 +26223,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 853 + "__id__": 852 }, "_enabled": true, "__prefab": null, @@ -26274,16 +26262,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 857 + "__id__": 856 }, { - "__id__": 858 + "__id__": 857 } ], "_prefab": null, @@ -26322,7 +26310,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 856 + "__id__": 855 }, "_enabled": true, "__prefab": null, @@ -26344,7 +26332,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 856 + "__id__": 855 }, "_enabled": true, "__prefab": null, @@ -26383,16 +26371,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 860 + "__id__": 859 }, { - "__id__": 861 + "__id__": 860 } ], "_prefab": null, @@ -26431,7 +26419,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 859 + "__id__": 858 }, "_enabled": true, "__prefab": null, @@ -26453,7 +26441,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 859 + "__id__": 858 }, "_enabled": true, "__prefab": null, @@ -26492,16 +26480,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 863 + "__id__": 862 }, { - "__id__": 864 + "__id__": 863 } ], "_prefab": null, @@ -26540,7 +26528,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 862 + "__id__": 861 }, "_enabled": true, "__prefab": null, @@ -26562,7 +26550,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 862 + "__id__": 861 }, "_enabled": true, "__prefab": null, @@ -26601,16 +26589,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 866 + "__id__": 865 }, { - "__id__": 867 + "__id__": 866 } ], "_prefab": null, @@ -26649,7 +26637,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 865 + "__id__": 864 }, "_enabled": true, "__prefab": null, @@ -26671,7 +26659,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 865 + "__id__": 864 }, "_enabled": true, "__prefab": null, @@ -26710,16 +26698,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 869 + "__id__": 868 }, { - "__id__": 870 + "__id__": 869 } ], "_prefab": null, @@ -26758,7 +26746,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 868 + "__id__": 867 }, "_enabled": true, "__prefab": null, @@ -26780,7 +26768,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 868 + "__id__": 867 }, "_enabled": true, "__prefab": null, @@ -26819,16 +26807,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 872 + "__id__": 871 }, { - "__id__": 873 + "__id__": 872 } ], "_prefab": null, @@ -26867,7 +26855,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 871 + "__id__": 870 }, "_enabled": true, "__prefab": null, @@ -26889,7 +26877,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 871 + "__id__": 870 }, "_enabled": true, "__prefab": null, @@ -26928,16 +26916,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 875 + "__id__": 874 }, { - "__id__": 876 + "__id__": 875 } ], "_prefab": null, @@ -26976,7 +26964,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 874 + "__id__": 873 }, "_enabled": true, "__prefab": null, @@ -26998,7 +26986,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 874 + "__id__": 873 }, "_enabled": true, "__prefab": null, @@ -27037,16 +27025,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 878 + "__id__": 877 }, { - "__id__": 879 + "__id__": 878 } ], "_prefab": null, @@ -27085,7 +27073,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 877 + "__id__": 876 }, "_enabled": true, "__prefab": null, @@ -27107,7 +27095,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 877 + "__id__": 876 }, "_enabled": true, "__prefab": null, @@ -27146,16 +27134,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 881 + "__id__": 880 }, { - "__id__": 882 + "__id__": 881 } ], "_prefab": null, @@ -27194,7 +27182,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 880 + "__id__": 879 }, "_enabled": true, "__prefab": null, @@ -27216,7 +27204,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 880 + "__id__": 879 }, "_enabled": true, "__prefab": null, @@ -27255,16 +27243,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 884 + "__id__": 883 }, { - "__id__": 885 + "__id__": 884 } ], "_prefab": null, @@ -27303,7 +27291,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 883 + "__id__": 882 }, "_enabled": true, "__prefab": null, @@ -27325,7 +27313,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 883 + "__id__": 882 }, "_enabled": true, "__prefab": null, @@ -27364,16 +27352,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 887 + "__id__": 886 }, { - "__id__": 888 + "__id__": 887 } ], "_prefab": null, @@ -27412,7 +27400,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 886 + "__id__": 885 }, "_enabled": true, "__prefab": null, @@ -27434,7 +27422,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 886 + "__id__": 885 }, "_enabled": true, "__prefab": null, @@ -27473,16 +27461,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 890 + "__id__": 889 }, { - "__id__": 891 + "__id__": 890 } ], "_prefab": null, @@ -27521,7 +27509,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 889 + "__id__": 888 }, "_enabled": true, "__prefab": null, @@ -27543,7 +27531,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 889 + "__id__": 888 }, "_enabled": true, "__prefab": null, @@ -27582,16 +27570,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 893 + "__id__": 892 }, { - "__id__": 894 + "__id__": 893 } ], "_prefab": null, @@ -27630,7 +27618,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 892 + "__id__": 891 }, "_enabled": true, "__prefab": null, @@ -27652,7 +27640,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 892 + "__id__": 891 }, "_enabled": true, "__prefab": null, @@ -27691,16 +27679,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 896 + "__id__": 895 }, { - "__id__": 897 + "__id__": 896 } ], "_prefab": null, @@ -27739,7 +27727,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 894 }, "_enabled": true, "__prefab": null, @@ -27761,7 +27749,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 894 }, "_enabled": true, "__prefab": null, @@ -27800,16 +27788,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 899 + "__id__": 898 }, { - "__id__": 900 + "__id__": 899 } ], "_prefab": null, @@ -27848,7 +27836,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 898 + "__id__": 897 }, "_enabled": true, "__prefab": null, @@ -27870,7 +27858,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 898 + "__id__": 897 }, "_enabled": true, "__prefab": null, @@ -27909,16 +27897,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 902 + "__id__": 901 }, { - "__id__": 903 + "__id__": 902 } ], "_prefab": null, @@ -27957,7 +27945,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 901 + "__id__": 900 }, "_enabled": true, "__prefab": null, @@ -27979,7 +27967,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 901 + "__id__": 900 }, "_enabled": true, "__prefab": null, @@ -28018,16 +28006,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 905 + "__id__": 904 }, { - "__id__": 906 + "__id__": 905 } ], "_prefab": null, @@ -28066,7 +28054,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 904 + "__id__": 903 }, "_enabled": true, "__prefab": null, @@ -28088,7 +28076,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 904 + "__id__": 903 }, "_enabled": true, "__prefab": null, @@ -28127,16 +28115,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 908 + "__id__": 907 }, { - "__id__": 909 + "__id__": 908 } ], "_prefab": null, @@ -28175,7 +28163,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 907 + "__id__": 906 }, "_enabled": true, "__prefab": null, @@ -28197,7 +28185,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 907 + "__id__": 906 }, "_enabled": true, "__prefab": null, @@ -28236,16 +28224,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 911 + "__id__": 910 }, { - "__id__": 912 + "__id__": 911 } ], "_prefab": null, @@ -28284,7 +28272,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 910 + "__id__": 909 }, "_enabled": true, "__prefab": null, @@ -28306,7 +28294,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 910 + "__id__": 909 }, "_enabled": true, "__prefab": null, @@ -28345,16 +28333,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 914 + "__id__": 913 }, { - "__id__": 915 + "__id__": 914 } ], "_prefab": null, @@ -28393,7 +28381,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 913 + "__id__": 912 }, "_enabled": true, "__prefab": null, @@ -28415,7 +28403,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 913 + "__id__": 912 }, "_enabled": true, "__prefab": null, @@ -28454,16 +28442,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 917 + "__id__": 916 }, { - "__id__": 918 + "__id__": 917 } ], "_prefab": null, @@ -28502,7 +28490,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 916 + "__id__": 915 }, "_enabled": true, "__prefab": null, @@ -28524,7 +28512,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 916 + "__id__": 915 }, "_enabled": true, "__prefab": null, @@ -28563,16 +28551,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 920 + "__id__": 919 }, { - "__id__": 921 + "__id__": 920 } ], "_prefab": null, @@ -28611,7 +28599,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 919 + "__id__": 918 }, "_enabled": true, "__prefab": null, @@ -28633,7 +28621,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 919 + "__id__": 918 }, "_enabled": true, "__prefab": null, @@ -28672,16 +28660,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 923 + "__id__": 922 }, { - "__id__": 924 + "__id__": 923 } ], "_prefab": null, @@ -28720,7 +28708,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 922 + "__id__": 921 }, "_enabled": true, "__prefab": null, @@ -28742,7 +28730,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 922 + "__id__": 921 }, "_enabled": true, "__prefab": null, @@ -28781,16 +28769,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 926 + "__id__": 925 }, { - "__id__": 927 + "__id__": 926 } ], "_prefab": null, @@ -28829,7 +28817,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 925 + "__id__": 924 }, "_enabled": true, "__prefab": null, @@ -28851,7 +28839,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 925 + "__id__": 924 }, "_enabled": true, "__prefab": null, @@ -28890,16 +28878,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 929 + "__id__": 928 }, { - "__id__": 930 + "__id__": 929 } ], "_prefab": null, @@ -28938,7 +28926,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 928 + "__id__": 927 }, "_enabled": true, "__prefab": null, @@ -28960,7 +28948,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 928 + "__id__": 927 }, "_enabled": true, "__prefab": null, @@ -28999,16 +28987,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 932 + "__id__": 931 }, { - "__id__": 933 + "__id__": 932 } ], "_prefab": null, @@ -29047,7 +29035,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 931 + "__id__": 930 }, "_enabled": true, "__prefab": null, @@ -29069,7 +29057,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 931 + "__id__": 930 }, "_enabled": true, "__prefab": null, @@ -29108,16 +29096,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 935 + "__id__": 934 }, { - "__id__": 936 + "__id__": 935 } ], "_prefab": null, @@ -29156,7 +29144,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 933 }, "_enabled": true, "__prefab": null, @@ -29178,7 +29166,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 933 }, "_enabled": true, "__prefab": null, @@ -29217,16 +29205,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 938 + "__id__": 937 }, { - "__id__": 939 + "__id__": 938 } ], "_prefab": null, @@ -29265,7 +29253,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 937 + "__id__": 936 }, "_enabled": true, "__prefab": null, @@ -29287,7 +29275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 937 + "__id__": 936 }, "_enabled": true, "__prefab": null, @@ -29326,16 +29314,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 941 + "__id__": 940 }, { - "__id__": 942 + "__id__": 941 } ], "_prefab": null, @@ -29374,7 +29362,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 940 + "__id__": 939 }, "_enabled": true, "__prefab": null, @@ -29396,7 +29384,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 940 + "__id__": 939 }, "_enabled": true, "__prefab": null, @@ -29435,16 +29423,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 944 + "__id__": 943 }, { - "__id__": 945 + "__id__": 944 } ], "_prefab": null, @@ -29483,7 +29471,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 942 }, "_enabled": true, "__prefab": null, @@ -29505,7 +29493,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 942 }, "_enabled": true, "__prefab": null, @@ -29544,16 +29532,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 947 + "__id__": 946 }, { - "__id__": 948 + "__id__": 947 } ], "_prefab": null, @@ -29592,7 +29580,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 946 + "__id__": 945 }, "_enabled": true, "__prefab": null, @@ -29614,7 +29602,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 946 + "__id__": 945 }, "_enabled": true, "__prefab": null, @@ -29653,16 +29641,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 950 + "__id__": 949 }, { - "__id__": 951 + "__id__": 950 } ], "_prefab": null, @@ -29701,7 +29689,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 948 }, "_enabled": true, "__prefab": null, @@ -29723,7 +29711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 948 }, "_enabled": true, "__prefab": null, @@ -29762,16 +29750,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 953 + "__id__": 952 }, { - "__id__": 954 + "__id__": 953 } ], "_prefab": null, @@ -29810,7 +29798,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 951 }, "_enabled": true, "__prefab": null, @@ -29832,7 +29820,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 951 }, "_enabled": true, "__prefab": null, @@ -29871,16 +29859,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 956 + "__id__": 955 }, { - "__id__": 957 + "__id__": 956 } ], "_prefab": null, @@ -29919,7 +29907,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 955 + "__id__": 954 }, "_enabled": true, "__prefab": null, @@ -29941,7 +29929,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 955 + "__id__": 954 }, "_enabled": true, "__prefab": null, @@ -29980,16 +29968,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 959 + "__id__": 958 }, { - "__id__": 960 + "__id__": 959 } ], "_prefab": null, @@ -30028,7 +30016,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 958 + "__id__": 957 }, "_enabled": true, "__prefab": null, @@ -30050,7 +30038,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 958 + "__id__": 957 }, "_enabled": true, "__prefab": null, @@ -30089,16 +30077,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 962 + "__id__": 961 }, { - "__id__": 963 + "__id__": 962 } ], "_prefab": null, @@ -30137,7 +30125,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 960 }, "_enabled": true, "__prefab": null, @@ -30159,7 +30147,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 961 + "__id__": 960 }, "_enabled": true, "__prefab": null, @@ -30198,16 +30186,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 965 + "__id__": 964 }, { - "__id__": 966 + "__id__": 965 } ], "_prefab": null, @@ -30246,7 +30234,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 964 + "__id__": 963 }, "_enabled": true, "__prefab": null, @@ -30268,7 +30256,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 964 + "__id__": 963 }, "_enabled": true, "__prefab": null, @@ -30307,16 +30295,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 968 + "__id__": 967 }, { - "__id__": 969 + "__id__": 968 } ], "_prefab": null, @@ -30355,7 +30343,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 967 + "__id__": 966 }, "_enabled": true, "__prefab": null, @@ -30377,7 +30365,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 967 + "__id__": 966 }, "_enabled": true, "__prefab": null, @@ -30416,16 +30404,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 971 + "__id__": 970 }, { - "__id__": 972 + "__id__": 971 } ], "_prefab": null, @@ -30464,7 +30452,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 969 }, "_enabled": true, "__prefab": null, @@ -30486,7 +30474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 969 }, "_enabled": true, "__prefab": null, @@ -30525,16 +30513,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 974 + "__id__": 973 }, { - "__id__": 975 + "__id__": 974 } ], "_prefab": null, @@ -30573,7 +30561,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 972 }, "_enabled": true, "__prefab": null, @@ -30595,7 +30583,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 973 + "__id__": 972 }, "_enabled": true, "__prefab": null, @@ -30634,16 +30622,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 977 + "__id__": 976 }, { - "__id__": 978 + "__id__": 977 } ], "_prefab": null, @@ -30682,7 +30670,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 976 + "__id__": 975 }, "_enabled": true, "__prefab": null, @@ -30704,7 +30692,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 976 + "__id__": 975 }, "_enabled": true, "__prefab": null, @@ -30743,16 +30731,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 980 + "__id__": 979 }, { - "__id__": 981 + "__id__": 980 } ], "_prefab": null, @@ -30791,7 +30779,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 979 + "__id__": 978 }, "_enabled": true, "__prefab": null, @@ -30813,7 +30801,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 979 + "__id__": 978 }, "_enabled": true, "__prefab": null, @@ -30852,16 +30840,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 983 + "__id__": 982 }, { - "__id__": 984 + "__id__": 983 } ], "_prefab": null, @@ -30900,7 +30888,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 982 + "__id__": 981 }, "_enabled": true, "__prefab": null, @@ -30922,7 +30910,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 982 + "__id__": 981 }, "_enabled": true, "__prefab": null, @@ -30961,16 +30949,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 789 + "__id__": 788 }, "_children": [], "_active": true, "_components": [ { - "__id__": 986 + "__id__": 985 }, { - "__id__": 987 + "__id__": 986 } ], "_prefab": null, @@ -31009,7 +30997,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 984 }, "_enabled": true, "__prefab": null, @@ -31031,7 +31019,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 984 }, "_enabled": true, "__prefab": null, @@ -31070,7 +31058,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, @@ -31092,221 +31080,221 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, "_objects": [ { - "__id__": 990 + "__id__": 989 }, { - "__id__": 991 + "__id__": 990 } ], "_boosters": [ { - "__id__": 992 + "__id__": 991 } ], "_spawnPoints": [ { - "__id__": 790 + "__id__": 789 }, { - "__id__": 793 + "__id__": 792 }, { - "__id__": 796 + "__id__": 795 }, { - "__id__": 799 + "__id__": 798 }, { - "__id__": 802 + "__id__": 801 }, { - "__id__": 805 + "__id__": 804 }, { - "__id__": 808 + "__id__": 807 }, { - "__id__": 811 + "__id__": 810 }, { - "__id__": 814 + "__id__": 813 }, { - "__id__": 817 + "__id__": 816 }, { - "__id__": 820 + "__id__": 819 }, { - "__id__": 823 + "__id__": 822 }, { - "__id__": 826 + "__id__": 825 }, { - "__id__": 829 + "__id__": 828 }, { - "__id__": 832 + "__id__": 831 }, { - "__id__": 835 + "__id__": 834 }, { - "__id__": 838 + "__id__": 837 }, { - "__id__": 841 + "__id__": 840 }, { - "__id__": 844 + "__id__": 843 }, { - "__id__": 847 + "__id__": 846 }, { - "__id__": 850 + "__id__": 849 }, { - "__id__": 853 + "__id__": 852 }, { - "__id__": 856 + "__id__": 855 }, { - "__id__": 859 + "__id__": 858 }, { - "__id__": 862 + "__id__": 861 }, { - "__id__": 865 + "__id__": 864 }, { - "__id__": 868 + "__id__": 867 }, { - "__id__": 871 + "__id__": 870 }, { - "__id__": 874 + "__id__": 873 }, { - "__id__": 877 + "__id__": 876 }, { - "__id__": 880 + "__id__": 879 }, { - "__id__": 883 + "__id__": 882 }, { - "__id__": 886 + "__id__": 885 }, { - "__id__": 889 + "__id__": 888 }, { - "__id__": 892 + "__id__": 891 }, { - "__id__": 895 + "__id__": 894 }, { - "__id__": 898 + "__id__": 897 }, { - "__id__": 901 + "__id__": 900 }, { - "__id__": 904 + "__id__": 903 }, { - "__id__": 907 + "__id__": 906 }, { - "__id__": 910 + "__id__": 909 }, { - "__id__": 913 + "__id__": 912 }, { - "__id__": 916 + "__id__": 915 }, { - "__id__": 919 + "__id__": 918 }, { - "__id__": 922 + "__id__": 921 }, { - "__id__": 925 + "__id__": 924 }, { - "__id__": 928 + "__id__": 927 }, { - "__id__": 931 + "__id__": 930 }, { - "__id__": 934 + "__id__": 933 }, { - "__id__": 937 + "__id__": 936 }, { - "__id__": 940 + "__id__": 939 }, { - "__id__": 943 + "__id__": 942 }, { - "__id__": 946 + "__id__": 945 }, { - "__id__": 949 + "__id__": 948 }, { - "__id__": 952 + "__id__": 951 }, { - "__id__": 955 + "__id__": 954 }, { - "__id__": 958 + "__id__": 957 }, { - "__id__": 961 + "__id__": 960 }, { - "__id__": 964 + "__id__": 963 }, { - "__id__": 967 + "__id__": 966 }, { - "__id__": 970 + "__id__": 969 }, { - "__id__": 973 + "__id__": 972 }, { - "__id__": 976 + "__id__": 975 }, { - "__id__": 979 + "__id__": 978 }, { - "__id__": 982 + "__id__": 981 }, { - "__id__": 985 + "__id__": 984 } ], "_spawnTime": 1.5, @@ -31359,10 +31347,10 @@ "_active": true, "_components": [ { - "__id__": 994 + "__id__": 993 }, { - "__id__": 995 + "__id__": 994 } ], "_prefab": null, @@ -31401,7 +31389,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -31423,7 +31411,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -31468,7 +31456,7 @@ "_active": true, "_components": [ { - "__id__": 997 + "__id__": 996 } ], "_prefab": null, @@ -31507,7 +31495,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 996 + "__id__": 995 }, "_enabled": true, "__prefab": null, @@ -31533,16 +31521,16 @@ }, "_children": [ { - "__id__": 999 + "__id__": 998 }, { - "__id__": 1134 + "__id__": 1133 } ], "_active": true, "_components": [ { - "__id__": 1269 + "__id__": 1268 } ], "_prefab": null, @@ -31581,26 +31569,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 998 + "__id__": 997 }, "_children": [ { - "__id__": 1000 + "__id__": 999 }, { - "__id__": 1005 + "__id__": 1004 } ], "_active": true, "_components": [ + { + "__id__": 1130 + }, { "__id__": 1131 }, { "__id__": 1132 - }, - { - "__id__": 1133 } ], "_prefab": null, @@ -31639,11 +31627,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 999 + "__id__": 998 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1000 + }, { "__id__": 1001 }, @@ -31652,9 +31643,6 @@ }, { "__id__": 1003 - }, - { - "__id__": 1004 } ], "_prefab": null, @@ -31693,7 +31681,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1000 + "__id__": 999 }, "_enabled": true, "__prefab": null, @@ -31715,7 +31703,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1000 + "__id__": 999 }, "_enabled": true, "__prefab": null, @@ -31754,7 +31742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1000 + "__id__": 999 }, "_enabled": true, "__prefab": null, @@ -31782,7 +31770,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1000 + "__id__": 999 }, "_enabled": true, "__prefab": null, @@ -31810,20 +31798,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 999 + "__id__": 998 }, "_children": [ { - "__id__": 1006 + "__id__": 1005 }, { - "__id__": 1065 + "__id__": 1064 } ], "_active": false, "_components": [ { - "__id__": 1130 + "__id__": 1129 } ], "_prefab": null, @@ -31862,19 +31850,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1005 + "__id__": 1004 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1007 + "__id__": 1006 + }, + { + "__id__": 1062 }, { "__id__": 1063 - }, - { - "__id__": 1064 } ], "_prefab": null, @@ -31913,7 +31901,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1006 + "__id__": 1005 }, "_enabled": true, "__prefab": null, @@ -31926,60 +31914,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1008 + "__id__": 1007 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1009 + "__id__": 1008 }, "startSize": { - "__id__": 1009 + "__id__": 1008 }, "startSizeY": { - "__id__": 1010 + "__id__": 1009 }, "startSizeZ": { - "__id__": 1011 + "__id__": 1010 }, "startSpeed": { - "__id__": 1012 + "__id__": 1011 }, "startRotation3D": false, "startRotationX": { - "__id__": 1013 + "__id__": 1012 }, "startRotationY": { - "__id__": 1014 + "__id__": 1013 }, "startRotationZ": { - "__id__": 1015 + "__id__": 1014 }, "startRotation": { - "__id__": 1015 + "__id__": 1014 }, "startDelay": { - "__id__": 1016 + "__id__": 1015 }, "startLifetime": { - "__id__": 1017 + "__id__": 1016 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1018 + "__id__": 1017 }, "rateOverTime": { - "__id__": 1019 + "__id__": 1018 }, "rateOverDistance": { - "__id__": 1020 + "__id__": 1019 }, "bursts": [ { - "__id__": 1021 + "__id__": 1020 } ], "_renderCulling": false, @@ -31990,37 +31978,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1023 + "__id__": 1022 }, "_shapeModule": { - "__id__": 1025 + "__id__": 1024 }, "_sizeOvertimeModule": { - "__id__": 1027 + "__id__": 1026 }, "_velocityOvertimeModule": { - "__id__": 1033 + "__id__": 1032 }, "_forceOvertimeModule": { - "__id__": 1039 + "__id__": 1038 }, "_limitVelocityOvertimeModule": { - "__id__": 1043 + "__id__": 1042 }, "_rotationOvertimeModule": { - "__id__": 1048 + "__id__": 1047 }, "_textureAnimationModule": { - "__id__": 1052 + "__id__": 1051 }, "_noiseModule": { - "__id__": 1056 + "__id__": 1055 }, "_trailModule": { - "__id__": 1057 + "__id__": 1056 }, "renderer": { - "__id__": 1062 + "__id__": 1061 }, "_prewarm": false, "_capacity": 8, @@ -32120,7 +32108,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1022 + "__id__": 1021 } }, { @@ -32133,7 +32121,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1024 + "__id__": 1023 } }, { @@ -32162,7 +32150,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1026 + "__id__": 1025 }, "length": 5, "boxThickness": { @@ -32203,23 +32191,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1028 + "__id__": 1027 }, "x": { - "__id__": 1030 + "__id__": 1029 }, "y": { - "__id__": 1031 + "__id__": 1030 }, "z": { - "__id__": 1032 + "__id__": 1031 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1029 + "__id__": 1028 }, "multiplier": 1 }, @@ -32280,16 +32268,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1034 + "__id__": 1033 }, "y": { - "__id__": 1035 + "__id__": 1034 }, "z": { - "__id__": 1037 + "__id__": 1036 }, "speedModifier": { - "__id__": 1038 + "__id__": 1037 }, "space": 1 }, @@ -32303,7 +32291,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1036 + "__id__": 1035 }, "multiplier": 1 }, @@ -32358,13 +32346,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1040 + "__id__": 1039 }, "y": { - "__id__": 1041 + "__id__": 1040 }, "z": { - "__id__": 1042 + "__id__": 1041 }, "space": 1 }, @@ -32390,16 +32378,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1044 + "__id__": 1043 }, "limitY": { - "__id__": 1045 + "__id__": 1044 }, "limitZ": { - "__id__": 1046 + "__id__": 1045 }, "limit": { - "__id__": 1047 + "__id__": 1046 }, "dampen": 3, "separateAxes": false, @@ -32434,13 +32422,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1049 + "__id__": 1048 }, "y": { - "__id__": 1050 + "__id__": 1049 }, "z": { - "__id__": 1051 + "__id__": 1050 } }, { @@ -32474,10 +32462,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1053 + "__id__": 1052 }, "startFrame": { - "__id__": 1055 + "__id__": 1054 }, "cycleCount": 0, "_flipU": 0, @@ -32490,7 +32478,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1054 + "__id__": 1053 }, "multiplier": 1 }, @@ -32557,25 +32545,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1058 + "__id__": 1057 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1059 + "__id__": 1058 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1060 + "__id__": 1059 }, "colorOvertime": { - "__id__": 1061 + "__id__": 1060 }, "_space": 0, "_particleSystem": { - "__id__": 1007 + "__id__": 1006 } }, { @@ -32636,7 +32624,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1006 + "__id__": 1005 }, "_enabled": true, "__prefab": null, @@ -32648,7 +32636,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1006 + "__id__": 1005 }, "_enabled": true, "__prefab": null, @@ -32670,19 +32658,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1005 + "__id__": 1004 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1066 + "__id__": 1065 + }, + { + "__id__": 1127 }, { "__id__": 1128 - }, - { - "__id__": 1129 } ], "_prefab": null, @@ -32721,7 +32709,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1065 + "__id__": 1064 }, "_enabled": true, "__prefab": null, @@ -32734,60 +32722,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1067 + "__id__": 1066 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1068 + "__id__": 1067 }, "startSize": { - "__id__": 1068 + "__id__": 1067 }, "startSizeY": { - "__id__": 1069 + "__id__": 1068 }, "startSizeZ": { - "__id__": 1070 + "__id__": 1069 }, "startSpeed": { - "__id__": 1071 + "__id__": 1070 }, "startRotation3D": false, "startRotationX": { - "__id__": 1072 + "__id__": 1071 }, "startRotationY": { - "__id__": 1073 + "__id__": 1072 }, "startRotationZ": { - "__id__": 1074 + "__id__": 1073 }, "startRotation": { - "__id__": 1074 + "__id__": 1073 }, "startDelay": { - "__id__": 1075 + "__id__": 1074 }, "startLifetime": { - "__id__": 1076 + "__id__": 1075 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1077 + "__id__": 1076 }, "rateOverTime": { - "__id__": 1078 + "__id__": 1077 }, "rateOverDistance": { - "__id__": 1079 + "__id__": 1078 }, "bursts": [ { - "__id__": 1080 + "__id__": 1079 } ], "_renderCulling": false, @@ -32798,37 +32786,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1082 + "__id__": 1081 }, "_shapeModule": { - "__id__": 1091 + "__id__": 1090 }, "_sizeOvertimeModule": { - "__id__": 1093 + "__id__": 1092 }, "_velocityOvertimeModule": { - "__id__": 1099 + "__id__": 1098 }, "_forceOvertimeModule": { - "__id__": 1104 + "__id__": 1103 }, "_limitVelocityOvertimeModule": { - "__id__": 1108 + "__id__": 1107 }, "_rotationOvertimeModule": { - "__id__": 1113 + "__id__": 1112 }, "_textureAnimationModule": { - "__id__": 1117 + "__id__": 1116 }, "_noiseModule": { - "__id__": 1121 + "__id__": 1120 }, "_trailModule": { - "__id__": 1122 + "__id__": 1121 }, "renderer": { - "__id__": 1127 + "__id__": 1126 }, "_prewarm": false, "_capacity": 100, @@ -32926,7 +32914,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1081 + "__id__": 1080 } }, { @@ -32939,38 +32927,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1083 + "__id__": 1082 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1084 + "__id__": 1083 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1084 + }, { "__id__": 1085 }, { "__id__": 1086 - }, - { - "__id__": 1087 } ], "alphaKeys": [ + { + "__id__": 1087 + }, { "__id__": 1088 }, { "__id__": 1089 - }, - { - "__id__": 1090 } ], "mode": 0 @@ -33038,7 +33026,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1092 + "__id__": 1091 }, "length": 5, "boxThickness": { @@ -33079,23 +33067,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1094 + "__id__": 1093 }, "x": { - "__id__": 1096 + "__id__": 1095 }, "y": { - "__id__": 1097 + "__id__": 1096 }, "z": { - "__id__": 1098 + "__id__": 1097 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1095 + "__id__": 1094 }, "multiplier": 1 }, @@ -33156,16 +33144,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1100 + "__id__": 1099 }, "y": { - "__id__": 1101 + "__id__": 1100 }, "z": { - "__id__": 1102 + "__id__": 1101 }, "speedModifier": { - "__id__": 1103 + "__id__": 1102 }, "space": 1 }, @@ -33197,13 +33185,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1105 + "__id__": 1104 }, "y": { - "__id__": 1106 + "__id__": 1105 }, "z": { - "__id__": 1107 + "__id__": 1106 }, "space": 1 }, @@ -33229,16 +33217,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1109 + "__id__": 1108 }, "limitY": { - "__id__": 1110 + "__id__": 1109 }, "limitZ": { - "__id__": 1111 + "__id__": 1110 }, "limit": { - "__id__": 1112 + "__id__": 1111 }, "dampen": 0.05, "separateAxes": false, @@ -33273,13 +33261,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1114 + "__id__": 1113 }, "y": { - "__id__": 1115 + "__id__": 1114 }, "z": { - "__id__": 1116 + "__id__": 1115 } }, { @@ -33311,10 +33299,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1118 + "__id__": 1117 }, "startFrame": { - "__id__": 1120 + "__id__": 1119 }, "cycleCount": 1, "_flipU": 0, @@ -33327,7 +33315,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1119 + "__id__": 1118 }, "multiplier": 1 }, @@ -33395,25 +33383,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1123 + "__id__": 1122 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1124 + "__id__": 1123 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1125 + "__id__": 1124 }, "colorOvertime": { - "__id__": 1126 + "__id__": 1125 }, "_space": 0, "_particleSystem": { - "__id__": 1066 + "__id__": 1065 } }, { @@ -33474,7 +33462,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1065 + "__id__": 1064 }, "_enabled": true, "__prefab": null, @@ -33486,7 +33474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1065 + "__id__": 1064 }, "_enabled": true, "__prefab": null, @@ -33508,7 +33496,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1005 + "__id__": 1004 }, "_enabled": true, "__prefab": null, @@ -33530,7 +33518,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -33552,15 +33540,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1003 + "__id__": 1002 }, "_animation": { - "__id__": 1133 + "__id__": 1132 }, "_force": 40, "_soundFx": { @@ -33576,7 +33564,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -33599,26 +33587,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 998 + "__id__": 997 }, "_children": [ { - "__id__": 1135 + "__id__": 1134 }, { - "__id__": 1140 + "__id__": 1139 } ], "_active": true, "_components": [ + { + "__id__": 1265 + }, { "__id__": 1266 }, { "__id__": 1267 - }, - { - "__id__": 1268 } ], "_prefab": null, @@ -33657,11 +33645,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1134 + "__id__": 1133 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1135 + }, { "__id__": 1136 }, @@ -33670,9 +33661,6 @@ }, { "__id__": 1138 - }, - { - "__id__": 1139 } ], "_prefab": null, @@ -33711,7 +33699,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1135 + "__id__": 1134 }, "_enabled": true, "__prefab": null, @@ -33733,7 +33721,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1135 + "__id__": 1134 }, "_enabled": true, "__prefab": null, @@ -33772,7 +33760,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1135 + "__id__": 1134 }, "_enabled": true, "__prefab": null, @@ -33800,7 +33788,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1135 + "__id__": 1134 }, "_enabled": true, "__prefab": null, @@ -33828,20 +33816,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1134 + "__id__": 1133 }, "_children": [ { - "__id__": 1141 + "__id__": 1140 }, { - "__id__": 1200 + "__id__": 1199 } ], "_active": false, "_components": [ { - "__id__": 1265 + "__id__": 1264 } ], "_prefab": null, @@ -33880,19 +33868,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1140 + "__id__": 1139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1142 + "__id__": 1141 + }, + { + "__id__": 1197 }, { "__id__": 1198 - }, - { - "__id__": 1199 } ], "_prefab": null, @@ -33931,7 +33919,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1141 + "__id__": 1140 }, "_enabled": true, "__prefab": null, @@ -33944,60 +33932,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1143 + "__id__": 1142 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1144 + "__id__": 1143 }, "startSize": { - "__id__": 1144 + "__id__": 1143 }, "startSizeY": { - "__id__": 1145 + "__id__": 1144 }, "startSizeZ": { - "__id__": 1146 + "__id__": 1145 }, "startSpeed": { - "__id__": 1147 + "__id__": 1146 }, "startRotation3D": false, "startRotationX": { - "__id__": 1148 + "__id__": 1147 }, "startRotationY": { - "__id__": 1149 + "__id__": 1148 }, "startRotationZ": { - "__id__": 1150 + "__id__": 1149 }, "startRotation": { - "__id__": 1150 + "__id__": 1149 }, "startDelay": { - "__id__": 1151 + "__id__": 1150 }, "startLifetime": { - "__id__": 1152 + "__id__": 1151 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1153 + "__id__": 1152 }, "rateOverTime": { - "__id__": 1154 + "__id__": 1153 }, "rateOverDistance": { - "__id__": 1155 + "__id__": 1154 }, "bursts": [ { - "__id__": 1156 + "__id__": 1155 } ], "_renderCulling": false, @@ -34008,37 +33996,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1158 + "__id__": 1157 }, "_shapeModule": { - "__id__": 1160 + "__id__": 1159 }, "_sizeOvertimeModule": { - "__id__": 1162 + "__id__": 1161 }, "_velocityOvertimeModule": { - "__id__": 1168 + "__id__": 1167 }, "_forceOvertimeModule": { - "__id__": 1174 + "__id__": 1173 }, "_limitVelocityOvertimeModule": { - "__id__": 1178 + "__id__": 1177 }, "_rotationOvertimeModule": { - "__id__": 1183 + "__id__": 1182 }, "_textureAnimationModule": { - "__id__": 1187 + "__id__": 1186 }, "_noiseModule": { - "__id__": 1191 + "__id__": 1190 }, "_trailModule": { - "__id__": 1192 + "__id__": 1191 }, "renderer": { - "__id__": 1197 + "__id__": 1196 }, "_prewarm": false, "_capacity": 8, @@ -34138,7 +34126,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1157 + "__id__": 1156 } }, { @@ -34151,7 +34139,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1159 + "__id__": 1158 } }, { @@ -34180,7 +34168,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1161 + "__id__": 1160 }, "length": 5, "boxThickness": { @@ -34221,23 +34209,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1163 + "__id__": 1162 }, "x": { - "__id__": 1165 + "__id__": 1164 }, "y": { - "__id__": 1166 + "__id__": 1165 }, "z": { - "__id__": 1167 + "__id__": 1166 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1164 + "__id__": 1163 }, "multiplier": 1 }, @@ -34298,16 +34286,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1169 + "__id__": 1168 }, "y": { - "__id__": 1170 + "__id__": 1169 }, "z": { - "__id__": 1172 + "__id__": 1171 }, "speedModifier": { - "__id__": 1173 + "__id__": 1172 }, "space": 1 }, @@ -34321,7 +34309,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1171 + "__id__": 1170 }, "multiplier": 1 }, @@ -34376,13 +34364,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1175 + "__id__": 1174 }, "y": { - "__id__": 1176 + "__id__": 1175 }, "z": { - "__id__": 1177 + "__id__": 1176 }, "space": 1 }, @@ -34408,16 +34396,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1179 + "__id__": 1178 }, "limitY": { - "__id__": 1180 + "__id__": 1179 }, "limitZ": { - "__id__": 1181 + "__id__": 1180 }, "limit": { - "__id__": 1182 + "__id__": 1181 }, "dampen": 3, "separateAxes": false, @@ -34452,13 +34440,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1184 + "__id__": 1183 }, "y": { - "__id__": 1185 + "__id__": 1184 }, "z": { - "__id__": 1186 + "__id__": 1185 } }, { @@ -34492,10 +34480,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1188 + "__id__": 1187 }, "startFrame": { - "__id__": 1190 + "__id__": 1189 }, "cycleCount": 0, "_flipU": 0, @@ -34508,7 +34496,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1189 + "__id__": 1188 }, "multiplier": 1 }, @@ -34575,25 +34563,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1193 + "__id__": 1192 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1194 + "__id__": 1193 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1195 + "__id__": 1194 }, "colorOvertime": { - "__id__": 1196 + "__id__": 1195 }, "_space": 0, "_particleSystem": { - "__id__": 1142 + "__id__": 1141 } }, { @@ -34654,7 +34642,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1141 + "__id__": 1140 }, "_enabled": true, "__prefab": null, @@ -34666,7 +34654,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1141 + "__id__": 1140 }, "_enabled": true, "__prefab": null, @@ -34688,19 +34676,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1140 + "__id__": 1139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1201 + "__id__": 1200 + }, + { + "__id__": 1262 }, { "__id__": 1263 - }, - { - "__id__": 1264 } ], "_prefab": null, @@ -34739,7 +34727,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1200 + "__id__": 1199 }, "_enabled": true, "__prefab": null, @@ -34752,60 +34740,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1202 + "__id__": 1201 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1203 + "__id__": 1202 }, "startSize": { - "__id__": 1203 + "__id__": 1202 }, "startSizeY": { - "__id__": 1204 + "__id__": 1203 }, "startSizeZ": { - "__id__": 1205 + "__id__": 1204 }, "startSpeed": { - "__id__": 1206 + "__id__": 1205 }, "startRotation3D": false, "startRotationX": { - "__id__": 1207 + "__id__": 1206 }, "startRotationY": { - "__id__": 1208 + "__id__": 1207 }, "startRotationZ": { - "__id__": 1209 + "__id__": 1208 }, "startRotation": { - "__id__": 1209 + "__id__": 1208 }, "startDelay": { - "__id__": 1210 + "__id__": 1209 }, "startLifetime": { - "__id__": 1211 + "__id__": 1210 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1212 + "__id__": 1211 }, "rateOverTime": { - "__id__": 1213 + "__id__": 1212 }, "rateOverDistance": { - "__id__": 1214 + "__id__": 1213 }, "bursts": [ { - "__id__": 1215 + "__id__": 1214 } ], "_renderCulling": false, @@ -34816,37 +34804,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1217 + "__id__": 1216 }, "_shapeModule": { - "__id__": 1226 + "__id__": 1225 }, "_sizeOvertimeModule": { - "__id__": 1228 + "__id__": 1227 }, "_velocityOvertimeModule": { - "__id__": 1234 + "__id__": 1233 }, "_forceOvertimeModule": { - "__id__": 1239 + "__id__": 1238 }, "_limitVelocityOvertimeModule": { - "__id__": 1243 + "__id__": 1242 }, "_rotationOvertimeModule": { - "__id__": 1248 + "__id__": 1247 }, "_textureAnimationModule": { - "__id__": 1252 + "__id__": 1251 }, "_noiseModule": { - "__id__": 1256 + "__id__": 1255 }, "_trailModule": { - "__id__": 1257 + "__id__": 1256 }, "renderer": { - "__id__": 1262 + "__id__": 1261 }, "_prewarm": false, "_capacity": 100, @@ -34944,7 +34932,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1216 + "__id__": 1215 } }, { @@ -34957,38 +34945,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1218 + "__id__": 1217 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1219 + "__id__": 1218 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1219 + }, { "__id__": 1220 }, { "__id__": 1221 - }, - { - "__id__": 1222 } ], "alphaKeys": [ + { + "__id__": 1222 + }, { "__id__": 1223 }, { "__id__": 1224 - }, - { - "__id__": 1225 } ], "mode": 0 @@ -35056,7 +35044,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1227 + "__id__": 1226 }, "length": 5, "boxThickness": { @@ -35097,23 +35085,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1229 + "__id__": 1228 }, "x": { - "__id__": 1231 + "__id__": 1230 }, "y": { - "__id__": 1232 + "__id__": 1231 }, "z": { - "__id__": 1233 + "__id__": 1232 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1230 + "__id__": 1229 }, "multiplier": 1 }, @@ -35174,16 +35162,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1235 + "__id__": 1234 }, "y": { - "__id__": 1236 + "__id__": 1235 }, "z": { - "__id__": 1237 + "__id__": 1236 }, "speedModifier": { - "__id__": 1238 + "__id__": 1237 }, "space": 1 }, @@ -35215,13 +35203,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1240 + "__id__": 1239 }, "y": { - "__id__": 1241 + "__id__": 1240 }, "z": { - "__id__": 1242 + "__id__": 1241 }, "space": 1 }, @@ -35247,16 +35235,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1244 + "__id__": 1243 }, "limitY": { - "__id__": 1245 + "__id__": 1244 }, "limitZ": { - "__id__": 1246 + "__id__": 1245 }, "limit": { - "__id__": 1247 + "__id__": 1246 }, "dampen": 0.05, "separateAxes": false, @@ -35291,13 +35279,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1249 + "__id__": 1248 }, "y": { - "__id__": 1250 + "__id__": 1249 }, "z": { - "__id__": 1251 + "__id__": 1250 } }, { @@ -35329,10 +35317,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1253 + "__id__": 1252 }, "startFrame": { - "__id__": 1255 + "__id__": 1254 }, "cycleCount": 1, "_flipU": 0, @@ -35345,7 +35333,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1254 + "__id__": 1253 }, "multiplier": 1 }, @@ -35413,25 +35401,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1258 + "__id__": 1257 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1259 + "__id__": 1258 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1260 + "__id__": 1259 }, "colorOvertime": { - "__id__": 1261 + "__id__": 1260 }, "_space": 0, "_particleSystem": { - "__id__": 1201 + "__id__": 1200 } }, { @@ -35492,7 +35480,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1200 + "__id__": 1199 }, "_enabled": true, "__prefab": null, @@ -35504,7 +35492,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1200 + "__id__": 1199 }, "_enabled": true, "__prefab": null, @@ -35526,7 +35514,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1140 + "__id__": 1139 }, "_enabled": true, "__prefab": null, @@ -35548,7 +35536,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -35570,15 +35558,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1138 + "__id__": 1137 }, "_animation": { - "__id__": 1268 + "__id__": 1267 }, "_force": 40, "_soundFx": { @@ -35594,7 +35582,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -35617,7 +35605,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 998 + "__id__": 997 }, "_enabled": true, "__prefab": null, @@ -35643,19 +35631,19 @@ }, "_children": [ { - "__id__": 1271 + "__id__": 1270 }, { - "__id__": 1274 + "__id__": 1273 } ], "_active": true, "_components": [ { - "__id__": 1279 + "__id__": 1277 }, { - "__id__": 1280 + "__id__": 1278 } ], "_prefab": null, @@ -35694,16 +35682,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1270 + "__id__": 1269 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1272 + "__id__": 1271 }, { - "__id__": 1273 + "__id__": 1272 } ], "_prefab": null, @@ -35742,7 +35730,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1271 + "__id__": 1270 }, "_enabled": true, "__prefab": null, @@ -35764,7 +35752,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1271 + "__id__": 1270 }, "_enabled": true, "__prefab": null, @@ -35800,22 +35788,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1270 + "__id__": 1269 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1274 + }, { "__id__": 1275 }, { "__id__": 1276 - }, - { - "__id__": 1277 - }, - { - "__id__": 1278 } ], "_prefab": null, @@ -35854,7 +35839,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1274 + "__id__": 1273 }, "_enabled": true, "__prefab": null, @@ -35876,7 +35861,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1274 + "__id__": 1273 }, "_enabled": true, "__prefab": null, @@ -35941,7 +35926,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1274 + "__id__": 1273 }, "_enabled": true, "__prefab": null, @@ -35965,25 +35950,13 @@ "_lockFlags": 0, "_id": "31Fx2973dAt4puJYDiv8Pp" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1274 - }, - "_enabled": true, - "__prefab": null, - "_id": "48xN1y1cZE2q+KWSB/x1mb" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1269 }, "_enabled": true, "__prefab": null, @@ -36005,22 +35978,22 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1269 }, "_enabled": true, "__prefab": null, "_popup": { - "__id__": 1271 + "__id__": 1270 }, "_label": { - "__id__": 1276 + "__id__": 1275 }, "_stickers": [ { - "__id__": 1281 + "__id__": 1279 }, { - "__id__": 1282 + "__id__": 1280 } ], "_id": "ebx5eaCQhFnYEdDdBHEy9W" @@ -36073,7 +36046,7 @@ }, "_enabled": true, "__prefab": null, - "_colliderDebug": false, + "_colliderDebug": true, "_ballPrefab": { "__uuid__": "9b471c78-2e1d-4db8-ab08-b3df7c938d64", "__expectedType__": "cc.Prefab" @@ -36083,10 +36056,10 @@ "__expectedType__": "cc.Prefab" }, "_topContainer": { - "__id__": 1285 + "__id__": 1283 }, "_ballHolder": { - "__id__": 996 + "__id__": 995 }, "_ballSpawnPosition": { "__type__": "cc.Vec3", @@ -36133,7 +36106,7 @@ "_active": true, "_components": [ { - "__id__": 1286 + "__id__": 1284 } ], "_prefab": null, @@ -36172,7 +36145,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1285 + "__id__": 1283 }, "_enabled": true, "__prefab": null, @@ -36256,6 +36229,67 @@ "_lockFlags": 0, "_id": "c5V1EV8IpMtrIvY1OE9t2u" }, + { + "__type__": "cc.Node", + "_name": "DynamicSpriteManager", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 1289 + } + ], + "_prefab": null, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "6eV5d5gEhCDK07B8AMhhT3" + }, + { + "__type__": "0276bwITM9AF7FAz3oRVNTX", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1288 + }, + "_enabled": true, + "__prefab": null, + "jsonConfig": { + "__uuid__": "d3d19129-bf34-488d-9d39-737eced907ae", + "__expectedType__": "cc.JsonAsset" + }, + "_id": "bbRzA428dJlYlzjSjK9Mar" + }, { "__type__": "cc.PrefabInfo", "root": null, @@ -36325,7 +36359,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 572 + "__id__": 571 }, "sourceInfo": null, "propertyPath": [ @@ -36378,7 +36412,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 535 + "__id__": 534 }, "sourceInfo": null, "propertyPath": [ diff --git a/assets/_Game/Scenes/Farm-theme.scene b/assets/_Game/Scenes/Farm-theme.scene index 0c683cc..fd0f079 100644 --- a/assets/_Game/Scenes/Farm-theme.scene +++ b/assets/_Game/Scenes/Farm-theme.scene @@ -26,7 +26,7 @@ "_active": true, "_components": [], "_prefab": { - "__id__": 1289 + "__id__": 1287 }, "_lpos": { "__type__": "cc.Vec3", @@ -57,7 +57,7 @@ }, "autoReleaseAssets": false, "_globals": { - "__id__": 1306 + "__id__": 1304 }, "_id": "07421189-8ae9-4f94-a7dd-707b0dae75df" }, @@ -80,19 +80,19 @@ "__id__": 9 }, { - "__id__": 1284 + "__id__": 1282 } ], "_active": true, "_components": [ + { + "__id__": 1284 + }, + { + "__id__": 1285 + }, { "__id__": 1286 - }, - { - "__id__": 1287 - }, - { - "__id__": 1288 } ], "_prefab": null, @@ -376,37 +376,37 @@ "__id__": 131 }, { - "__id__": 646 + "__id__": 645 }, { - "__id__": 721 + "__id__": 720 }, { - "__id__": 783 + "__id__": 782 }, { - "__id__": 788 + "__id__": 787 }, { - "__id__": 992 + "__id__": 991 }, { - "__id__": 995 + "__id__": 994 }, { - "__id__": 997 + "__id__": 996 }, { - "__id__": 1269 + "__id__": 1268 } ], "_active": true, "_components": [ { - "__id__": 1282 + "__id__": 1280 }, { - "__id__": 1283 + "__id__": 1281 } ], "_prefab": null, @@ -5316,13 +5316,13 @@ "__id__": 135 }, { - "__id__": 564 + "__id__": 563 }, { - "__id__": 636 + "__id__": 635 }, { - "__id__": 641 + "__id__": 640 } ], "_active": true, @@ -5494,7 +5494,7 @@ "__id__": 146 }, { - "__id__": 558 + "__id__": 557 } ], "_prefab": null, @@ -5911,7 +5911,7 @@ "_minAngle": 10, "_maxAngle": 170, "_soundFx": { - "__id__": 558 + "__id__": 557 }, "_goalSound": { "__uuid__": "4ce9d2c6-98c5-4d05-94af-70193bb795fe", @@ -5926,6 +5926,9 @@ "__expectedType__": "cc.AudioClip" }, "_rewards": [ + { + "__id__": 558 + }, { "__id__": 559 }, @@ -5937,9 +5940,6 @@ }, { "__id__": 562 - }, - { - "__id__": 563 } ], "_id": "e5qVdeXFZOu6/MatkdDEG6" @@ -5956,10 +5956,10 @@ "_active": true, "_components": [ { - "__id__": 556 + "__id__": 555 }, { - "__id__": 557 + "__id__": 556 } ], "_prefab": null, @@ -6005,11 +6005,14 @@ "__id__": 147 }, { - "__id__": 491 + "__id__": 490 } ], "_active": true, "_components": [ + { + "__id__": 551 + }, { "__id__": 552 }, @@ -6018,9 +6021,6 @@ }, { "__id__": 554 - }, - { - "__id__": 555 } ], "_prefab": null, @@ -6063,10 +6063,10 @@ }, "_children": [ { - "__id__": 541 + "__id__": 540 }, { - "__id__": 545 + "__id__": 544 }, { "__id__": 148 @@ -6074,14 +6074,14 @@ ], "_active": true, "_components": [ + { + "__id__": 548 + }, { "__id__": 549 }, { "__id__": 550 - }, - { - "__id__": 551 } ], "_prefab": null, @@ -6127,22 +6127,22 @@ "__id__": 149 }, { - "__id__": 504 + "__id__": 503 }, { - "__id__": 495 + "__id__": 494 }, { - "__id__": 526 + "__id__": 525 } ], "_active": true, "_components": [ { - "__id__": 539 + "__id__": 538 }, { - "__id__": 540 + "__id__": 539 } ], "_prefab": null, @@ -6191,19 +6191,19 @@ "__id__": 150 }, { - "__id__": 457 + "__id__": 456 } ], "_active": true, "_components": [ + { + "__id__": 486 + }, { "__id__": 487 }, { "__id__": 488 - }, - { - "__id__": 489 } ], "_prefab": null, @@ -9581,14 +9581,14 @@ ], "_active": false, "_components": [ + { + "__id__": 449 + }, { "__id__": 450 }, { "__id__": 451 - }, - { - "__id__": 452 } ], "_prefab": null, @@ -9746,19 +9746,19 @@ "__id__": 384 }, { - "__id__": 428 + "__id__": 427 }, { - "__id__": 440 + "__id__": 439 } ], "_active": true, "_components": [ { - "__id__": 448 + "__id__": 447 }, { - "__id__": 449 + "__id__": 448 } ], "_prefab": null, @@ -9974,6 +9974,9 @@ ], "_active": true, "_components": [ + { + "__id__": 423 + }, { "__id__": 424 }, @@ -9982,9 +9985,6 @@ }, { "__id__": 426 - }, - { - "__id__": 427 } ], "_prefab": null, @@ -10032,6 +10032,9 @@ ], "_active": true, "_components": [ + { + "__id__": 419 + }, { "__id__": 420 }, @@ -10040,9 +10043,6 @@ }, { "__id__": 422 - }, - { - "__id__": 423 } ], "_prefab": null, @@ -10094,10 +10094,10 @@ "_active": true, "_components": [ { - "__id__": 418 + "__id__": 417 }, { - "__id__": 419 + "__id__": 418 } ], "_prefab": null, @@ -10253,22 +10253,22 @@ "__id__": 396 }, { - "__id__": 407 + "__id__": 406 }, { - "__id__": 411 + "__id__": 410 } ], "_active": true, "_components": [ + { + "__id__": 414 + }, { "__id__": 415 }, { "__id__": 416 - }, - { - "__id__": 417 } ], "_prefab": null, @@ -10320,10 +10320,10 @@ "_active": false, "_components": [ { - "__id__": 405 + "__id__": 404 }, { - "__id__": 406 + "__id__": 405 } ], "_prefab": null, @@ -10484,9 +10484,6 @@ }, { "__id__": 403 - }, - { - "__id__": 404 } ], "_prefab": null, @@ -10636,18 +10633,6 @@ "_lockFlags": 0, "_id": "9d1dXZleNEYo0PraCOGsU1" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": null, - "_id": "3aIIwlJ+BJmp6k0VBid2/K" - }, { "__type__": "cc.UITransform", "_name": "", @@ -10711,14 +10696,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 407 + }, { "__id__": 408 }, { "__id__": 409 - }, - { - "__id__": 410 } ], "_prefab": null, @@ -10757,7 +10742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 407 + "__id__": 406 }, "_enabled": true, "__prefab": null, @@ -10779,7 +10764,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 407 + "__id__": 406 }, "_enabled": true, "__prefab": null, @@ -10844,7 +10829,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 407 + "__id__": 406 }, "_enabled": true, "__prefab": null, @@ -10879,14 +10864,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 411 + }, { "__id__": 412 }, { "__id__": 413 - }, - { - "__id__": 414 } ], "_prefab": null, @@ -10925,7 +10910,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 410 }, "_enabled": true, "__prefab": null, @@ -10947,7 +10932,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 410 }, "_enabled": true, "__prefab": null, @@ -11012,7 +10997,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 410 }, "_enabled": true, "__prefab": null, @@ -11108,10 +11093,10 @@ "_enabled": true, "__prefab": null, "_bg": { - "__id__": 416 + "__id__": 415 }, "_scoreText": { - "__id__": 413 + "__id__": 412 }, "_topText": { "__id__": 402 @@ -11413,14 +11398,17 @@ }, "_children": [ { - "__id__": 429 + "__id__": 428 }, { - "__id__": 432 + "__id__": 431 } ], "_active": true, "_components": [ + { + "__id__": 434 + }, { "__id__": 435 }, @@ -11428,10 +11416,7 @@ "__id__": 436 }, { - "__id__": 437 - }, - { - "__id__": 439 + "__id__": 438 } ], "_prefab": null, @@ -11470,16 +11455,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 428 + "__id__": 427 }, "_children": [], "_active": true, "_components": [ { - "__id__": 430 + "__id__": 429 }, { - "__id__": 431 + "__id__": 430 } ], "_prefab": null, @@ -11518,7 +11503,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 429 + "__id__": 428 }, "_enabled": true, "__prefab": null, @@ -11540,7 +11525,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 429 + "__id__": 428 }, "_enabled": true, "__prefab": null, @@ -11605,16 +11590,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 428 + "__id__": 427 }, "_children": [], "_active": true, "_components": [ { - "__id__": 433 + "__id__": 432 }, { - "__id__": 434 + "__id__": 433 } ], "_prefab": null, @@ -11653,7 +11638,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 432 + "__id__": 431 }, "_enabled": true, "__prefab": null, @@ -11675,7 +11660,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 432 + "__id__": 431 }, "_enabled": true, "__prefab": null, @@ -11714,7 +11699,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, @@ -11736,7 +11721,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, @@ -11775,13 +11760,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 438 + "__id__": 437 } ], "_interactable": true, @@ -11824,7 +11809,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 428 + "__id__": 427 }, "_id": "83tN1zwmxCxI7aJ2ug7LTQ" }, @@ -11844,7 +11829,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, @@ -11878,19 +11863,19 @@ }, "_children": [ { - "__id__": 441 + "__id__": 440 } ], "_active": true, "_components": [ + { + "__id__": 443 + }, { "__id__": 444 }, { - "__id__": 445 - }, - { - "__id__": 447 + "__id__": 446 } ], "_prefab": null, @@ -11929,16 +11914,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 440 + "__id__": 439 }, "_children": [], "_active": true, "_components": [ { - "__id__": 442 + "__id__": 441 }, { - "__id__": 443 + "__id__": 442 } ], "_prefab": null, @@ -11977,7 +11962,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 441 + "__id__": 440 }, "_enabled": true, "__prefab": null, @@ -11999,7 +11984,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 441 + "__id__": 440 }, "_enabled": true, "__prefab": null, @@ -12064,7 +12049,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 439 }, "_enabled": true, "__prefab": null, @@ -12086,13 +12071,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 439 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 446 + "__id__": 445 } ], "_interactable": true, @@ -12144,7 +12129,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 440 + "__id__": 439 }, "_id": "05kavv3MFKp4R9iVYAgcDb" }, @@ -12164,7 +12149,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 439 }, "_enabled": true, "__prefab": null, @@ -12313,16 +12298,16 @@ "__prefab": null, "topScore": null, "yourScore": { - "__id__": 413 + "__id__": 412 }, "_ticketMinus": { - "__id__": 431 + "__id__": 430 }, "_buyTicketBtn": { - "__id__": 428 + "__id__": 427 }, "_quitBtn": { - "__id__": 440 + "__id__": 439 }, "_scoreUI": { "__id__": 147 @@ -12340,17 +12325,17 @@ "__expectedType__": "cc.AudioClip" }, "_starSpeedCurve": { - "__id__": 453 + "__id__": 452 }, "_starScaleCurve": { - "__id__": 455 + "__id__": 454 }, "_id": "bbcyvzebBDsJfOOH9VNeON" }, { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 454 + "__id__": 453 } }, { @@ -12391,7 +12376,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 456 + "__id__": 455 } }, { @@ -12452,19 +12437,19 @@ }, "_children": [ { - "__id__": 458 + "__id__": 457 } ], "_active": false, "_components": [ + { + "__id__": 483 + }, { "__id__": 484 }, { "__id__": 485 - }, - { - "__id__": 486 } ], "_prefab": null, @@ -12503,15 +12488,18 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 457 + "__id__": 456 }, "_children": [ { - "__id__": 459 + "__id__": 458 } ], "_active": true, "_components": [ + { + "__id__": 477 + }, { "__id__": 478 }, @@ -12526,9 +12514,6 @@ }, { "__id__": 482 - }, - { - "__id__": 483 } ], "_prefab": null, @@ -12567,29 +12552,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 458 + "__id__": 457 }, "_children": [ { - "__id__": 460 + "__id__": 459 }, { - "__id__": 463 + "__id__": 462 }, { - "__id__": 466 + "__id__": 465 }, { - "__id__": 470 + "__id__": 469 } ], "_active": true, "_components": [ { - "__id__": 476 + "__id__": 475 }, { - "__id__": 477 + "__id__": 476 } ], "_prefab": null, @@ -12628,16 +12613,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 459 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ { - "__id__": 461 + "__id__": 460 }, { - "__id__": 462 + "__id__": 461 } ], "_prefab": null, @@ -12676,7 +12661,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 460 + "__id__": 459 }, "_enabled": true, "__prefab": null, @@ -12698,7 +12683,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 460 + "__id__": 459 }, "_enabled": true, "__prefab": null, @@ -12737,16 +12722,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 459 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ { - "__id__": 464 + "__id__": 463 }, { - "__id__": 465 + "__id__": 464 } ], "_prefab": null, @@ -12785,7 +12770,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 462 }, "_enabled": true, "__prefab": null, @@ -12807,7 +12792,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 462 }, "_enabled": true, "__prefab": null, @@ -12846,19 +12831,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 459 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 466 + }, { "__id__": 467 }, { "__id__": 468 - }, - { - "__id__": 469 } ], "_prefab": null, @@ -12897,7 +12882,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 466 + "__id__": 465 }, "_enabled": true, "__prefab": null, @@ -12919,7 +12904,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 466 + "__id__": 465 }, "_enabled": true, "__prefab": null, @@ -12958,7 +12943,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 466 + "__id__": 465 }, "_enabled": true, "__prefab": null, @@ -12988,11 +12973,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 459 + "__id__": 458 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 470 + }, { "__id__": 471 }, @@ -13000,10 +12988,7 @@ "__id__": 472 }, { - "__id__": 473 - }, - { - "__id__": 475 + "__id__": 474 } ], "_prefab": null, @@ -13042,7 +13027,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 470 + "__id__": 469 }, "_enabled": true, "__prefab": null, @@ -13064,7 +13049,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 470 + "__id__": 469 }, "_enabled": true, "__prefab": null, @@ -13103,13 +13088,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 470 + "__id__": 469 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 474 + "__id__": 473 } ], "_interactable": true, @@ -13152,7 +13137,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 470 + "__id__": 469 }, "_id": "b5HEsyyjZJ8Yb2u2q1fD82" }, @@ -13172,7 +13157,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 470 + "__id__": 469 }, "_enabled": true, "__prefab": null, @@ -13202,7 +13187,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 458 }, "_enabled": true, "__prefab": null, @@ -13224,7 +13209,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 458 }, "_enabled": true, "__prefab": null, @@ -13263,7 +13248,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13285,7 +13270,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13301,7 +13286,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13341,7 +13326,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13357,7 +13342,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13384,12 +13369,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 482 + "__id__": 481 }, "_id": "21CWF/h19B4IC/OI3ayhGG" }, @@ -13399,7 +13384,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13421,7 +13406,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13460,7 +13445,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13547,17 +13532,17 @@ "_enabled": true, "__prefab": null, "_scoreLabel": { - "__id__": 490 + "__id__": 489 }, "_ticketLabel": { - "__id__": 493 + "__id__": 492 }, "_buffFx": null, "_controlPanel": { "__id__": 228 }, "_startPanel": { - "__id__": 457 + "__id__": 456 }, "_overPanel": { "__id__": 375 @@ -13570,7 +13555,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 490 }, "_enabled": true, "__prefab": null, @@ -13641,10 +13626,10 @@ "_active": true, "_components": [ { - "__id__": 492 + "__id__": 491 }, { - "__id__": 490 + "__id__": 489 } ], "_prefab": null, @@ -13683,7 +13668,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 490 }, "_enabled": true, "__prefab": null, @@ -13705,7 +13690,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -13770,16 +13755,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 495 + "__id__": 494 }, "_children": [], "_active": true, "_components": [ { - "__id__": 503 + "__id__": 502 }, { - "__id__": 493 + "__id__": 492 } ], "_prefab": null, @@ -13822,14 +13807,17 @@ }, "_children": [ { - "__id__": 496 + "__id__": 495 }, { - "__id__": 494 + "__id__": 493 } ], "_active": true, "_components": [ + { + "__id__": 498 + }, { "__id__": 499 }, @@ -13838,9 +13826,6 @@ }, { "__id__": 501 - }, - { - "__id__": 502 } ], "_prefab": null, @@ -13879,16 +13864,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 495 + "__id__": 494 }, "_children": [], "_active": true, "_components": [ { - "__id__": 497 + "__id__": 496 }, { - "__id__": 498 + "__id__": 497 } ], "_prefab": null, @@ -13927,7 +13912,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 496 + "__id__": 495 }, "_enabled": true, "__prefab": null, @@ -13949,7 +13934,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 496 + "__id__": 495 }, "_enabled": true, "__prefab": null, @@ -13988,7 +13973,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -14010,7 +13995,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -14049,7 +14034,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -14079,7 +14064,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -14111,7 +14096,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -14137,14 +14122,17 @@ }, "_children": [ { - "__id__": 505 + "__id__": 504 }, { - "__id__": 509 + "__id__": 508 } ], "_active": true, "_components": [ + { + "__id__": 521 + }, { "__id__": 522 }, @@ -14153,9 +14141,6 @@ }, { "__id__": 524 - }, - { - "__id__": 525 } ], "_prefab": null, @@ -14194,19 +14179,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 503 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 505 + }, { "__id__": 506 }, { "__id__": 507 - }, - { - "__id__": 508 } ], "_prefab": null, @@ -14245,7 +14230,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 504 }, "_enabled": true, "__prefab": null, @@ -14267,7 +14252,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 504 }, "_enabled": true, "__prefab": null, @@ -14306,7 +14291,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 504 }, "_enabled": true, "__prefab": null, @@ -14336,26 +14321,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 503 }, "_children": [ { - "__id__": 510 + "__id__": 509 }, { - "__id__": 516 + "__id__": 515 } ], "_active": true, "_components": [ + { + "__id__": 518 + }, { "__id__": 519 }, { "__id__": 520 - }, - { - "__id__": 521 } ], "_prefab": null, @@ -14394,20 +14379,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 508 }, "_children": [ { - "__id__": 511 + "__id__": 510 } ], "_active": true, "_components": [ { - "__id__": 514 + "__id__": 513 }, { - "__id__": 515 + "__id__": 514 } ], "_prefab": null, @@ -14446,16 +14431,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 509 }, "_children": [], "_active": true, "_components": [ { - "__id__": 512 + "__id__": 511 }, { - "__id__": 513 + "__id__": 512 } ], "_prefab": null, @@ -14494,7 +14479,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14516,7 +14501,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 510 }, "_enabled": true, "__prefab": null, @@ -14555,7 +14540,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 510 + "__id__": 509 }, "_enabled": true, "__prefab": null, @@ -14577,7 +14562,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 510 + "__id__": 509 }, "_enabled": true, "__prefab": null, @@ -14616,16 +14601,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 508 }, "_children": [], "_active": true, "_components": [ { - "__id__": 517 + "__id__": 516 }, { - "__id__": 518 + "__id__": 517 } ], "_prefab": null, @@ -14664,7 +14649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 516 + "__id__": 515 }, "_enabled": true, "__prefab": null, @@ -14686,7 +14671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 516 + "__id__": 515 }, "_enabled": true, "__prefab": null, @@ -14751,7 +14736,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 508 }, "_enabled": true, "__prefab": null, @@ -14773,7 +14758,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 508 }, "_enabled": true, "__prefab": null, @@ -14805,7 +14790,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 508 }, "_enabled": true, "__prefab": null, @@ -14835,7 +14820,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14857,7 +14842,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14896,7 +14881,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14926,18 +14911,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, "_timeLabel": { - "__id__": 518 + "__id__": 517 }, "_fill": { - "__id__": 507 + "__id__": 506 }, "_timeIcon": { - "__id__": 511 + "__id__": 510 }, "_countDownSound": { "__uuid__": "c96f7bd8-69d7-4810-a6d4-3cfa61766b2c", @@ -14955,14 +14940,17 @@ }, "_children": [ { - "__id__": 527 + "__id__": 526 }, { - "__id__": 530 + "__id__": 529 } ], "_active": true, "_components": [ + { + "__id__": 532 + }, { "__id__": 533 }, @@ -14970,13 +14958,10 @@ "__id__": 534 }, { - "__id__": 535 + "__id__": 536 }, { "__id__": 537 - }, - { - "__id__": 538 } ], "_prefab": null, @@ -15015,16 +15000,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 526 + "__id__": 525 }, "_children": [], "_active": true, "_components": [ { - "__id__": 528 + "__id__": 527 }, { - "__id__": 529 + "__id__": 528 } ], "_prefab": null, @@ -15063,7 +15048,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 527 + "__id__": 526 }, "_enabled": true, "__prefab": null, @@ -15085,7 +15070,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 527 + "__id__": 526 }, "_enabled": true, "__prefab": null, @@ -15124,16 +15109,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 526 + "__id__": 525 }, "_children": [], "_active": false, "_components": [ { - "__id__": 531 + "__id__": 530 }, { - "__id__": 532 + "__id__": 531 } ], "_prefab": null, @@ -15172,7 +15157,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 530 + "__id__": 529 }, "_enabled": true, "__prefab": null, @@ -15194,7 +15179,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 530 + "__id__": 529 }, "_enabled": true, "__prefab": null, @@ -15233,7 +15218,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, @@ -15255,7 +15240,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, @@ -15294,13 +15279,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 536 + "__id__": 535 } ], "_interactable": true, @@ -15343,14 +15328,14 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 526 + "__id__": 525 }, "_id": "1cDmuMEIFEs5ImBNG5Gm0F" }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 526 + "__id__": 525 }, "component": "", "_componentId": "fe619HtEX1OQq7oeACKrANd", @@ -15363,7 +15348,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, @@ -15393,15 +15378,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, "_unMute": { - "__id__": 527 + "__id__": 526 }, "_mute": { - "__id__": 530 + "__id__": 529 }, "_id": "adeG5FRP1GpLzDXol2pxU+" }, @@ -15468,14 +15453,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 541 + }, { "__id__": 542 }, { "__id__": 543 - }, - { - "__id__": 544 } ], "_prefab": null, @@ -15514,7 +15499,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15536,7 +15521,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15575,7 +15560,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 541 + "__id__": 540 }, "_enabled": true, "__prefab": null, @@ -15610,14 +15595,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 545 + }, { "__id__": 546 }, { "__id__": 547 - }, - { - "__id__": 548 } ], "_prefab": null, @@ -15656,7 +15641,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 545 + "__id__": 544 }, "_enabled": true, "__prefab": null, @@ -15678,7 +15663,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 545 + "__id__": 544 }, "_enabled": true, "__prefab": null, @@ -15743,7 +15728,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 545 + "__id__": 544 }, "_enabled": true, "__prefab": null, @@ -16184,28 +16169,28 @@ }, "_children": [ { - "__id__": 565 + "__id__": 564 }, { - "__id__": 577 + "__id__": 576 }, { - "__id__": 586 + "__id__": 585 }, { - "__id__": 629 + "__id__": 628 } ], "_active": true, "_components": [ + { + "__id__": 632 + }, { "__id__": 633 }, { "__id__": 634 - }, - { - "__id__": 635 } ], "_prefab": null, @@ -16244,26 +16229,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [ { - "__id__": 566 + "__id__": 565 }, { - "__id__": 569 + "__id__": 568 }, { - "__id__": 572 + "__id__": 571 } ], "_active": true, "_components": [ { - "__id__": 575 + "__id__": 574 }, { - "__id__": 576 + "__id__": 575 } ], "_prefab": null, @@ -16302,16 +16287,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 565 + "__id__": 564 }, "_children": [], "_active": true, "_components": [ { - "__id__": 567 + "__id__": 566 }, { - "__id__": 568 + "__id__": 567 } ], "_prefab": null, @@ -16350,7 +16335,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 566 + "__id__": 565 }, "_enabled": true, "__prefab": null, @@ -16372,7 +16357,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 566 + "__id__": 565 }, "_enabled": true, "__prefab": null, @@ -16411,16 +16396,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 565 + "__id__": 564 }, "_children": [], "_active": true, "_components": [ { - "__id__": 570 + "__id__": 569 }, { - "__id__": 571 + "__id__": 570 } ], "_prefab": null, @@ -16459,7 +16444,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 568 }, "_enabled": true, "__prefab": null, @@ -16481,7 +16466,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 569 + "__id__": 568 }, "_enabled": true, "__prefab": null, @@ -16520,16 +16505,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 565 + "__id__": 564 }, "_children": [], "_active": true, "_components": [ { - "__id__": 573 + "__id__": 572 }, { - "__id__": 574 + "__id__": 573 } ], "_prefab": null, @@ -16568,7 +16553,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 572 + "__id__": 571 }, "_enabled": true, "__prefab": null, @@ -16590,7 +16575,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 572 + "__id__": 571 }, "_enabled": true, "__prefab": null, @@ -16629,7 +16614,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 564 }, "_enabled": true, "__prefab": null, @@ -16651,7 +16636,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 564 }, "_enabled": true, "__prefab": null, @@ -16690,23 +16675,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [ { - "__id__": 578 + "__id__": 577 }, { - "__id__": 581 + "__id__": 580 } ], "_active": true, "_components": [ { - "__id__": 584 + "__id__": 583 }, { - "__id__": 585 + "__id__": 584 } ], "_prefab": null, @@ -16745,16 +16730,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 577 + "__id__": 576 }, "_children": [], "_active": false, "_components": [ { - "__id__": 579 + "__id__": 578 }, { - "__id__": 580 + "__id__": 579 } ], "_prefab": null, @@ -16793,7 +16778,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16815,7 +16800,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 577 }, "_enabled": true, "__prefab": null, @@ -16854,16 +16839,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 577 + "__id__": 576 }, "_children": [], "_active": true, "_components": [ { - "__id__": 582 + "__id__": 581 }, { - "__id__": 583 + "__id__": 582 } ], "_prefab": null, @@ -16902,7 +16887,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 581 + "__id__": 580 }, "_enabled": true, "__prefab": null, @@ -16924,7 +16909,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 581 + "__id__": 580 }, "_enabled": true, "__prefab": null, @@ -16963,7 +16948,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 576 }, "_enabled": true, "__prefab": null, @@ -16985,7 +16970,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 576 }, "_enabled": false, "__prefab": null, @@ -17024,23 +17009,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [ { - "__id__": 587 + "__id__": 586 }, { - "__id__": 606 + "__id__": 605 } ], "_active": true, "_components": [ { - "__id__": 627 + "__id__": 626 }, { - "__id__": 628 + "__id__": 627 } ], "_prefab": null, @@ -17077,17 +17062,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 586 + "__id__": 585 }, "_prefab": { - "__id__": 588 + "__id__": 587 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 587 + "__id__": 586 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -17095,7 +17080,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 589 + "__id__": 588 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -17108,7 +17093,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 590 + "__id__": 589 + }, + { + "__id__": 591 }, { "__id__": 592 @@ -17120,7 +17108,7 @@ "__id__": 594 }, { - "__id__": 595 + "__id__": 596 }, { "__id__": 597 @@ -17132,13 +17120,10 @@ "__id__": 599 }, { - "__id__": 600 + "__id__": 601 }, { - "__id__": 602 - }, - { - "__id__": 604 + "__id__": 603 } ], "removedComponents": [] @@ -17146,7 +17131,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 591 + "__id__": 590 }, "propertyPath": [ "_name" @@ -17162,7 +17147,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 591 + "__id__": 590 }, "propertyPath": [ "_lpos" @@ -17177,7 +17162,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 591 + "__id__": 590 }, "propertyPath": [ "_lrot" @@ -17193,7 +17178,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 591 + "__id__": 590 }, "propertyPath": [ "_euler" @@ -17208,7 +17193,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 596 + "__id__": 595 }, "propertyPath": [ "_lrot" @@ -17230,7 +17215,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 596 + "__id__": 595 }, "propertyPath": [ "_euler" @@ -17245,7 +17230,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 591 + "__id__": 590 }, "propertyPath": [ "_layer" @@ -17255,7 +17240,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 596 + "__id__": 595 }, "propertyPath": [ "_layer" @@ -17265,7 +17250,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 601 + "__id__": 600 }, "propertyPath": [ "_layer" @@ -17281,7 +17266,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 603 + "__id__": 602 }, "propertyPath": [ "_layer" @@ -17297,7 +17282,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 605 + "__id__": 604 }, "propertyPath": [ "_rotationOvertimeModule", @@ -17316,17 +17301,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 586 + "__id__": 585 }, "_prefab": { - "__id__": 607 + "__id__": 606 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 606 + "__id__": 605 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -17334,7 +17319,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 608 + "__id__": 607 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -17347,7 +17332,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 609 + "__id__": 608 + }, + { + "__id__": 610 }, { "__id__": 611 @@ -17362,7 +17350,7 @@ "__id__": 614 }, { - "__id__": 615 + "__id__": 616 }, { "__id__": 617 @@ -17374,16 +17362,13 @@ "__id__": 619 }, { - "__id__": 620 + "__id__": 621 }, { "__id__": 622 }, { - "__id__": 623 - }, - { - "__id__": 625 + "__id__": 624 } ], "removedComponents": [] @@ -17391,7 +17376,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_name" @@ -17407,7 +17392,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_lpos" @@ -17422,7 +17407,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_lrot" @@ -17438,7 +17423,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_euler" @@ -17453,7 +17438,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_layer" @@ -17463,7 +17448,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 616 + "__id__": 615 }, "propertyPath": [ "_lrot" @@ -17485,7 +17470,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 616 + "__id__": 615 }, "propertyPath": [ "_euler" @@ -17500,7 +17485,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 610 + "__id__": 609 }, "propertyPath": [ "_lscale" @@ -17515,7 +17500,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 616 + "__id__": 615 }, "propertyPath": [ "_lscale" @@ -17530,7 +17515,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 621 + "__id__": 620 }, "propertyPath": [ "_rotationOvertimeModule", @@ -17548,7 +17533,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 616 + "__id__": 615 }, "propertyPath": [ "_layer" @@ -17558,7 +17543,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 624 + "__id__": 623 }, "propertyPath": [ "_layer" @@ -17574,7 +17559,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 626 + "__id__": 625 }, "propertyPath": [ "_layer" @@ -17593,7 +17578,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 585 }, "_enabled": true, "__prefab": null, @@ -17615,7 +17600,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 585 }, "_enabled": true, "__prefab": null, @@ -17654,19 +17639,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 629 + }, { "__id__": 630 }, { "__id__": 631 - }, - { - "__id__": 632 } ], "_prefab": null, @@ -17705,7 +17690,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -17727,7 +17712,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -17787,7 +17772,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 629 + "__id__": 628 }, "_enabled": true, "__prefab": null, @@ -17815,7 +17800,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -17837,15 +17822,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 631 + "__id__": 630 }, "_animation": { - "__id__": 635 + "__id__": 634 }, "_score": 100, "_goalFx": { @@ -17860,7 +17845,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -17892,6 +17877,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 636 + }, { "__id__": 637 }, @@ -17900,9 +17888,6 @@ }, { "__id__": 639 - }, - { - "__id__": 640 } ], "_prefab": null, @@ -17941,7 +17926,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -17963,7 +17948,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18088,7 +18073,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18208,7 +18193,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 636 + "__id__": 635 }, "_enabled": true, "__prefab": null, @@ -18241,6 +18226,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 641 + }, { "__id__": 642 }, @@ -18249,9 +18237,6 @@ }, { "__id__": 644 - }, - { - "__id__": 645 } ], "_prefab": null, @@ -18290,7 +18275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 640 }, "_enabled": true, "__prefab": null, @@ -18312,7 +18297,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 640 }, "_enabled": true, "__prefab": null, @@ -18367,18 +18352,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 640 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 643 + "__id__": 642 }, "_portLeft": { - "__id__": 587 + "__id__": 586 }, "_portRight": { - "__id__": 606 + "__id__": 605 }, "_fx": { "__uuid__": "7afbc379-62e2-4721-b6d4-be47b00b6db2", @@ -18396,7 +18381,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 641 + "__id__": 640 }, "_enabled": true, "__prefab": null, @@ -18428,22 +18413,22 @@ }, "_children": [ { - "__id__": 647 + "__id__": 646 }, { - "__id__": 663 + "__id__": 662 }, { - "__id__": 682 + "__id__": 681 }, { - "__id__": 701 + "__id__": 700 } ], "_active": true, "_components": [ { - "__id__": 720 + "__id__": 719 } ], "_prefab": null, @@ -18482,26 +18467,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 646 + "__id__": 645 }, "_children": [ { - "__id__": 648 + "__id__": 647 }, { - "__id__": 655 + "__id__": 654 }, { - "__id__": 657 + "__id__": 656 } ], "_active": true, "_components": [ { - "__id__": 659 + "__id__": 658 }, { - "__id__": 660 + "__id__": 659 } ], "_prefab": null, @@ -18540,23 +18525,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [ { - "__id__": 649 + "__id__": 648 } ], "_active": true, "_components": [ + { + "__id__": 651 + }, { "__id__": 652 }, { "__id__": 653 - }, - { - "__id__": 654 } ], "_prefab": null, @@ -18595,16 +18580,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 648 + "__id__": 647 }, "_children": [], "_active": true, "_components": [ { - "__id__": 650 + "__id__": 649 }, { - "__id__": 651 + "__id__": 650 } ], "_prefab": null, @@ -18643,7 +18628,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 649 + "__id__": 648 }, "_enabled": true, "__prefab": null, @@ -18665,7 +18650,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 649 + "__id__": 648 }, "_enabled": true, "__prefab": null, @@ -18704,7 +18689,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 648 + "__id__": 647 }, "_enabled": true, "__prefab": null, @@ -18726,7 +18711,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 648 + "__id__": 647 }, "_enabled": true, "__prefab": null, @@ -18754,7 +18739,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 648 + "__id__": 647 }, "_enabled": true, "__prefab": null, @@ -18782,13 +18767,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [], "_active": true, "_components": [ { - "__id__": 656 + "__id__": 655 } ], "_prefab": null, @@ -18827,7 +18812,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 655 + "__id__": 654 }, "_enabled": true, "__prefab": null, @@ -18849,13 +18834,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 647 + "__id__": 646 }, "_children": [], "_active": true, "_components": [ { - "__id__": 658 + "__id__": 657 } ], "_prefab": null, @@ -18894,7 +18879,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 657 + "__id__": 656 }, "_enabled": true, "__prefab": null, @@ -18916,7 +18901,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 646 }, "_enabled": true, "__prefab": null, @@ -18938,27 +18923,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 647 + "__id__": 646 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 653 + "__id__": 652 }, "_sprite": { - "__id__": 651 + "__id__": 650 }, "_patrolPoint1": { - "__id__": 655 + "__id__": 654 }, "_patrolPoint2": { - "__id__": 657 + "__id__": 656 }, "_speed": 50, "_requireGoal": 3, "_curveY": true, "_patrolCurve": { - "__id__": 661 + "__id__": 660 }, "_multiplierCurve": 120, "_hitSound": { @@ -18970,7 +18955,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 662 + "__id__": 661 } }, { @@ -19014,29 +18999,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 646 + "__id__": 645 }, "_children": [ { - "__id__": 664 + "__id__": 663 }, { - "__id__": 667 + "__id__": 666 }, { - "__id__": 674 + "__id__": 673 }, { - "__id__": 676 + "__id__": 675 } ], "_active": true, "_components": [ { - "__id__": 678 + "__id__": 677 }, { - "__id__": 679 + "__id__": 678 } ], "_prefab": null, @@ -19075,16 +19060,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 662 }, "_children": [], "_active": true, "_components": [ { - "__id__": 665 + "__id__": 664 }, { - "__id__": 666 + "__id__": 665 } ], "_prefab": null, @@ -19123,7 +19108,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19145,7 +19130,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19184,23 +19169,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 662 }, "_children": [ { - "__id__": 668 + "__id__": 667 } ], "_active": true, "_components": [ + { + "__id__": 670 + }, { "__id__": 671 }, { "__id__": 672 - }, - { - "__id__": 673 } ], "_prefab": null, @@ -19239,16 +19224,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 667 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 669 + "__id__": 668 }, { - "__id__": 670 + "__id__": 669 } ], "_prefab": null, @@ -19287,7 +19272,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 668 + "__id__": 667 }, "_enabled": true, "__prefab": null, @@ -19309,7 +19294,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 668 + "__id__": 667 }, "_enabled": true, "__prefab": null, @@ -19348,7 +19333,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 667 + "__id__": 666 }, "_enabled": true, "__prefab": null, @@ -19370,7 +19355,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 667 + "__id__": 666 }, "_enabled": true, "__prefab": null, @@ -19398,7 +19383,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 667 + "__id__": 666 }, "_enabled": true, "__prefab": null, @@ -19426,13 +19411,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 662 }, "_children": [], "_active": true, "_components": [ { - "__id__": 675 + "__id__": 674 } ], "_prefab": null, @@ -19471,7 +19456,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 674 + "__id__": 673 }, "_enabled": true, "__prefab": null, @@ -19493,13 +19478,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 662 }, "_children": [], "_active": true, "_components": [ { - "__id__": 677 + "__id__": 676 } ], "_prefab": null, @@ -19538,7 +19523,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 676 + "__id__": 675 }, "_enabled": true, "__prefab": null, @@ -19560,7 +19545,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 662 }, "_enabled": true, "__prefab": null, @@ -19582,27 +19567,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 662 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 672 + "__id__": 671 }, "_sprite": { - "__id__": 670 + "__id__": 669 }, "_patrolPoint1": { - "__id__": 674 + "__id__": 673 }, "_patrolPoint2": { - "__id__": 676 + "__id__": 675 }, "_speed": 50, "_requireGoal": 6, "_curveY": false, "_patrolCurve": { - "__id__": 680 + "__id__": 679 }, "_multiplierCurve": 100, "_hitSound": { @@ -19614,7 +19599,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 681 + "__id__": 680 } }, { @@ -19658,29 +19643,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 646 + "__id__": 645 }, "_children": [ { - "__id__": 683 + "__id__": 682 }, { - "__id__": 686 + "__id__": 685 }, { - "__id__": 693 + "__id__": 692 }, { - "__id__": 695 + "__id__": 694 } ], "_active": true, "_components": [ { - "__id__": 697 + "__id__": 696 }, { - "__id__": 698 + "__id__": 697 } ], "_prefab": null, @@ -19719,16 +19704,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 682 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 684 + "__id__": 683 }, { - "__id__": 685 + "__id__": 684 } ], "_prefab": null, @@ -19767,7 +19752,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -19789,7 +19774,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -19828,23 +19813,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 682 + "__id__": 681 }, "_children": [ { - "__id__": 687 + "__id__": 686 } ], "_active": true, "_components": [ + { + "__id__": 689 + }, { "__id__": 690 }, { "__id__": 691 - }, - { - "__id__": 692 } ], "_prefab": null, @@ -19883,16 +19868,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 686 + "__id__": 685 }, "_children": [], "_active": true, "_components": [ { - "__id__": 688 + "__id__": 687 }, { - "__id__": 689 + "__id__": 688 } ], "_prefab": null, @@ -19931,7 +19916,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 687 + "__id__": 686 }, "_enabled": true, "__prefab": null, @@ -19953,7 +19938,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 687 + "__id__": 686 }, "_enabled": true, "__prefab": null, @@ -19992,7 +19977,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 686 + "__id__": 685 }, "_enabled": true, "__prefab": null, @@ -20014,7 +19999,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 686 + "__id__": 685 }, "_enabled": true, "__prefab": null, @@ -20042,7 +20027,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 686 + "__id__": 685 }, "_enabled": true, "__prefab": null, @@ -20070,13 +20055,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 682 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 694 + "__id__": 693 } ], "_prefab": null, @@ -20115,7 +20100,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 693 + "__id__": 692 }, "_enabled": true, "__prefab": null, @@ -20137,13 +20122,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 682 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 696 + "__id__": 695 } ], "_prefab": null, @@ -20182,7 +20167,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 695 + "__id__": 694 }, "_enabled": true, "__prefab": null, @@ -20204,7 +20189,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 682 + "__id__": 681 }, "_enabled": true, "__prefab": null, @@ -20226,27 +20211,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 682 + "__id__": 681 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 691 + "__id__": 690 }, "_sprite": { - "__id__": 689 + "__id__": 688 }, "_patrolPoint1": { - "__id__": 693 + "__id__": 692 }, "_patrolPoint2": { - "__id__": 695 + "__id__": 694 }, "_speed": 50, "_requireGoal": 9, "_curveY": false, "_patrolCurve": { - "__id__": 699 + "__id__": 698 }, "_multiplierCurve": 100, "_hitSound": { @@ -20258,7 +20243,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 700 + "__id__": 699 } }, { @@ -20302,29 +20287,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 646 + "__id__": 645 }, "_children": [ { - "__id__": 702 + "__id__": 701 }, { - "__id__": 705 + "__id__": 704 }, { - "__id__": 712 + "__id__": 711 }, { - "__id__": 714 + "__id__": 713 } ], "_active": true, "_components": [ { - "__id__": 716 + "__id__": 715 }, { - "__id__": 717 + "__id__": 716 } ], "_prefab": null, @@ -20363,16 +20348,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 701 + "__id__": 700 }, "_children": [], "_active": true, "_components": [ { - "__id__": 703 + "__id__": 702 }, { - "__id__": 704 + "__id__": 703 } ], "_prefab": null, @@ -20411,7 +20396,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20433,7 +20418,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20472,23 +20457,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 701 + "__id__": 700 }, "_children": [ { - "__id__": 706 + "__id__": 705 } ], "_active": true, "_components": [ + { + "__id__": 708 + }, { "__id__": 709 }, { "__id__": 710 - }, - { - "__id__": 711 } ], "_prefab": null, @@ -20527,16 +20512,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 705 + "__id__": 704 }, "_children": [], "_active": true, "_components": [ { - "__id__": 707 + "__id__": 706 }, { - "__id__": 708 + "__id__": 707 } ], "_prefab": null, @@ -20575,7 +20560,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 705 }, "_enabled": true, "__prefab": null, @@ -20597,7 +20582,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 706 + "__id__": 705 }, "_enabled": true, "__prefab": null, @@ -20636,7 +20621,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 704 }, "_enabled": true, "__prefab": null, @@ -20658,7 +20643,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 704 }, "_enabled": true, "__prefab": null, @@ -20686,7 +20671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 704 }, "_enabled": true, "__prefab": null, @@ -20714,13 +20699,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 701 + "__id__": 700 }, "_children": [], "_active": true, "_components": [ { - "__id__": 713 + "__id__": 712 } ], "_prefab": null, @@ -20759,7 +20744,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 712 + "__id__": 711 }, "_enabled": true, "__prefab": null, @@ -20781,13 +20766,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 701 + "__id__": 700 }, "_children": [], "_active": true, "_components": [ { - "__id__": 715 + "__id__": 714 } ], "_prefab": null, @@ -20826,7 +20811,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 714 + "__id__": 713 }, "_enabled": true, "__prefab": null, @@ -20848,7 +20833,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 701 + "__id__": 700 }, "_enabled": true, "__prefab": null, @@ -20870,27 +20855,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 701 + "__id__": 700 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 710 + "__id__": 709 }, "_sprite": { - "__id__": 708 + "__id__": 707 }, "_patrolPoint1": { - "__id__": 712 + "__id__": 711 }, "_patrolPoint2": { - "__id__": 714 + "__id__": 713 }, "_speed": 50, "_requireGoal": 12, "_curveY": false, "_patrolCurve": { - "__id__": 718 + "__id__": 717 }, "_multiplierCurve": 100, "_hitSound": { @@ -20902,7 +20887,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 719 + "__id__": 718 } }, { @@ -20946,7 +20931,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 646 + "__id__": 645 }, "_enabled": true, "__prefab": null, @@ -20972,22 +20957,22 @@ }, "_children": [ { - "__id__": 722 + "__id__": 721 }, { - "__id__": 737 + "__id__": 736 }, { - "__id__": 752 + "__id__": 751 }, { - "__id__": 767 + "__id__": 766 } ], "_active": true, "_components": [ { - "__id__": 782 + "__id__": 781 } ], "_prefab": null, @@ -21026,23 +21011,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 721 + "__id__": 720 }, "_children": [ { - "__id__": 723 + "__id__": 722 } ], "_active": true, "_components": [ { - "__id__": 732 + "__id__": 731 + }, + { + "__id__": 734 }, { "__id__": 735 - }, - { - "__id__": 736 } ], "_prefab": null, @@ -21081,29 +21066,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 722 + "__id__": 721 }, "_children": [ { - "__id__": 724 + "__id__": 723 }, { - "__id__": 727 + "__id__": 726 } ], "_active": true, "_components": [ + { + "__id__": 729 + }, { "__id__": 730 }, { - "__id__": 731 + "__id__": 732 }, { "__id__": 733 - }, - { - "__id__": 734 } ], "_prefab": null, @@ -21142,16 +21127,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 723 + "__id__": 722 }, "_children": [], "_active": true, "_components": [ { - "__id__": 725 + "__id__": 724 }, { - "__id__": 726 + "__id__": 725 } ], "_prefab": null, @@ -21190,7 +21175,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21212,7 +21197,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 724 + "__id__": 723 }, "_enabled": true, "__prefab": null, @@ -21251,16 +21236,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 723 + "__id__": 722 }, "_children": [], "_active": true, "_components": [ { - "__id__": 728 + "__id__": 727 }, { - "__id__": 729 + "__id__": 728 } ], "_prefab": null, @@ -21299,7 +21284,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 727 + "__id__": 726 }, "_enabled": true, "__prefab": null, @@ -21321,7 +21306,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 727 + "__id__": 726 }, "_enabled": true, "__prefab": null, @@ -21360,7 +21345,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21388,7 +21373,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21404,7 +21389,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 732 + "__id__": 731 }, "_enableLimit": true, "_lowerAngle": -60, @@ -21420,7 +21405,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 722 + "__id__": 721 }, "_enabled": true, "__prefab": null, @@ -21448,7 +21433,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21528,7 +21513,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21550,15 +21535,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 722 + "__id__": 721 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 736 + "__id__": 735 }, "_hingeJoint": { - "__id__": 731 + "__id__": 730 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -21575,7 +21560,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 722 + "__id__": 721 }, "_enabled": true, "__prefab": null, @@ -21598,23 +21583,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 721 + "__id__": 720 }, "_children": [ { - "__id__": 738 + "__id__": 737 } ], "_active": true, "_components": [ { - "__id__": 747 + "__id__": 746 + }, + { + "__id__": 749 }, { "__id__": 750 - }, - { - "__id__": 751 } ], "_prefab": null, @@ -21653,29 +21638,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 737 + "__id__": 736 }, "_children": [ { - "__id__": 739 + "__id__": 738 }, { - "__id__": 742 + "__id__": 741 } ], "_active": true, "_components": [ + { + "__id__": 744 + }, { "__id__": 745 }, { - "__id__": 746 + "__id__": 747 }, { "__id__": 748 - }, - { - "__id__": 749 } ], "_prefab": null, @@ -21714,16 +21699,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 738 + "__id__": 737 }, "_children": [], "_active": true, "_components": [ { - "__id__": 740 + "__id__": 739 }, { - "__id__": 741 + "__id__": 740 } ], "_prefab": null, @@ -21762,7 +21747,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -21784,7 +21769,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 739 + "__id__": 738 }, "_enabled": true, "__prefab": null, @@ -21823,16 +21808,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 738 + "__id__": 737 }, "_children": [], "_active": true, "_components": [ { - "__id__": 743 + "__id__": 742 }, { - "__id__": 744 + "__id__": 743 } ], "_prefab": null, @@ -21871,7 +21856,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 741 }, "_enabled": true, "__prefab": null, @@ -21893,7 +21878,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 742 + "__id__": 741 }, "_enabled": true, "__prefab": null, @@ -21932,7 +21917,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -21960,7 +21945,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -21976,7 +21961,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 747 + "__id__": 746 }, "_enableLimit": true, "_lowerAngle": 0, @@ -21992,7 +21977,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 737 + "__id__": 736 }, "_enabled": true, "__prefab": null, @@ -22020,7 +22005,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -22115,7 +22100,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -22137,15 +22122,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 737 + "__id__": 736 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 751 + "__id__": 750 }, "_hingeJoint": { - "__id__": 746 + "__id__": 745 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22162,7 +22147,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 737 + "__id__": 736 }, "_enabled": true, "__prefab": null, @@ -22185,23 +22170,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 721 + "__id__": 720 }, "_children": [ { - "__id__": 753 + "__id__": 752 } ], "_active": true, "_components": [ { - "__id__": 762 + "__id__": 761 + }, + { + "__id__": 764 }, { "__id__": 765 - }, - { - "__id__": 766 } ], "_prefab": null, @@ -22240,29 +22225,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 752 + "__id__": 751 }, "_children": [ { - "__id__": 754 + "__id__": 753 }, { - "__id__": 757 + "__id__": 756 } ], "_active": true, "_components": [ + { + "__id__": 759 + }, { "__id__": 760 }, { - "__id__": 761 + "__id__": 762 }, { "__id__": 763 - }, - { - "__id__": 764 } ], "_prefab": null, @@ -22301,16 +22286,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 753 + "__id__": 752 }, "_children": [], "_active": true, "_components": [ { - "__id__": 755 + "__id__": 754 }, { - "__id__": 756 + "__id__": 755 } ], "_prefab": null, @@ -22349,7 +22334,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22371,7 +22356,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 754 + "__id__": 753 }, "_enabled": true, "__prefab": null, @@ -22410,16 +22395,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 753 + "__id__": 752 }, "_children": [], "_active": true, "_components": [ { - "__id__": 758 + "__id__": 757 }, { - "__id__": 759 + "__id__": 758 } ], "_prefab": null, @@ -22458,7 +22443,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 756 }, "_enabled": true, "__prefab": null, @@ -22480,7 +22465,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 756 }, "_enabled": true, "__prefab": null, @@ -22519,7 +22504,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22547,7 +22532,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22563,7 +22548,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 762 + "__id__": 761 }, "_enableLimit": true, "_lowerAngle": 0, @@ -22579,7 +22564,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 752 + "__id__": 751 }, "_enabled": true, "__prefab": null, @@ -22607,7 +22592,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22702,7 +22687,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22724,15 +22709,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 752 + "__id__": 751 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 766 + "__id__": 765 }, "_hingeJoint": { - "__id__": 761 + "__id__": 760 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22749,7 +22734,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 752 + "__id__": 751 }, "_enabled": true, "__prefab": null, @@ -22772,23 +22757,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 721 + "__id__": 720 }, "_children": [ { - "__id__": 768 + "__id__": 767 } ], "_active": true, "_components": [ { - "__id__": 777 + "__id__": 776 + }, + { + "__id__": 779 }, { "__id__": 780 - }, - { - "__id__": 781 } ], "_prefab": null, @@ -22827,29 +22812,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 767 + "__id__": 766 }, "_children": [ { - "__id__": 769 + "__id__": 768 }, { - "__id__": 772 + "__id__": 771 } ], "_active": true, "_components": [ + { + "__id__": 774 + }, { "__id__": 775 }, { - "__id__": 776 + "__id__": 777 }, { "__id__": 778 - }, - { - "__id__": 779 } ], "_prefab": null, @@ -22888,16 +22873,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 768 + "__id__": 767 }, "_children": [], "_active": true, "_components": [ { - "__id__": 770 + "__id__": 769 }, { - "__id__": 771 + "__id__": 770 } ], "_prefab": null, @@ -22936,7 +22921,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -22958,7 +22943,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 768 }, "_enabled": true, "__prefab": null, @@ -22997,16 +22982,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 768 + "__id__": 767 }, "_children": [], "_active": true, "_components": [ { - "__id__": 773 + "__id__": 772 }, { - "__id__": 774 + "__id__": 773 } ], "_prefab": null, @@ -23045,7 +23030,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 772 + "__id__": 771 }, "_enabled": true, "__prefab": null, @@ -23067,7 +23052,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 772 + "__id__": 771 }, "_enabled": true, "__prefab": null, @@ -23106,7 +23091,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23134,7 +23119,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23150,7 +23135,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 777 + "__id__": 776 }, "_enableLimit": true, "_lowerAngle": -60, @@ -23166,7 +23151,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 766 }, "_enabled": true, "__prefab": null, @@ -23194,7 +23179,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23274,7 +23259,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23296,15 +23281,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 766 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 781 + "__id__": 780 }, "_hingeJoint": { - "__id__": 776 + "__id__": 775 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -23321,7 +23306,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 766 }, "_enabled": true, "__prefab": null, @@ -23344,7 +23329,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 721 + "__id__": 720 }, "_enabled": true, "__prefab": null, @@ -23371,6 +23356,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 783 + }, { "__id__": 784 }, @@ -23379,9 +23367,6 @@ }, { "__id__": 786 - }, - { - "__id__": 787 } ], "_prefab": null, @@ -23420,7 +23405,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, @@ -23442,7 +23427,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, @@ -23470,12 +23455,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 785 + "__id__": 784 }, "_id": "63rfzsm3REkprs+s68PCRK" }, @@ -23485,7 +23470,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 783 + "__id__": 782 }, "_enabled": true, "__prefab": null, @@ -23517,211 +23502,211 @@ }, "_children": [ { - "__id__": 789 + "__id__": 788 }, { - "__id__": 792 + "__id__": 791 }, { - "__id__": 795 + "__id__": 794 }, { - "__id__": 798 + "__id__": 797 }, { - "__id__": 801 + "__id__": 800 }, { - "__id__": 804 + "__id__": 803 }, { - "__id__": 807 + "__id__": 806 }, { - "__id__": 810 + "__id__": 809 }, { - "__id__": 813 + "__id__": 812 }, { - "__id__": 816 + "__id__": 815 }, { - "__id__": 819 + "__id__": 818 }, { - "__id__": 822 + "__id__": 821 }, { - "__id__": 825 + "__id__": 824 }, { - "__id__": 828 + "__id__": 827 }, { - "__id__": 831 + "__id__": 830 }, { - "__id__": 834 + "__id__": 833 }, { - "__id__": 837 + "__id__": 836 }, { - "__id__": 840 + "__id__": 839 }, { - "__id__": 843 + "__id__": 842 }, { - "__id__": 846 + "__id__": 845 }, { - "__id__": 849 + "__id__": 848 }, { - "__id__": 852 + "__id__": 851 }, { - "__id__": 855 + "__id__": 854 }, { - "__id__": 858 + "__id__": 857 }, { - "__id__": 861 + "__id__": 860 }, { - "__id__": 864 + "__id__": 863 }, { - "__id__": 867 + "__id__": 866 }, { - "__id__": 870 + "__id__": 869 }, { - "__id__": 873 + "__id__": 872 }, { - "__id__": 876 + "__id__": 875 }, { - "__id__": 879 + "__id__": 878 }, { - "__id__": 882 + "__id__": 881 }, { - "__id__": 885 + "__id__": 884 }, { - "__id__": 888 + "__id__": 887 }, { - "__id__": 891 + "__id__": 890 }, { - "__id__": 894 + "__id__": 893 }, { - "__id__": 897 + "__id__": 896 }, { - "__id__": 900 + "__id__": 899 }, { - "__id__": 903 + "__id__": 902 }, { - "__id__": 906 + "__id__": 905 }, { - "__id__": 909 + "__id__": 908 }, { - "__id__": 912 + "__id__": 911 }, { - "__id__": 915 + "__id__": 914 }, { - "__id__": 918 + "__id__": 917 }, { - "__id__": 921 + "__id__": 920 }, { - "__id__": 924 + "__id__": 923 }, { - "__id__": 927 + "__id__": 926 }, { - "__id__": 930 + "__id__": 929 }, { - "__id__": 933 + "__id__": 932 }, { - "__id__": 936 + "__id__": 935 }, { - "__id__": 939 + "__id__": 938 }, { - "__id__": 942 + "__id__": 941 }, { - "__id__": 945 + "__id__": 944 }, { - "__id__": 948 + "__id__": 947 }, { - "__id__": 951 + "__id__": 950 }, { - "__id__": 954 + "__id__": 953 }, { - "__id__": 957 + "__id__": 956 }, { - "__id__": 960 + "__id__": 959 }, { - "__id__": 963 + "__id__": 962 }, { - "__id__": 966 + "__id__": 965 }, { - "__id__": 969 + "__id__": 968 }, { - "__id__": 972 + "__id__": 971 }, { - "__id__": 975 + "__id__": 974 }, { - "__id__": 978 + "__id__": 977 }, { - "__id__": 981 + "__id__": 980 }, { - "__id__": 984 + "__id__": 983 } ], "_active": true, "_components": [ { - "__id__": 987 + "__id__": 986 }, { - "__id__": 988 + "__id__": 987 } ], "_prefab": null, @@ -23760,16 +23745,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 790 + "__id__": 789 }, { - "__id__": 791 + "__id__": 790 } ], "_prefab": null, @@ -23808,7 +23793,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, @@ -23830,7 +23815,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 789 + "__id__": 788 }, "_enabled": true, "__prefab": null, @@ -23869,16 +23854,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 793 + "__id__": 792 }, { - "__id__": 794 + "__id__": 793 } ], "_prefab": null, @@ -23917,7 +23902,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 792 + "__id__": 791 }, "_enabled": true, "__prefab": null, @@ -23939,7 +23924,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 792 + "__id__": 791 }, "_enabled": true, "__prefab": null, @@ -23978,16 +23963,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 796 + "__id__": 795 }, { - "__id__": 797 + "__id__": 796 } ], "_prefab": null, @@ -24026,7 +24011,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 795 + "__id__": 794 }, "_enabled": true, "__prefab": null, @@ -24048,7 +24033,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 795 + "__id__": 794 }, "_enabled": true, "__prefab": null, @@ -24087,16 +24072,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 799 + "__id__": 798 }, { - "__id__": 800 + "__id__": 799 } ], "_prefab": null, @@ -24135,7 +24120,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 798 + "__id__": 797 }, "_enabled": true, "__prefab": null, @@ -24157,7 +24142,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 798 + "__id__": 797 }, "_enabled": true, "__prefab": null, @@ -24196,16 +24181,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 802 + "__id__": 801 }, { - "__id__": 803 + "__id__": 802 } ], "_prefab": null, @@ -24244,7 +24229,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 800 }, "_enabled": true, "__prefab": null, @@ -24266,7 +24251,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 801 + "__id__": 800 }, "_enabled": true, "__prefab": null, @@ -24305,16 +24290,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 805 + "__id__": 804 }, { - "__id__": 806 + "__id__": 805 } ], "_prefab": null, @@ -24353,7 +24338,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 804 + "__id__": 803 }, "_enabled": true, "__prefab": null, @@ -24375,7 +24360,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 804 + "__id__": 803 }, "_enabled": true, "__prefab": null, @@ -24414,16 +24399,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 808 + "__id__": 807 }, { - "__id__": 809 + "__id__": 808 } ], "_prefab": null, @@ -24462,7 +24447,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 806 }, "_enabled": true, "__prefab": null, @@ -24484,7 +24469,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 807 + "__id__": 806 }, "_enabled": true, "__prefab": null, @@ -24523,16 +24508,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 811 + "__id__": 810 }, { - "__id__": 812 + "__id__": 811 } ], "_prefab": null, @@ -24571,7 +24556,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 810 + "__id__": 809 }, "_enabled": true, "__prefab": null, @@ -24593,7 +24578,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 810 + "__id__": 809 }, "_enabled": true, "__prefab": null, @@ -24632,16 +24617,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 814 + "__id__": 813 }, { - "__id__": 815 + "__id__": 814 } ], "_prefab": null, @@ -24680,7 +24665,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 812 }, "_enabled": true, "__prefab": null, @@ -24702,7 +24687,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 812 }, "_enabled": true, "__prefab": null, @@ -24741,16 +24726,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 817 + "__id__": 816 }, { - "__id__": 818 + "__id__": 817 } ], "_prefab": null, @@ -24789,7 +24774,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 816 + "__id__": 815 }, "_enabled": true, "__prefab": null, @@ -24811,7 +24796,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 816 + "__id__": 815 }, "_enabled": true, "__prefab": null, @@ -24850,16 +24835,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 820 + "__id__": 819 }, { - "__id__": 821 + "__id__": 820 } ], "_prefab": null, @@ -24898,7 +24883,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 818 }, "_enabled": true, "__prefab": null, @@ -24920,7 +24905,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 818 }, "_enabled": true, "__prefab": null, @@ -24959,16 +24944,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 823 + "__id__": 822 }, { - "__id__": 824 + "__id__": 823 } ], "_prefab": null, @@ -25007,7 +24992,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 821 }, "_enabled": true, "__prefab": null, @@ -25029,7 +25014,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 822 + "__id__": 821 }, "_enabled": true, "__prefab": null, @@ -25068,16 +25053,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 826 + "__id__": 825 }, { - "__id__": 827 + "__id__": 826 } ], "_prefab": null, @@ -25116,7 +25101,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 824 }, "_enabled": true, "__prefab": null, @@ -25138,7 +25123,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 824 }, "_enabled": true, "__prefab": null, @@ -25177,16 +25162,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 829 + "__id__": 828 }, { - "__id__": 830 + "__id__": 829 } ], "_prefab": null, @@ -25225,7 +25210,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 828 + "__id__": 827 }, "_enabled": true, "__prefab": null, @@ -25247,7 +25232,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 828 + "__id__": 827 }, "_enabled": true, "__prefab": null, @@ -25286,16 +25271,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 832 + "__id__": 831 }, { - "__id__": 833 + "__id__": 832 } ], "_prefab": null, @@ -25334,7 +25319,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 831 + "__id__": 830 }, "_enabled": true, "__prefab": null, @@ -25356,7 +25341,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 831 + "__id__": 830 }, "_enabled": true, "__prefab": null, @@ -25395,16 +25380,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 835 + "__id__": 834 }, { - "__id__": 836 + "__id__": 835 } ], "_prefab": null, @@ -25443,7 +25428,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 834 + "__id__": 833 }, "_enabled": true, "__prefab": null, @@ -25465,7 +25450,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 834 + "__id__": 833 }, "_enabled": true, "__prefab": null, @@ -25504,16 +25489,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 838 + "__id__": 837 }, { - "__id__": 839 + "__id__": 838 } ], "_prefab": null, @@ -25552,7 +25537,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 837 + "__id__": 836 }, "_enabled": true, "__prefab": null, @@ -25574,7 +25559,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 837 + "__id__": 836 }, "_enabled": true, "__prefab": null, @@ -25613,16 +25598,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 841 + "__id__": 840 }, { - "__id__": 842 + "__id__": 841 } ], "_prefab": null, @@ -25661,7 +25646,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 840 + "__id__": 839 }, "_enabled": true, "__prefab": null, @@ -25683,7 +25668,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 840 + "__id__": 839 }, "_enabled": true, "__prefab": null, @@ -25722,16 +25707,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 844 + "__id__": 843 }, { - "__id__": 845 + "__id__": 844 } ], "_prefab": null, @@ -25770,7 +25755,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 842 }, "_enabled": true, "__prefab": null, @@ -25792,7 +25777,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 843 + "__id__": 842 }, "_enabled": true, "__prefab": null, @@ -25831,16 +25816,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 847 + "__id__": 846 }, { - "__id__": 848 + "__id__": 847 } ], "_prefab": null, @@ -25879,7 +25864,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 845 }, "_enabled": true, "__prefab": null, @@ -25901,7 +25886,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 845 }, "_enabled": true, "__prefab": null, @@ -25940,16 +25925,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 850 + "__id__": 849 }, { - "__id__": 851 + "__id__": 850 } ], "_prefab": null, @@ -25988,7 +25973,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 849 + "__id__": 848 }, "_enabled": true, "__prefab": null, @@ -26010,7 +25995,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 849 + "__id__": 848 }, "_enabled": true, "__prefab": null, @@ -26049,16 +26034,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 853 + "__id__": 852 }, { - "__id__": 854 + "__id__": 853 } ], "_prefab": null, @@ -26097,7 +26082,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 852 + "__id__": 851 }, "_enabled": true, "__prefab": null, @@ -26119,7 +26104,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 852 + "__id__": 851 }, "_enabled": true, "__prefab": null, @@ -26158,16 +26143,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 856 + "__id__": 855 }, { - "__id__": 857 + "__id__": 856 } ], "_prefab": null, @@ -26206,7 +26191,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 854 }, "_enabled": true, "__prefab": null, @@ -26228,7 +26213,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 855 + "__id__": 854 }, "_enabled": true, "__prefab": null, @@ -26267,16 +26252,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 859 + "__id__": 858 }, { - "__id__": 860 + "__id__": 859 } ], "_prefab": null, @@ -26315,7 +26300,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 857 }, "_enabled": true, "__prefab": null, @@ -26337,7 +26322,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 857 }, "_enabled": true, "__prefab": null, @@ -26376,16 +26361,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 862 + "__id__": 861 }, { - "__id__": 863 + "__id__": 862 } ], "_prefab": null, @@ -26424,7 +26409,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 860 }, "_enabled": true, "__prefab": null, @@ -26446,7 +26431,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 861 + "__id__": 860 }, "_enabled": true, "__prefab": null, @@ -26485,16 +26470,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 865 + "__id__": 864 }, { - "__id__": 866 + "__id__": 865 } ], "_prefab": null, @@ -26533,7 +26518,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 864 + "__id__": 863 }, "_enabled": true, "__prefab": null, @@ -26555,7 +26540,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 864 + "__id__": 863 }, "_enabled": true, "__prefab": null, @@ -26594,16 +26579,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 868 + "__id__": 867 }, { - "__id__": 869 + "__id__": 868 } ], "_prefab": null, @@ -26642,7 +26627,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 867 + "__id__": 866 }, "_enabled": true, "__prefab": null, @@ -26664,7 +26649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 867 + "__id__": 866 }, "_enabled": true, "__prefab": null, @@ -26703,16 +26688,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 871 + "__id__": 870 }, { - "__id__": 872 + "__id__": 871 } ], "_prefab": null, @@ -26751,7 +26736,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 870 + "__id__": 869 }, "_enabled": true, "__prefab": null, @@ -26773,7 +26758,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 870 + "__id__": 869 }, "_enabled": true, "__prefab": null, @@ -26812,16 +26797,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 874 + "__id__": 873 }, { - "__id__": 875 + "__id__": 874 } ], "_prefab": null, @@ -26860,7 +26845,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 873 + "__id__": 872 }, "_enabled": true, "__prefab": null, @@ -26882,7 +26867,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 873 + "__id__": 872 }, "_enabled": true, "__prefab": null, @@ -26921,16 +26906,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 877 + "__id__": 876 }, { - "__id__": 878 + "__id__": 877 } ], "_prefab": null, @@ -26969,7 +26954,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 876 + "__id__": 875 }, "_enabled": true, "__prefab": null, @@ -26991,7 +26976,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 876 + "__id__": 875 }, "_enabled": true, "__prefab": null, @@ -27030,16 +27015,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 880 + "__id__": 879 }, { - "__id__": 881 + "__id__": 880 } ], "_prefab": null, @@ -27078,7 +27063,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 879 + "__id__": 878 }, "_enabled": true, "__prefab": null, @@ -27100,7 +27085,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 879 + "__id__": 878 }, "_enabled": true, "__prefab": null, @@ -27139,16 +27124,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 883 + "__id__": 882 }, { - "__id__": 884 + "__id__": 883 } ], "_prefab": null, @@ -27187,7 +27172,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 882 + "__id__": 881 }, "_enabled": true, "__prefab": null, @@ -27209,7 +27194,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 882 + "__id__": 881 }, "_enabled": true, "__prefab": null, @@ -27248,16 +27233,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 886 + "__id__": 885 }, { - "__id__": 887 + "__id__": 886 } ], "_prefab": null, @@ -27296,7 +27281,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 885 + "__id__": 884 }, "_enabled": true, "__prefab": null, @@ -27318,7 +27303,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 885 + "__id__": 884 }, "_enabled": true, "__prefab": null, @@ -27357,16 +27342,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 889 + "__id__": 888 }, { - "__id__": 890 + "__id__": 889 } ], "_prefab": null, @@ -27405,7 +27390,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 888 + "__id__": 887 }, "_enabled": true, "__prefab": null, @@ -27427,7 +27412,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 888 + "__id__": 887 }, "_enabled": true, "__prefab": null, @@ -27466,16 +27451,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 892 + "__id__": 891 }, { - "__id__": 893 + "__id__": 892 } ], "_prefab": null, @@ -27514,7 +27499,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 891 + "__id__": 890 }, "_enabled": true, "__prefab": null, @@ -27536,7 +27521,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 891 + "__id__": 890 }, "_enabled": true, "__prefab": null, @@ -27575,16 +27560,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 895 + "__id__": 894 }, { - "__id__": 896 + "__id__": 895 } ], "_prefab": null, @@ -27623,7 +27608,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 893 }, "_enabled": true, "__prefab": null, @@ -27645,7 +27630,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 893 }, "_enabled": true, "__prefab": null, @@ -27684,16 +27669,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 898 + "__id__": 897 }, { - "__id__": 899 + "__id__": 898 } ], "_prefab": null, @@ -27732,7 +27717,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 897 + "__id__": 896 }, "_enabled": true, "__prefab": null, @@ -27754,7 +27739,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 897 + "__id__": 896 }, "_enabled": true, "__prefab": null, @@ -27793,16 +27778,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 901 + "__id__": 900 }, { - "__id__": 902 + "__id__": 901 } ], "_prefab": null, @@ -27841,7 +27826,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 900 + "__id__": 899 }, "_enabled": true, "__prefab": null, @@ -27863,7 +27848,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 900 + "__id__": 899 }, "_enabled": true, "__prefab": null, @@ -27902,16 +27887,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 904 + "__id__": 903 }, { - "__id__": 905 + "__id__": 904 } ], "_prefab": null, @@ -27950,7 +27935,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 902 }, "_enabled": true, "__prefab": null, @@ -27972,7 +27957,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 902 }, "_enabled": true, "__prefab": null, @@ -28011,16 +27996,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 907 + "__id__": 906 }, { - "__id__": 908 + "__id__": 907 } ], "_prefab": null, @@ -28059,7 +28044,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 906 + "__id__": 905 }, "_enabled": true, "__prefab": null, @@ -28081,7 +28066,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 906 + "__id__": 905 }, "_enabled": true, "__prefab": null, @@ -28120,16 +28105,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 910 + "__id__": 909 }, { - "__id__": 911 + "__id__": 910 } ], "_prefab": null, @@ -28168,7 +28153,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 908 }, "_enabled": true, "__prefab": null, @@ -28190,7 +28175,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 909 + "__id__": 908 }, "_enabled": true, "__prefab": null, @@ -28229,16 +28214,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 913 + "__id__": 912 }, { - "__id__": 914 + "__id__": 913 } ], "_prefab": null, @@ -28277,7 +28262,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 912 + "__id__": 911 }, "_enabled": true, "__prefab": null, @@ -28299,7 +28284,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 912 + "__id__": 911 }, "_enabled": true, "__prefab": null, @@ -28338,16 +28323,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 916 + "__id__": 915 }, { - "__id__": 917 + "__id__": 916 } ], "_prefab": null, @@ -28386,7 +28371,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 914 }, "_enabled": true, "__prefab": null, @@ -28408,7 +28393,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 915 + "__id__": 914 }, "_enabled": true, "__prefab": null, @@ -28447,16 +28432,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 919 + "__id__": 918 }, { - "__id__": 920 + "__id__": 919 } ], "_prefab": null, @@ -28495,7 +28480,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 917 }, "_enabled": true, "__prefab": null, @@ -28517,7 +28502,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 917 }, "_enabled": true, "__prefab": null, @@ -28556,16 +28541,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 922 + "__id__": 921 }, { - "__id__": 923 + "__id__": 922 } ], "_prefab": null, @@ -28604,7 +28589,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 920 }, "_enabled": true, "__prefab": null, @@ -28626,7 +28611,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 920 }, "_enabled": true, "__prefab": null, @@ -28665,16 +28650,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 925 + "__id__": 924 }, { - "__id__": 926 + "__id__": 925 } ], "_prefab": null, @@ -28713,7 +28698,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 924 + "__id__": 923 }, "_enabled": true, "__prefab": null, @@ -28735,7 +28720,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 924 + "__id__": 923 }, "_enabled": true, "__prefab": null, @@ -28774,16 +28759,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 928 + "__id__": 927 }, { - "__id__": 929 + "__id__": 928 } ], "_prefab": null, @@ -28822,7 +28807,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 926 }, "_enabled": true, "__prefab": null, @@ -28844,7 +28829,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 927 + "__id__": 926 }, "_enabled": true, "__prefab": null, @@ -28883,16 +28868,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 931 + "__id__": 930 }, { - "__id__": 932 + "__id__": 931 } ], "_prefab": null, @@ -28931,7 +28916,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 930 + "__id__": 929 }, "_enabled": true, "__prefab": null, @@ -28953,7 +28938,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 930 + "__id__": 929 }, "_enabled": true, "__prefab": null, @@ -28992,16 +28977,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 934 + "__id__": 933 }, { - "__id__": 935 + "__id__": 934 } ], "_prefab": null, @@ -29040,7 +29025,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 932 }, "_enabled": true, "__prefab": null, @@ -29062,7 +29047,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 932 }, "_enabled": true, "__prefab": null, @@ -29101,16 +29086,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 937 + "__id__": 936 }, { - "__id__": 938 + "__id__": 937 } ], "_prefab": null, @@ -29149,7 +29134,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 936 + "__id__": 935 }, "_enabled": true, "__prefab": null, @@ -29171,7 +29156,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 936 + "__id__": 935 }, "_enabled": true, "__prefab": null, @@ -29210,16 +29195,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 940 + "__id__": 939 }, { - "__id__": 941 + "__id__": 940 } ], "_prefab": null, @@ -29258,7 +29243,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 939 + "__id__": 938 }, "_enabled": true, "__prefab": null, @@ -29280,7 +29265,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 939 + "__id__": 938 }, "_enabled": true, "__prefab": null, @@ -29319,16 +29304,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 943 + "__id__": 942 }, { - "__id__": 944 + "__id__": 943 } ], "_prefab": null, @@ -29367,7 +29352,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 941 }, "_enabled": true, "__prefab": null, @@ -29389,7 +29374,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 941 }, "_enabled": true, "__prefab": null, @@ -29428,16 +29413,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 946 + "__id__": 945 }, { - "__id__": 947 + "__id__": 946 } ], "_prefab": null, @@ -29476,7 +29461,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 945 + "__id__": 944 }, "_enabled": true, "__prefab": null, @@ -29498,7 +29483,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 945 + "__id__": 944 }, "_enabled": true, "__prefab": null, @@ -29537,16 +29522,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 949 + "__id__": 948 }, { - "__id__": 950 + "__id__": 949 } ], "_prefab": null, @@ -29585,7 +29570,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 948 + "__id__": 947 }, "_enabled": true, "__prefab": null, @@ -29607,7 +29592,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 948 + "__id__": 947 }, "_enabled": true, "__prefab": null, @@ -29646,16 +29631,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 952 + "__id__": 951 }, { - "__id__": 953 + "__id__": 952 } ], "_prefab": null, @@ -29694,7 +29679,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 950 }, "_enabled": true, "__prefab": null, @@ -29716,7 +29701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 950 }, "_enabled": true, "__prefab": null, @@ -29755,16 +29740,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 955 + "__id__": 954 }, { - "__id__": 956 + "__id__": 955 } ], "_prefab": null, @@ -29803,7 +29788,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 954 + "__id__": 953 }, "_enabled": true, "__prefab": null, @@ -29825,7 +29810,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 954 + "__id__": 953 }, "_enabled": true, "__prefab": null, @@ -29864,16 +29849,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 958 + "__id__": 957 }, { - "__id__": 959 + "__id__": 958 } ], "_prefab": null, @@ -29912,7 +29897,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 956 }, "_enabled": true, "__prefab": null, @@ -29934,7 +29919,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 956 }, "_enabled": true, "__prefab": null, @@ -29973,16 +29958,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 961 + "__id__": 960 }, { - "__id__": 962 + "__id__": 961 } ], "_prefab": null, @@ -30021,7 +30006,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 959 }, "_enabled": true, "__prefab": null, @@ -30043,7 +30028,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 960 + "__id__": 959 }, "_enabled": true, "__prefab": null, @@ -30082,16 +30067,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 964 + "__id__": 963 }, { - "__id__": 965 + "__id__": 964 } ], "_prefab": null, @@ -30130,7 +30115,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 963 + "__id__": 962 }, "_enabled": true, "__prefab": null, @@ -30152,7 +30137,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 963 + "__id__": 962 }, "_enabled": true, "__prefab": null, @@ -30191,16 +30176,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 967 + "__id__": 966 }, { - "__id__": 968 + "__id__": 967 } ], "_prefab": null, @@ -30239,7 +30224,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 966 + "__id__": 965 }, "_enabled": true, "__prefab": null, @@ -30261,7 +30246,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 966 + "__id__": 965 }, "_enabled": true, "__prefab": null, @@ -30300,16 +30285,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 970 + "__id__": 969 }, { - "__id__": 971 + "__id__": 970 } ], "_prefab": null, @@ -30348,7 +30333,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 968 }, "_enabled": true, "__prefab": null, @@ -30370,7 +30355,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 968 }, "_enabled": true, "__prefab": null, @@ -30409,16 +30394,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 973 + "__id__": 972 }, { - "__id__": 974 + "__id__": 973 } ], "_prefab": null, @@ -30457,7 +30442,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 972 + "__id__": 971 }, "_enabled": true, "__prefab": null, @@ -30479,7 +30464,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 972 + "__id__": 971 }, "_enabled": true, "__prefab": null, @@ -30518,16 +30503,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 976 + "__id__": 975 }, { - "__id__": 977 + "__id__": 976 } ], "_prefab": null, @@ -30566,7 +30551,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 975 + "__id__": 974 }, "_enabled": true, "__prefab": null, @@ -30588,7 +30573,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 975 + "__id__": 974 }, "_enabled": true, "__prefab": null, @@ -30627,16 +30612,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 979 + "__id__": 978 }, { - "__id__": 980 + "__id__": 979 } ], "_prefab": null, @@ -30675,7 +30660,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 978 + "__id__": 977 }, "_enabled": true, "__prefab": null, @@ -30697,7 +30682,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 978 + "__id__": 977 }, "_enabled": true, "__prefab": null, @@ -30736,16 +30721,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 982 + "__id__": 981 }, { - "__id__": 983 + "__id__": 982 } ], "_prefab": null, @@ -30784,7 +30769,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 981 + "__id__": 980 }, "_enabled": true, "__prefab": null, @@ -30806,7 +30791,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 981 + "__id__": 980 }, "_enabled": true, "__prefab": null, @@ -30845,16 +30830,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 788 + "__id__": 787 }, "_children": [], "_active": true, "_components": [ { - "__id__": 985 + "__id__": 984 }, { - "__id__": 986 + "__id__": 985 } ], "_prefab": null, @@ -30893,7 +30878,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 984 + "__id__": 983 }, "_enabled": true, "__prefab": null, @@ -30915,7 +30900,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 984 + "__id__": 983 }, "_enabled": true, "__prefab": null, @@ -30954,7 +30939,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 787 }, "_enabled": true, "__prefab": null, @@ -30976,221 +30961,221 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 787 }, "_enabled": true, "__prefab": null, "_objects": [ { - "__id__": 989 + "__id__": 988 }, { - "__id__": 990 + "__id__": 989 } ], "_boosters": [ { - "__id__": 991 + "__id__": 990 } ], "_spawnPoints": [ { - "__id__": 789 + "__id__": 788 }, { - "__id__": 792 + "__id__": 791 }, { - "__id__": 795 + "__id__": 794 }, { - "__id__": 798 + "__id__": 797 }, { - "__id__": 801 + "__id__": 800 }, { - "__id__": 804 + "__id__": 803 }, { - "__id__": 807 + "__id__": 806 }, { - "__id__": 810 + "__id__": 809 }, { - "__id__": 813 + "__id__": 812 }, { - "__id__": 816 + "__id__": 815 }, { - "__id__": 819 + "__id__": 818 }, { - "__id__": 822 + "__id__": 821 }, { - "__id__": 825 + "__id__": 824 }, { - "__id__": 828 + "__id__": 827 }, { - "__id__": 831 + "__id__": 830 }, { - "__id__": 834 + "__id__": 833 }, { - "__id__": 837 + "__id__": 836 }, { - "__id__": 840 + "__id__": 839 }, { - "__id__": 843 + "__id__": 842 }, { - "__id__": 846 + "__id__": 845 }, { - "__id__": 849 + "__id__": 848 }, { - "__id__": 852 + "__id__": 851 }, { - "__id__": 855 + "__id__": 854 }, { - "__id__": 858 + "__id__": 857 }, { - "__id__": 861 + "__id__": 860 }, { - "__id__": 864 + "__id__": 863 }, { - "__id__": 867 + "__id__": 866 }, { - "__id__": 870 + "__id__": 869 }, { - "__id__": 873 + "__id__": 872 }, { - "__id__": 876 + "__id__": 875 }, { - "__id__": 879 + "__id__": 878 }, { - "__id__": 882 + "__id__": 881 }, { - "__id__": 885 + "__id__": 884 }, { - "__id__": 888 + "__id__": 887 }, { - "__id__": 891 + "__id__": 890 }, { - "__id__": 894 + "__id__": 893 }, { - "__id__": 897 + "__id__": 896 }, { - "__id__": 900 + "__id__": 899 }, { - "__id__": 903 + "__id__": 902 }, { - "__id__": 906 + "__id__": 905 }, { - "__id__": 909 + "__id__": 908 }, { - "__id__": 912 + "__id__": 911 }, { - "__id__": 915 + "__id__": 914 }, { - "__id__": 918 + "__id__": 917 }, { - "__id__": 921 + "__id__": 920 }, { - "__id__": 924 + "__id__": 923 }, { - "__id__": 927 + "__id__": 926 }, { - "__id__": 930 + "__id__": 929 }, { - "__id__": 933 + "__id__": 932 }, { - "__id__": 936 + "__id__": 935 }, { - "__id__": 939 + "__id__": 938 }, { - "__id__": 942 + "__id__": 941 }, { - "__id__": 945 + "__id__": 944 }, { - "__id__": 948 + "__id__": 947 }, { - "__id__": 951 + "__id__": 950 }, { - "__id__": 954 + "__id__": 953 }, { - "__id__": 957 + "__id__": 956 }, { - "__id__": 960 + "__id__": 959 }, { - "__id__": 963 + "__id__": 962 }, { - "__id__": 966 + "__id__": 965 }, { - "__id__": 969 + "__id__": 968 }, { - "__id__": 972 + "__id__": 971 }, { - "__id__": 975 + "__id__": 974 }, { - "__id__": 978 + "__id__": 977 }, { - "__id__": 981 + "__id__": 980 }, { - "__id__": 984 + "__id__": 983 } ], "_spawnTime": 1.5, @@ -31243,10 +31228,10 @@ "_active": true, "_components": [ { - "__id__": 993 + "__id__": 992 }, { - "__id__": 994 + "__id__": 993 } ], "_prefab": null, @@ -31285,7 +31270,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 992 + "__id__": 991 }, "_enabled": true, "__prefab": null, @@ -31307,7 +31292,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 992 + "__id__": 991 }, "_enabled": true, "__prefab": null, @@ -31352,7 +31337,7 @@ "_active": true, "_components": [ { - "__id__": 996 + "__id__": 995 } ], "_prefab": null, @@ -31391,7 +31376,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 995 + "__id__": 994 }, "_enabled": true, "__prefab": null, @@ -31417,16 +31402,16 @@ }, "_children": [ { - "__id__": 998 + "__id__": 997 }, { - "__id__": 1133 + "__id__": 1132 } ], "_active": true, "_components": [ { - "__id__": 1268 + "__id__": 1267 } ], "_prefab": null, @@ -31465,26 +31450,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 997 + "__id__": 996 }, "_children": [ { - "__id__": 999 + "__id__": 998 }, { - "__id__": 1004 + "__id__": 1003 } ], "_active": true, "_components": [ + { + "__id__": 1129 + }, { "__id__": 1130 }, { "__id__": 1131 - }, - { - "__id__": 1132 } ], "_prefab": null, @@ -31523,11 +31508,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 998 + "__id__": 997 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 999 + }, { "__id__": 1000 }, @@ -31536,9 +31524,6 @@ }, { "__id__": 1002 - }, - { - "__id__": 1003 } ], "_prefab": null, @@ -31577,7 +31562,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -31599,7 +31584,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -31638,7 +31623,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -31666,7 +31651,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 998 }, "_enabled": true, "__prefab": null, @@ -31694,20 +31679,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 998 + "__id__": 997 }, "_children": [ { - "__id__": 1005 + "__id__": 1004 }, { - "__id__": 1064 + "__id__": 1063 } ], "_active": false, "_components": [ { - "__id__": 1129 + "__id__": 1128 } ], "_prefab": null, @@ -31746,19 +31731,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1004 + "__id__": 1003 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1006 + "__id__": 1005 + }, + { + "__id__": 1061 }, { "__id__": 1062 - }, - { - "__id__": 1063 } ], "_prefab": null, @@ -31797,7 +31782,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1005 + "__id__": 1004 }, "_enabled": true, "__prefab": null, @@ -31810,60 +31795,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1007 + "__id__": 1006 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1008 + "__id__": 1007 }, "startSize": { - "__id__": 1008 + "__id__": 1007 }, "startSizeY": { - "__id__": 1009 + "__id__": 1008 }, "startSizeZ": { - "__id__": 1010 + "__id__": 1009 }, "startSpeed": { - "__id__": 1011 + "__id__": 1010 }, "startRotation3D": false, "startRotationX": { - "__id__": 1012 + "__id__": 1011 }, "startRotationY": { - "__id__": 1013 + "__id__": 1012 }, "startRotationZ": { - "__id__": 1014 + "__id__": 1013 }, "startRotation": { - "__id__": 1014 + "__id__": 1013 }, "startDelay": { - "__id__": 1015 + "__id__": 1014 }, "startLifetime": { - "__id__": 1016 + "__id__": 1015 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1017 + "__id__": 1016 }, "rateOverTime": { - "__id__": 1018 + "__id__": 1017 }, "rateOverDistance": { - "__id__": 1019 + "__id__": 1018 }, "bursts": [ { - "__id__": 1020 + "__id__": 1019 } ], "_renderCulling": false, @@ -31874,37 +31859,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1022 + "__id__": 1021 }, "_shapeModule": { - "__id__": 1024 + "__id__": 1023 }, "_sizeOvertimeModule": { - "__id__": 1026 + "__id__": 1025 }, "_velocityOvertimeModule": { - "__id__": 1032 + "__id__": 1031 }, "_forceOvertimeModule": { - "__id__": 1038 + "__id__": 1037 }, "_limitVelocityOvertimeModule": { - "__id__": 1042 + "__id__": 1041 }, "_rotationOvertimeModule": { - "__id__": 1047 + "__id__": 1046 }, "_textureAnimationModule": { - "__id__": 1051 + "__id__": 1050 }, "_noiseModule": { - "__id__": 1055 + "__id__": 1054 }, "_trailModule": { - "__id__": 1056 + "__id__": 1055 }, "renderer": { - "__id__": 1061 + "__id__": 1060 }, "_prewarm": false, "_capacity": 8, @@ -32004,7 +31989,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1021 + "__id__": 1020 } }, { @@ -32017,7 +32002,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1023 + "__id__": 1022 } }, { @@ -32046,7 +32031,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1025 + "__id__": 1024 }, "length": 5, "boxThickness": { @@ -32087,23 +32072,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1027 + "__id__": 1026 }, "x": { - "__id__": 1029 + "__id__": 1028 }, "y": { - "__id__": 1030 + "__id__": 1029 }, "z": { - "__id__": 1031 + "__id__": 1030 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1028 + "__id__": 1027 }, "multiplier": 1 }, @@ -32164,16 +32149,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1033 + "__id__": 1032 }, "y": { - "__id__": 1034 + "__id__": 1033 }, "z": { - "__id__": 1036 + "__id__": 1035 }, "speedModifier": { - "__id__": 1037 + "__id__": 1036 }, "space": 1 }, @@ -32187,7 +32172,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1035 + "__id__": 1034 }, "multiplier": 1 }, @@ -32242,13 +32227,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1039 + "__id__": 1038 }, "y": { - "__id__": 1040 + "__id__": 1039 }, "z": { - "__id__": 1041 + "__id__": 1040 }, "space": 1 }, @@ -32274,16 +32259,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1043 + "__id__": 1042 }, "limitY": { - "__id__": 1044 + "__id__": 1043 }, "limitZ": { - "__id__": 1045 + "__id__": 1044 }, "limit": { - "__id__": 1046 + "__id__": 1045 }, "dampen": 3, "separateAxes": false, @@ -32318,13 +32303,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1048 + "__id__": 1047 }, "y": { - "__id__": 1049 + "__id__": 1048 }, "z": { - "__id__": 1050 + "__id__": 1049 } }, { @@ -32358,10 +32343,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1052 + "__id__": 1051 }, "startFrame": { - "__id__": 1054 + "__id__": 1053 }, "cycleCount": 0, "_flipU": 0, @@ -32374,7 +32359,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1053 + "__id__": 1052 }, "multiplier": 1 }, @@ -32441,25 +32426,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1057 + "__id__": 1056 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1058 + "__id__": 1057 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1059 + "__id__": 1058 }, "colorOvertime": { - "__id__": 1060 + "__id__": 1059 }, "_space": 0, "_particleSystem": { - "__id__": 1006 + "__id__": 1005 } }, { @@ -32520,7 +32505,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1005 + "__id__": 1004 }, "_enabled": true, "__prefab": null, @@ -32532,7 +32517,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1005 + "__id__": 1004 }, "_enabled": true, "__prefab": null, @@ -32554,19 +32539,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1004 + "__id__": 1003 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1065 + "__id__": 1064 + }, + { + "__id__": 1126 }, { "__id__": 1127 - }, - { - "__id__": 1128 } ], "_prefab": null, @@ -32605,7 +32590,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1064 + "__id__": 1063 }, "_enabled": true, "__prefab": null, @@ -32618,60 +32603,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1066 + "__id__": 1065 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1067 + "__id__": 1066 }, "startSize": { - "__id__": 1067 + "__id__": 1066 }, "startSizeY": { - "__id__": 1068 + "__id__": 1067 }, "startSizeZ": { - "__id__": 1069 + "__id__": 1068 }, "startSpeed": { - "__id__": 1070 + "__id__": 1069 }, "startRotation3D": false, "startRotationX": { - "__id__": 1071 + "__id__": 1070 }, "startRotationY": { - "__id__": 1072 + "__id__": 1071 }, "startRotationZ": { - "__id__": 1073 + "__id__": 1072 }, "startRotation": { - "__id__": 1073 + "__id__": 1072 }, "startDelay": { - "__id__": 1074 + "__id__": 1073 }, "startLifetime": { - "__id__": 1075 + "__id__": 1074 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1076 + "__id__": 1075 }, "rateOverTime": { - "__id__": 1077 + "__id__": 1076 }, "rateOverDistance": { - "__id__": 1078 + "__id__": 1077 }, "bursts": [ { - "__id__": 1079 + "__id__": 1078 } ], "_renderCulling": false, @@ -32682,37 +32667,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1081 + "__id__": 1080 }, "_shapeModule": { - "__id__": 1090 + "__id__": 1089 }, "_sizeOvertimeModule": { - "__id__": 1092 + "__id__": 1091 }, "_velocityOvertimeModule": { - "__id__": 1098 + "__id__": 1097 }, "_forceOvertimeModule": { - "__id__": 1103 + "__id__": 1102 }, "_limitVelocityOvertimeModule": { - "__id__": 1107 + "__id__": 1106 }, "_rotationOvertimeModule": { - "__id__": 1112 + "__id__": 1111 }, "_textureAnimationModule": { - "__id__": 1116 + "__id__": 1115 }, "_noiseModule": { - "__id__": 1120 + "__id__": 1119 }, "_trailModule": { - "__id__": 1121 + "__id__": 1120 }, "renderer": { - "__id__": 1126 + "__id__": 1125 }, "_prewarm": false, "_capacity": 100, @@ -32810,7 +32795,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1080 + "__id__": 1079 } }, { @@ -32823,38 +32808,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1082 + "__id__": 1081 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1083 + "__id__": 1082 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1083 + }, { "__id__": 1084 }, { "__id__": 1085 - }, - { - "__id__": 1086 } ], "alphaKeys": [ + { + "__id__": 1086 + }, { "__id__": 1087 }, { "__id__": 1088 - }, - { - "__id__": 1089 } ], "mode": 0 @@ -32922,7 +32907,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1091 + "__id__": 1090 }, "length": 5, "boxThickness": { @@ -32963,23 +32948,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1093 + "__id__": 1092 }, "x": { - "__id__": 1095 + "__id__": 1094 }, "y": { - "__id__": 1096 + "__id__": 1095 }, "z": { - "__id__": 1097 + "__id__": 1096 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1094 + "__id__": 1093 }, "multiplier": 1 }, @@ -33040,16 +33025,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1099 + "__id__": 1098 }, "y": { - "__id__": 1100 + "__id__": 1099 }, "z": { - "__id__": 1101 + "__id__": 1100 }, "speedModifier": { - "__id__": 1102 + "__id__": 1101 }, "space": 1 }, @@ -33081,13 +33066,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1104 + "__id__": 1103 }, "y": { - "__id__": 1105 + "__id__": 1104 }, "z": { - "__id__": 1106 + "__id__": 1105 }, "space": 1 }, @@ -33113,16 +33098,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1108 + "__id__": 1107 }, "limitY": { - "__id__": 1109 + "__id__": 1108 }, "limitZ": { - "__id__": 1110 + "__id__": 1109 }, "limit": { - "__id__": 1111 + "__id__": 1110 }, "dampen": 0.05, "separateAxes": false, @@ -33157,13 +33142,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1113 + "__id__": 1112 }, "y": { - "__id__": 1114 + "__id__": 1113 }, "z": { - "__id__": 1115 + "__id__": 1114 } }, { @@ -33195,10 +33180,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1117 + "__id__": 1116 }, "startFrame": { - "__id__": 1119 + "__id__": 1118 }, "cycleCount": 1, "_flipU": 0, @@ -33211,7 +33196,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1118 + "__id__": 1117 }, "multiplier": 1 }, @@ -33279,25 +33264,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1122 + "__id__": 1121 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1123 + "__id__": 1122 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1124 + "__id__": 1123 }, "colorOvertime": { - "__id__": 1125 + "__id__": 1124 }, "_space": 0, "_particleSystem": { - "__id__": 1065 + "__id__": 1064 } }, { @@ -33358,7 +33343,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1064 + "__id__": 1063 }, "_enabled": true, "__prefab": null, @@ -33370,7 +33355,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1064 + "__id__": 1063 }, "_enabled": true, "__prefab": null, @@ -33392,7 +33377,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1004 + "__id__": 1003 }, "_enabled": true, "__prefab": null, @@ -33414,7 +33399,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 998 + "__id__": 997 }, "_enabled": true, "__prefab": null, @@ -33436,15 +33421,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 998 + "__id__": 997 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1002 + "__id__": 1001 }, "_animation": { - "__id__": 1132 + "__id__": 1131 }, "_force": 40, "_soundFx": { @@ -33460,7 +33445,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 998 + "__id__": 997 }, "_enabled": true, "__prefab": null, @@ -33483,26 +33468,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 997 + "__id__": 996 }, "_children": [ { - "__id__": 1134 + "__id__": 1133 }, { - "__id__": 1139 + "__id__": 1138 } ], "_active": true, "_components": [ + { + "__id__": 1264 + }, { "__id__": 1265 }, { "__id__": 1266 - }, - { - "__id__": 1267 } ], "_prefab": null, @@ -33541,11 +33526,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1133 + "__id__": 1132 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1134 + }, { "__id__": 1135 }, @@ -33554,9 +33542,6 @@ }, { "__id__": 1137 - }, - { - "__id__": 1138 } ], "_prefab": null, @@ -33595,7 +33580,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -33617,7 +33602,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -33656,7 +33641,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -33684,7 +33669,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1134 + "__id__": 1133 }, "_enabled": true, "__prefab": null, @@ -33712,20 +33697,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1133 + "__id__": 1132 }, "_children": [ { - "__id__": 1140 + "__id__": 1139 }, { - "__id__": 1199 + "__id__": 1198 } ], "_active": false, "_components": [ { - "__id__": 1264 + "__id__": 1263 } ], "_prefab": null, @@ -33764,19 +33749,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1139 + "__id__": 1138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1141 + "__id__": 1140 + }, + { + "__id__": 1196 }, { "__id__": 1197 - }, - { - "__id__": 1198 } ], "_prefab": null, @@ -33815,7 +33800,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1140 + "__id__": 1139 }, "_enabled": true, "__prefab": null, @@ -33828,60 +33813,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1142 + "__id__": 1141 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1143 + "__id__": 1142 }, "startSize": { - "__id__": 1143 + "__id__": 1142 }, "startSizeY": { - "__id__": 1144 + "__id__": 1143 }, "startSizeZ": { - "__id__": 1145 + "__id__": 1144 }, "startSpeed": { - "__id__": 1146 + "__id__": 1145 }, "startRotation3D": false, "startRotationX": { - "__id__": 1147 + "__id__": 1146 }, "startRotationY": { - "__id__": 1148 + "__id__": 1147 }, "startRotationZ": { - "__id__": 1149 + "__id__": 1148 }, "startRotation": { - "__id__": 1149 + "__id__": 1148 }, "startDelay": { - "__id__": 1150 + "__id__": 1149 }, "startLifetime": { - "__id__": 1151 + "__id__": 1150 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1152 + "__id__": 1151 }, "rateOverTime": { - "__id__": 1153 + "__id__": 1152 }, "rateOverDistance": { - "__id__": 1154 + "__id__": 1153 }, "bursts": [ { - "__id__": 1155 + "__id__": 1154 } ], "_renderCulling": false, @@ -33892,37 +33877,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1157 + "__id__": 1156 }, "_shapeModule": { - "__id__": 1159 + "__id__": 1158 }, "_sizeOvertimeModule": { - "__id__": 1161 + "__id__": 1160 }, "_velocityOvertimeModule": { - "__id__": 1167 + "__id__": 1166 }, "_forceOvertimeModule": { - "__id__": 1173 + "__id__": 1172 }, "_limitVelocityOvertimeModule": { - "__id__": 1177 + "__id__": 1176 }, "_rotationOvertimeModule": { - "__id__": 1182 + "__id__": 1181 }, "_textureAnimationModule": { - "__id__": 1186 + "__id__": 1185 }, "_noiseModule": { - "__id__": 1190 + "__id__": 1189 }, "_trailModule": { - "__id__": 1191 + "__id__": 1190 }, "renderer": { - "__id__": 1196 + "__id__": 1195 }, "_prewarm": false, "_capacity": 8, @@ -34022,7 +34007,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1156 + "__id__": 1155 } }, { @@ -34035,7 +34020,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1158 + "__id__": 1157 } }, { @@ -34064,7 +34049,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1160 + "__id__": 1159 }, "length": 5, "boxThickness": { @@ -34105,23 +34090,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1162 + "__id__": 1161 }, "x": { - "__id__": 1164 + "__id__": 1163 }, "y": { - "__id__": 1165 + "__id__": 1164 }, "z": { - "__id__": 1166 + "__id__": 1165 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1163 + "__id__": 1162 }, "multiplier": 1 }, @@ -34182,16 +34167,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1168 + "__id__": 1167 }, "y": { - "__id__": 1169 + "__id__": 1168 }, "z": { - "__id__": 1171 + "__id__": 1170 }, "speedModifier": { - "__id__": 1172 + "__id__": 1171 }, "space": 1 }, @@ -34205,7 +34190,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1170 + "__id__": 1169 }, "multiplier": 1 }, @@ -34260,13 +34245,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1174 + "__id__": 1173 }, "y": { - "__id__": 1175 + "__id__": 1174 }, "z": { - "__id__": 1176 + "__id__": 1175 }, "space": 1 }, @@ -34292,16 +34277,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1178 + "__id__": 1177 }, "limitY": { - "__id__": 1179 + "__id__": 1178 }, "limitZ": { - "__id__": 1180 + "__id__": 1179 }, "limit": { - "__id__": 1181 + "__id__": 1180 }, "dampen": 3, "separateAxes": false, @@ -34336,13 +34321,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1183 + "__id__": 1182 }, "y": { - "__id__": 1184 + "__id__": 1183 }, "z": { - "__id__": 1185 + "__id__": 1184 } }, { @@ -34376,10 +34361,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1187 + "__id__": 1186 }, "startFrame": { - "__id__": 1189 + "__id__": 1188 }, "cycleCount": 0, "_flipU": 0, @@ -34392,7 +34377,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1188 + "__id__": 1187 }, "multiplier": 1 }, @@ -34459,25 +34444,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1192 + "__id__": 1191 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1193 + "__id__": 1192 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1194 + "__id__": 1193 }, "colorOvertime": { - "__id__": 1195 + "__id__": 1194 }, "_space": 0, "_particleSystem": { - "__id__": 1141 + "__id__": 1140 } }, { @@ -34538,7 +34523,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1140 + "__id__": 1139 }, "_enabled": true, "__prefab": null, @@ -34550,7 +34535,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1140 + "__id__": 1139 }, "_enabled": true, "__prefab": null, @@ -34572,19 +34557,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1139 + "__id__": 1138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1200 + "__id__": 1199 + }, + { + "__id__": 1261 }, { "__id__": 1262 - }, - { - "__id__": 1263 } ], "_prefab": null, @@ -34623,7 +34608,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1198 }, "_enabled": true, "__prefab": null, @@ -34636,60 +34621,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1201 + "__id__": 1200 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1202 + "__id__": 1201 }, "startSize": { - "__id__": 1202 + "__id__": 1201 }, "startSizeY": { - "__id__": 1203 + "__id__": 1202 }, "startSizeZ": { - "__id__": 1204 + "__id__": 1203 }, "startSpeed": { - "__id__": 1205 + "__id__": 1204 }, "startRotation3D": false, "startRotationX": { - "__id__": 1206 + "__id__": 1205 }, "startRotationY": { - "__id__": 1207 + "__id__": 1206 }, "startRotationZ": { - "__id__": 1208 + "__id__": 1207 }, "startRotation": { - "__id__": 1208 + "__id__": 1207 }, "startDelay": { - "__id__": 1209 + "__id__": 1208 }, "startLifetime": { - "__id__": 1210 + "__id__": 1209 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1211 + "__id__": 1210 }, "rateOverTime": { - "__id__": 1212 + "__id__": 1211 }, "rateOverDistance": { - "__id__": 1213 + "__id__": 1212 }, "bursts": [ { - "__id__": 1214 + "__id__": 1213 } ], "_renderCulling": false, @@ -34700,37 +34685,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1216 + "__id__": 1215 }, "_shapeModule": { - "__id__": 1225 + "__id__": 1224 }, "_sizeOvertimeModule": { - "__id__": 1227 + "__id__": 1226 }, "_velocityOvertimeModule": { - "__id__": 1233 + "__id__": 1232 }, "_forceOvertimeModule": { - "__id__": 1238 + "__id__": 1237 }, "_limitVelocityOvertimeModule": { - "__id__": 1242 + "__id__": 1241 }, "_rotationOvertimeModule": { - "__id__": 1247 + "__id__": 1246 }, "_textureAnimationModule": { - "__id__": 1251 + "__id__": 1250 }, "_noiseModule": { - "__id__": 1255 + "__id__": 1254 }, "_trailModule": { - "__id__": 1256 + "__id__": 1255 }, "renderer": { - "__id__": 1261 + "__id__": 1260 }, "_prewarm": false, "_capacity": 100, @@ -34828,7 +34813,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1215 + "__id__": 1214 } }, { @@ -34841,38 +34826,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1217 + "__id__": 1216 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1218 + "__id__": 1217 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1218 + }, { "__id__": 1219 }, { "__id__": 1220 - }, - { - "__id__": 1221 } ], "alphaKeys": [ + { + "__id__": 1221 + }, { "__id__": 1222 }, { "__id__": 1223 - }, - { - "__id__": 1224 } ], "mode": 0 @@ -34940,7 +34925,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1226 + "__id__": 1225 }, "length": 5, "boxThickness": { @@ -34981,23 +34966,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1228 + "__id__": 1227 }, "x": { - "__id__": 1230 + "__id__": 1229 }, "y": { - "__id__": 1231 + "__id__": 1230 }, "z": { - "__id__": 1232 + "__id__": 1231 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1229 + "__id__": 1228 }, "multiplier": 1 }, @@ -35058,16 +35043,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1234 + "__id__": 1233 }, "y": { - "__id__": 1235 + "__id__": 1234 }, "z": { - "__id__": 1236 + "__id__": 1235 }, "speedModifier": { - "__id__": 1237 + "__id__": 1236 }, "space": 1 }, @@ -35099,13 +35084,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1239 + "__id__": 1238 }, "y": { - "__id__": 1240 + "__id__": 1239 }, "z": { - "__id__": 1241 + "__id__": 1240 }, "space": 1 }, @@ -35131,16 +35116,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1243 + "__id__": 1242 }, "limitY": { - "__id__": 1244 + "__id__": 1243 }, "limitZ": { - "__id__": 1245 + "__id__": 1244 }, "limit": { - "__id__": 1246 + "__id__": 1245 }, "dampen": 0.05, "separateAxes": false, @@ -35175,13 +35160,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1248 + "__id__": 1247 }, "y": { - "__id__": 1249 + "__id__": 1248 }, "z": { - "__id__": 1250 + "__id__": 1249 } }, { @@ -35213,10 +35198,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1252 + "__id__": 1251 }, "startFrame": { - "__id__": 1254 + "__id__": 1253 }, "cycleCount": 1, "_flipU": 0, @@ -35229,7 +35214,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1253 + "__id__": 1252 }, "multiplier": 1 }, @@ -35297,25 +35282,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1257 + "__id__": 1256 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1258 + "__id__": 1257 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1259 + "__id__": 1258 }, "colorOvertime": { - "__id__": 1260 + "__id__": 1259 }, "_space": 0, "_particleSystem": { - "__id__": 1200 + "__id__": 1199 } }, { @@ -35376,7 +35361,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1198 }, "_enabled": true, "__prefab": null, @@ -35388,7 +35373,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1199 + "__id__": 1198 }, "_enabled": true, "__prefab": null, @@ -35410,7 +35395,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1139 + "__id__": 1138 }, "_enabled": true, "__prefab": null, @@ -35432,7 +35417,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1132 }, "_enabled": true, "__prefab": null, @@ -35454,15 +35439,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1132 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1137 + "__id__": 1136 }, "_animation": { - "__id__": 1267 + "__id__": 1266 }, "_force": 40, "_soundFx": { @@ -35478,7 +35463,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1132 }, "_enabled": true, "__prefab": null, @@ -35501,7 +35486,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 997 + "__id__": 996 }, "_enabled": true, "__prefab": null, @@ -35527,19 +35512,19 @@ }, "_children": [ { - "__id__": 1270 + "__id__": 1269 }, { - "__id__": 1273 + "__id__": 1272 } ], "_active": true, "_components": [ { - "__id__": 1278 + "__id__": 1276 }, { - "__id__": 1279 + "__id__": 1277 } ], "_prefab": null, @@ -35578,16 +35563,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1268 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1271 + "__id__": 1270 }, { - "__id__": 1272 + "__id__": 1271 } ], "_prefab": null, @@ -35626,7 +35611,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1269 }, "_enabled": true, "__prefab": null, @@ -35648,7 +35633,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1270 + "__id__": 1269 }, "_enabled": true, "__prefab": null, @@ -35684,22 +35669,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1269 + "__id__": 1268 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1273 + }, { "__id__": 1274 }, { "__id__": 1275 - }, - { - "__id__": 1276 - }, - { - "__id__": 1277 } ], "_prefab": null, @@ -35738,7 +35720,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1273 + "__id__": 1272 }, "_enabled": true, "__prefab": null, @@ -35760,7 +35742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1273 + "__id__": 1272 }, "_enabled": true, "__prefab": null, @@ -35825,7 +35807,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1273 + "__id__": 1272 }, "_enabled": true, "__prefab": null, @@ -35849,25 +35831,13 @@ "_lockFlags": 0, "_id": "31Fx2973dAt4puJYDiv8Pp" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1273 - }, - "_enabled": true, - "__prefab": null, - "_id": "48xN1y1cZE2q+KWSB/x1mb" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1268 }, "_enabled": true, "__prefab": null, @@ -35889,22 +35859,22 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1268 }, "_enabled": true, "__prefab": null, "_popup": { - "__id__": 1270 + "__id__": 1269 }, "_label": { - "__id__": 1275 + "__id__": 1274 }, "_stickers": [ { - "__id__": 1280 + "__id__": 1278 }, { - "__id__": 1281 + "__id__": 1279 } ], "_id": "9cMcomAOVM2Yt5reR6jwPs" @@ -35967,10 +35937,10 @@ "__expectedType__": "cc.Prefab" }, "_topContainer": { - "__id__": 1284 + "__id__": 1282 }, "_ballHolder": { - "__id__": 995 + "__id__": 994 }, "_ballSpawnPosition": { "__type__": "cc.Vec3", @@ -36017,7 +35987,7 @@ "_active": true, "_components": [ { - "__id__": 1285 + "__id__": 1283 } ], "_prefab": null, @@ -36056,7 +36026,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1284 + "__id__": 1282 }, "_enabled": true, "__prefab": null, @@ -36148,30 +36118,30 @@ "instance": null, "targetOverrides": [ { - "__id__": 1290 + "__id__": 1288 + }, + { + "__id__": 1291 }, { "__id__": 1293 }, { - "__id__": 1295 + "__id__": 1296 }, { "__id__": 1298 }, { - "__id__": 1300 - }, - { - "__id__": 1303 + "__id__": 1301 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 587 + "__id__": 586 }, { - "__id__": 606 + "__id__": 605 }, { "__id__": 153 @@ -36184,20 +36154,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 606 + "__id__": 605 }, "sourceInfo": { - "__id__": 1291 + "__id__": 1289 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 606 + "__id__": 605 }, "targetInfo": { - "__id__": 1292 + "__id__": 1290 } }, { @@ -36215,7 +36185,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 489 + "__id__": 488 }, "sourceInfo": null, "propertyPath": [ @@ -36225,7 +36195,7 @@ "__id__": 153 }, "targetInfo": { - "__id__": 1294 + "__id__": 1292 } }, { @@ -36237,20 +36207,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 587 + "__id__": 586 }, "sourceInfo": { - "__id__": 1296 + "__id__": 1294 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 587 + "__id__": 586 }, "targetInfo": { - "__id__": 1297 + "__id__": 1295 } }, { @@ -36268,7 +36238,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 452 + "__id__": 451 }, "sourceInfo": null, "propertyPath": [ @@ -36278,7 +36248,7 @@ "__id__": 387 }, "targetInfo": { - "__id__": 1299 + "__id__": 1297 } }, { @@ -36293,7 +36263,7 @@ "__id__": 153 }, "sourceInfo": { - "__id__": 1301 + "__id__": 1299 }, "propertyPath": [ "_trailModule", @@ -36303,7 +36273,7 @@ "__id__": 153 }, "targetInfo": { - "__id__": 1302 + "__id__": 1300 } }, { @@ -36324,7 +36294,7 @@ "__id__": 153 }, "sourceInfo": { - "__id__": 1304 + "__id__": 1302 }, "propertyPath": [ "_trailModule", @@ -36334,7 +36304,7 @@ "__id__": 153 }, "targetInfo": { - "__id__": 1305 + "__id__": 1303 } }, { @@ -36352,28 +36322,28 @@ { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 1307 + "__id__": 1305 }, "shadows": { - "__id__": 1308 + "__id__": 1306 }, "_skybox": { - "__id__": 1309 + "__id__": 1307 }, "fog": { - "__id__": 1310 + "__id__": 1308 }, "octree": { - "__id__": 1311 + "__id__": 1309 }, "skin": { - "__id__": 1312 + "__id__": 1310 }, "lightProbeInfo": { - "__id__": 1313 + "__id__": 1311 }, "postSettings": { - "__id__": 1314 + "__id__": 1312 }, "bakedWithStationaryMainLight": false, "bakedWithHighpLightmap": false diff --git a/assets/_Game/Scenes/Park-theme.scene b/assets/_Game/Scenes/Park-theme.scene index 8a98711..bfe883c 100644 --- a/assets/_Game/Scenes/Park-theme.scene +++ b/assets/_Game/Scenes/Park-theme.scene @@ -26,7 +26,7 @@ "_active": true, "_components": [], "_prefab": { - "__id__": 1285 + "__id__": 1283 }, "_lpos": { "__type__": "cc.Vec3", @@ -57,7 +57,7 @@ }, "autoReleaseAssets": false, "_globals": { - "__id__": 1299 + "__id__": 1297 }, "_id": "0c199331-f6e2-464b-bda1-8545faafa882" }, @@ -80,19 +80,19 @@ "__id__": 9 }, { - "__id__": 1280 + "__id__": 1278 } ], "_active": true, "_components": [ + { + "__id__": 1280 + }, + { + "__id__": 1281 + }, { "__id__": 1282 - }, - { - "__id__": 1283 - }, - { - "__id__": 1284 } ], "_prefab": null, @@ -376,37 +376,37 @@ "__id__": 131 }, { - "__id__": 642 + "__id__": 641 }, { - "__id__": 717 + "__id__": 716 }, { - "__id__": 779 + "__id__": 778 }, { - "__id__": 784 + "__id__": 783 }, { - "__id__": 988 + "__id__": 987 }, { - "__id__": 991 + "__id__": 990 }, { - "__id__": 993 + "__id__": 992 }, { - "__id__": 1265 + "__id__": 1264 } ], "_active": true, "_components": [ { - "__id__": 1278 + "__id__": 1276 }, { - "__id__": 1279 + "__id__": 1277 } ], "_prefab": null, @@ -5326,13 +5326,13 @@ "__id__": 135 }, { - "__id__": 563 + "__id__": 562 }, { - "__id__": 632 + "__id__": 631 }, { - "__id__": 637 + "__id__": 636 } ], "_active": true, @@ -5504,7 +5504,7 @@ "__id__": 146 }, { - "__id__": 557 + "__id__": 556 } ], "_prefab": null, @@ -5921,7 +5921,7 @@ "_minAngle": 10, "_maxAngle": 170, "_soundFx": { - "__id__": 557 + "__id__": 556 }, "_goalSound": { "__uuid__": "4ce9d2c6-98c5-4d05-94af-70193bb795fe", @@ -5936,6 +5936,9 @@ "__expectedType__": "cc.AudioClip" }, "_rewards": [ + { + "__id__": 557 + }, { "__id__": 558 }, @@ -5947,9 +5950,6 @@ }, { "__id__": 561 - }, - { - "__id__": 562 } ], "_id": "e5qVdeXFZOu6/MatkdDEG6" @@ -5966,10 +5966,10 @@ "_active": true, "_components": [ { - "__id__": 555 + "__id__": 554 }, { - "__id__": 556 + "__id__": 555 } ], "_prefab": null, @@ -6015,11 +6015,14 @@ "__id__": 147 }, { - "__id__": 490 + "__id__": 489 } ], "_active": true, "_components": [ + { + "__id__": 550 + }, { "__id__": 551 }, @@ -6028,9 +6031,6 @@ }, { "__id__": 553 - }, - { - "__id__": 554 } ], "_prefab": null, @@ -6073,10 +6073,10 @@ }, "_children": [ { - "__id__": 540 + "__id__": 539 }, { - "__id__": 544 + "__id__": 543 }, { "__id__": 148 @@ -6084,14 +6084,14 @@ ], "_active": true, "_components": [ + { + "__id__": 547 + }, { "__id__": 548 }, { "__id__": 549 - }, - { - "__id__": 550 } ], "_prefab": null, @@ -6137,22 +6137,22 @@ "__id__": 149 }, { - "__id__": 503 + "__id__": 502 }, { - "__id__": 494 + "__id__": 493 }, { - "__id__": 525 + "__id__": 524 } ], "_active": true, "_components": [ { - "__id__": 538 + "__id__": 537 }, { - "__id__": 539 + "__id__": 538 } ], "_prefab": null, @@ -6201,19 +6201,19 @@ "__id__": 150 }, { - "__id__": 456 + "__id__": 455 } ], "_active": true, "_components": [ + { + "__id__": 485 + }, { "__id__": 486 }, { "__id__": 487 - }, - { - "__id__": 488 } ], "_prefab": null, @@ -9592,14 +9592,14 @@ ], "_active": false, "_components": [ + { + "__id__": 448 + }, { "__id__": 449 }, { "__id__": 450 - }, - { - "__id__": 451 } ], "_prefab": null, @@ -9757,19 +9757,19 @@ "__id__": 383 }, { - "__id__": 427 + "__id__": 426 }, { - "__id__": 439 + "__id__": 438 } ], "_active": true, "_components": [ { - "__id__": 447 + "__id__": 446 }, { - "__id__": 448 + "__id__": 447 } ], "_prefab": null, @@ -9985,6 +9985,9 @@ ], "_active": true, "_components": [ + { + "__id__": 422 + }, { "__id__": 423 }, @@ -9993,9 +9996,6 @@ }, { "__id__": 425 - }, - { - "__id__": 426 } ], "_prefab": null, @@ -10043,6 +10043,9 @@ ], "_active": true, "_components": [ + { + "__id__": 418 + }, { "__id__": 419 }, @@ -10051,9 +10054,6 @@ }, { "__id__": 421 - }, - { - "__id__": 422 } ], "_prefab": null, @@ -10105,10 +10105,10 @@ "_active": true, "_components": [ { - "__id__": 417 + "__id__": 416 }, { - "__id__": 418 + "__id__": 417 } ], "_prefab": null, @@ -10264,22 +10264,22 @@ "__id__": 395 }, { - "__id__": 406 + "__id__": 405 }, { - "__id__": 410 + "__id__": 409 } ], "_active": true, "_components": [ + { + "__id__": 413 + }, { "__id__": 414 }, { "__id__": 415 - }, - { - "__id__": 416 } ], "_prefab": null, @@ -10331,10 +10331,10 @@ "_active": false, "_components": [ { - "__id__": 404 + "__id__": 403 }, { - "__id__": 405 + "__id__": 404 } ], "_prefab": null, @@ -10495,9 +10495,6 @@ }, { "__id__": 402 - }, - { - "__id__": 403 } ], "_prefab": null, @@ -10647,18 +10644,6 @@ "_lockFlags": 0, "_id": "9d1dXZleNEYo0PraCOGsU1" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 399 - }, - "_enabled": true, - "__prefab": null, - "_id": "3aIIwlJ+BJmp6k0VBid2/K" - }, { "__type__": "cc.UITransform", "_name": "", @@ -10722,14 +10707,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 406 + }, { "__id__": 407 }, { "__id__": 408 - }, - { - "__id__": 409 } ], "_prefab": null, @@ -10768,7 +10753,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10790,7 +10775,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10855,7 +10840,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 406 + "__id__": 405 }, "_enabled": true, "__prefab": null, @@ -10890,14 +10875,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 410 + }, { "__id__": 411 }, { "__id__": 412 - }, - { - "__id__": 413 } ], "_prefab": null, @@ -10936,7 +10921,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 409 }, "_enabled": true, "__prefab": null, @@ -10958,7 +10943,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 409 }, "_enabled": true, "__prefab": null, @@ -11023,7 +11008,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 409 }, "_enabled": true, "__prefab": null, @@ -11119,10 +11104,10 @@ "_enabled": true, "__prefab": null, "_bg": { - "__id__": 415 + "__id__": 414 }, "_scoreText": { - "__id__": 412 + "__id__": 411 }, "_topText": { "__id__": 401 @@ -11424,14 +11409,17 @@ }, "_children": [ { - "__id__": 428 + "__id__": 427 }, { - "__id__": 431 + "__id__": 430 } ], "_active": true, "_components": [ + { + "__id__": 433 + }, { "__id__": 434 }, @@ -11439,10 +11427,7 @@ "__id__": 435 }, { - "__id__": 436 - }, - { - "__id__": 438 + "__id__": 437 } ], "_prefab": null, @@ -11481,16 +11466,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 427 + "__id__": 426 }, "_children": [], "_active": true, "_components": [ { - "__id__": 429 + "__id__": 428 }, { - "__id__": 430 + "__id__": 429 } ], "_prefab": null, @@ -11529,7 +11514,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, @@ -11551,7 +11536,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 428 + "__id__": 427 }, "_enabled": true, "__prefab": null, @@ -11616,16 +11601,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 427 + "__id__": 426 }, "_children": [], "_active": true, "_components": [ { - "__id__": 432 + "__id__": 431 }, { - "__id__": 433 + "__id__": 432 } ], "_prefab": null, @@ -11664,7 +11649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 431 + "__id__": 430 }, "_enabled": true, "__prefab": null, @@ -11686,7 +11671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 431 + "__id__": 430 }, "_enabled": true, "__prefab": null, @@ -11725,7 +11710,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, @@ -11747,7 +11732,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, @@ -11786,13 +11771,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 437 + "__id__": 436 } ], "_interactable": true, @@ -11835,7 +11820,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 427 + "__id__": 426 }, "_id": "83tN1zwmxCxI7aJ2ug7LTQ" }, @@ -11855,7 +11840,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 426 }, "_enabled": true, "__prefab": null, @@ -11889,19 +11874,19 @@ }, "_children": [ { - "__id__": 440 + "__id__": 439 } ], "_active": true, "_components": [ + { + "__id__": 442 + }, { "__id__": 443 }, { - "__id__": 444 - }, - { - "__id__": 446 + "__id__": 445 } ], "_prefab": null, @@ -11940,16 +11925,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 439 + "__id__": 438 }, "_children": [], "_active": true, "_components": [ { - "__id__": 441 + "__id__": 440 }, { - "__id__": 442 + "__id__": 441 } ], "_prefab": null, @@ -11988,7 +11973,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 439 }, "_enabled": true, "__prefab": null, @@ -12010,7 +11995,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 440 + "__id__": 439 }, "_enabled": true, "__prefab": null, @@ -12075,7 +12060,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 438 }, "_enabled": true, "__prefab": null, @@ -12097,13 +12082,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 438 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 445 + "__id__": 444 } ], "_interactable": true, @@ -12155,7 +12140,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 439 + "__id__": 438 }, "_id": "05kavv3MFKp4R9iVYAgcDb" }, @@ -12175,7 +12160,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 439 + "__id__": 438 }, "_enabled": true, "__prefab": null, @@ -12324,16 +12309,16 @@ "__prefab": null, "topScore": null, "yourScore": { - "__id__": 412 + "__id__": 411 }, "_ticketMinus": { - "__id__": 430 + "__id__": 429 }, "_buyTicketBtn": { - "__id__": 427 + "__id__": 426 }, "_quitBtn": { - "__id__": 439 + "__id__": 438 }, "_scoreUI": { "__id__": 147 @@ -12351,17 +12336,17 @@ "__expectedType__": "cc.AudioClip" }, "_starSpeedCurve": { - "__id__": 452 + "__id__": 451 }, "_starScaleCurve": { - "__id__": 454 + "__id__": 453 }, "_id": "bbcyvzebBDsJfOOH9VNeON" }, { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 453 + "__id__": 452 } }, { @@ -12402,7 +12387,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 455 + "__id__": 454 } }, { @@ -12463,19 +12448,19 @@ }, "_children": [ { - "__id__": 457 + "__id__": 456 } ], "_active": false, "_components": [ + { + "__id__": 482 + }, { "__id__": 483 }, { "__id__": 484 - }, - { - "__id__": 485 } ], "_prefab": null, @@ -12514,15 +12499,18 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 456 + "__id__": 455 }, "_children": [ { - "__id__": 458 + "__id__": 457 } ], "_active": true, "_components": [ + { + "__id__": 476 + }, { "__id__": 477 }, @@ -12537,9 +12525,6 @@ }, { "__id__": 481 - }, - { - "__id__": 482 } ], "_prefab": null, @@ -12578,29 +12563,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 457 + "__id__": 456 }, "_children": [ { - "__id__": 459 + "__id__": 458 }, { - "__id__": 463 + "__id__": 462 }, { - "__id__": 466 + "__id__": 465 }, { - "__id__": 469 + "__id__": 468 } ], "_active": true, "_components": [ { - "__id__": 475 + "__id__": 474 }, { - "__id__": 476 + "__id__": 475 } ], "_prefab": null, @@ -12639,19 +12624,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 458 + "__id__": 457 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 459 + }, { "__id__": 460 }, { "__id__": 461 - }, - { - "__id__": 462 } ], "_prefab": null, @@ -12690,7 +12675,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 458 }, "_enabled": true, "__prefab": null, @@ -12712,7 +12697,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 458 }, "_enabled": true, "__prefab": null, @@ -12751,7 +12736,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 459 + "__id__": 458 }, "_enabled": true, "__prefab": null, @@ -12781,16 +12766,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 458 + "__id__": 457 }, "_children": [], "_active": false, "_components": [ { - "__id__": 464 + "__id__": 463 }, { - "__id__": 465 + "__id__": 464 } ], "_prefab": null, @@ -12829,7 +12814,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 462 }, "_enabled": true, "__prefab": null, @@ -12851,7 +12836,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 462 }, "_enabled": false, "__prefab": null, @@ -12887,16 +12872,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 458 + "__id__": 457 }, "_children": [], "_active": true, "_components": [ { - "__id__": 467 + "__id__": 466 }, { - "__id__": 468 + "__id__": 467 } ], "_prefab": null, @@ -12935,7 +12920,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 466 + "__id__": 465 }, "_enabled": true, "__prefab": null, @@ -12957,7 +12942,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 466 + "__id__": 465 }, "_enabled": true, "__prefab": null, @@ -12996,11 +12981,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 458 + "__id__": 457 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 469 + }, { "__id__": 470 }, @@ -13008,10 +12996,7 @@ "__id__": 471 }, { - "__id__": 472 - }, - { - "__id__": 474 + "__id__": 473 } ], "_prefab": null, @@ -13050,7 +13035,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 468 }, "_enabled": true, "__prefab": null, @@ -13072,7 +13057,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 468 }, "_enabled": true, "__prefab": null, @@ -13111,13 +13096,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 468 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 473 + "__id__": 472 } ], "_interactable": true, @@ -13160,7 +13145,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 469 + "__id__": 468 }, "_id": "b5HEsyyjZJ8Yb2u2q1fD82" }, @@ -13180,7 +13165,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 468 }, "_enabled": true, "__prefab": null, @@ -13210,7 +13195,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13232,7 +13217,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 458 + "__id__": 457 }, "_enabled": true, "__prefab": null, @@ -13271,7 +13256,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13293,7 +13278,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13309,7 +13294,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13349,7 +13334,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13365,7 +13350,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, @@ -13392,12 +13377,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 456 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 481 + "__id__": 480 }, "_id": "21CWF/h19B4IC/OI3ayhGG" }, @@ -13407,7 +13392,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 456 + "__id__": 455 }, "_enabled": true, "__prefab": null, @@ -13429,7 +13414,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 456 + "__id__": 455 }, "_enabled": true, "__prefab": null, @@ -13468,7 +13453,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 456 + "__id__": 455 }, "_enabled": true, "__prefab": null, @@ -13555,17 +13540,17 @@ "_enabled": true, "__prefab": null, "_scoreLabel": { - "__id__": 489 + "__id__": 488 }, "_ticketLabel": { - "__id__": 492 + "__id__": 491 }, "_buffFx": null, "_controlPanel": { "__id__": 227 }, "_startPanel": { - "__id__": 456 + "__id__": 455 }, "_overPanel": { "__id__": 374 @@ -13578,7 +13563,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13649,10 +13634,10 @@ "_active": true, "_components": [ { - "__id__": 491 + "__id__": 490 }, { - "__id__": 489 + "__id__": 488 } ], "_prefab": null, @@ -13691,7 +13676,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 490 + "__id__": 489 }, "_enabled": true, "__prefab": null, @@ -13713,7 +13698,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 493 + "__id__": 492 }, "_enabled": true, "__prefab": null, @@ -13778,16 +13763,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 494 + "__id__": 493 }, "_children": [], "_active": true, "_components": [ { - "__id__": 502 + "__id__": 501 }, { - "__id__": 492 + "__id__": 491 } ], "_prefab": null, @@ -13830,14 +13815,17 @@ }, "_children": [ { - "__id__": 495 + "__id__": 494 }, { - "__id__": 493 + "__id__": 492 } ], "_active": true, "_components": [ + { + "__id__": 497 + }, { "__id__": 498 }, @@ -13846,9 +13834,6 @@ }, { "__id__": 500 - }, - { - "__id__": 501 } ], "_prefab": null, @@ -13887,16 +13872,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 494 + "__id__": 493 }, "_children": [], "_active": true, "_components": [ { - "__id__": 496 + "__id__": 495 }, { - "__id__": 497 + "__id__": 496 } ], "_prefab": null, @@ -13935,7 +13920,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -13957,7 +13942,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 494 }, "_enabled": true, "__prefab": null, @@ -13996,7 +13981,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -14018,7 +14003,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -14057,7 +14042,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -14087,7 +14072,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 493 }, "_enabled": true, "__prefab": null, @@ -14119,7 +14104,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 493 + "__id__": 492 }, "_enabled": true, "__prefab": null, @@ -14145,14 +14130,17 @@ }, "_children": [ { - "__id__": 504 + "__id__": 503 }, { - "__id__": 508 + "__id__": 507 } ], "_active": true, "_components": [ + { + "__id__": 520 + }, { "__id__": 521 }, @@ -14161,9 +14149,6 @@ }, { "__id__": 523 - }, - { - "__id__": 524 } ], "_prefab": null, @@ -14202,19 +14187,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 503 + "__id__": 502 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 504 + }, { "__id__": 505 }, { "__id__": 506 - }, - { - "__id__": 507 } ], "_prefab": null, @@ -14253,7 +14238,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14275,7 +14260,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14314,7 +14299,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 503 }, "_enabled": true, "__prefab": null, @@ -14344,26 +14329,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 503 + "__id__": 502 }, "_children": [ { - "__id__": 509 + "__id__": 508 }, { - "__id__": 515 + "__id__": 514 } ], "_active": true, "_components": [ + { + "__id__": 517 + }, { "__id__": 518 }, { "__id__": 519 - }, - { - "__id__": 520 } ], "_prefab": null, @@ -14402,20 +14387,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 508 + "__id__": 507 }, "_children": [ { - "__id__": 510 + "__id__": 509 } ], "_active": true, "_components": [ { - "__id__": 513 + "__id__": 512 }, { - "__id__": 514 + "__id__": 513 } ], "_prefab": null, @@ -14454,16 +14439,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 508 }, "_children": [], "_active": true, "_components": [ { - "__id__": 511 + "__id__": 510 }, { - "__id__": 512 + "__id__": 511 } ], "_prefab": null, @@ -14502,7 +14487,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 510 + "__id__": 509 }, "_enabled": true, "__prefab": null, @@ -14524,7 +14509,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 510 + "__id__": 509 }, "_enabled": true, "__prefab": null, @@ -14563,7 +14548,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 508 }, "_enabled": true, "__prefab": null, @@ -14585,7 +14570,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 508 }, "_enabled": true, "__prefab": null, @@ -14624,16 +14609,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 508 + "__id__": 507 }, "_children": [], "_active": true, "_components": [ { - "__id__": 516 + "__id__": 515 }, { - "__id__": 517 + "__id__": 516 } ], "_prefab": null, @@ -14672,7 +14657,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 515 + "__id__": 514 }, "_enabled": true, "__prefab": null, @@ -14694,7 +14679,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 515 + "__id__": 514 }, "_enabled": true, "__prefab": null, @@ -14759,7 +14744,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 508 + "__id__": 507 }, "_enabled": true, "__prefab": null, @@ -14781,7 +14766,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 508 + "__id__": 507 }, "_enabled": true, "__prefab": null, @@ -14813,7 +14798,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 508 + "__id__": 507 }, "_enabled": true, "__prefab": null, @@ -14843,7 +14828,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 502 }, "_enabled": true, "__prefab": null, @@ -14865,7 +14850,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 502 }, "_enabled": true, "__prefab": null, @@ -14904,7 +14889,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 502 }, "_enabled": true, "__prefab": null, @@ -14934,18 +14919,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 502 }, "_enabled": true, "__prefab": null, "_timeLabel": { - "__id__": 517 + "__id__": 516 }, "_fill": { - "__id__": 506 + "__id__": 505 }, "_timeIcon": { - "__id__": 510 + "__id__": 509 }, "_countDownSound": { "__uuid__": "c96f7bd8-69d7-4810-a6d4-3cfa61766b2c", @@ -14963,14 +14948,17 @@ }, "_children": [ { - "__id__": 526 + "__id__": 525 }, { - "__id__": 529 + "__id__": 528 } ], "_active": true, "_components": [ + { + "__id__": 531 + }, { "__id__": 532 }, @@ -14978,13 +14966,10 @@ "__id__": 533 }, { - "__id__": 534 + "__id__": 535 }, { "__id__": 536 - }, - { - "__id__": 537 } ], "_prefab": null, @@ -15023,16 +15008,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 525 + "__id__": 524 }, "_children": [], "_active": true, "_components": [ { - "__id__": 527 + "__id__": 526 }, { - "__id__": 528 + "__id__": 527 } ], "_prefab": null, @@ -15071,7 +15056,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, @@ -15093,7 +15078,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 525 }, "_enabled": true, "__prefab": null, @@ -15132,16 +15117,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 525 + "__id__": 524 }, "_children": [], "_active": false, "_components": [ { - "__id__": 530 + "__id__": 529 }, { - "__id__": 531 + "__id__": 530 } ], "_prefab": null, @@ -15180,7 +15165,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 528 }, "_enabled": true, "__prefab": null, @@ -15202,7 +15187,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 528 }, "_enabled": true, "__prefab": null, @@ -15241,7 +15226,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, @@ -15263,7 +15248,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, @@ -15302,13 +15287,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, "clickEvents": [ { - "__id__": 535 + "__id__": 534 } ], "_interactable": true, @@ -15351,14 +15336,14 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 525 + "__id__": 524 }, "_id": "1cDmuMEIFEs5ImBNG5Gm0F" }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 525 + "__id__": 524 }, "component": "", "_componentId": "fe619HtEX1OQq7oeACKrANd", @@ -15371,7 +15356,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, @@ -15401,15 +15386,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 524 }, "_enabled": true, "__prefab": null, "_unMute": { - "__id__": 526 + "__id__": 525 }, "_mute": { - "__id__": 529 + "__id__": 528 }, "_id": "adeG5FRP1GpLzDXol2pxU+" }, @@ -15476,14 +15461,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 540 + }, { "__id__": 541 }, { "__id__": 542 - }, - { - "__id__": 543 } ], "_prefab": null, @@ -15522,7 +15507,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15544,7 +15529,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15583,7 +15568,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 540 + "__id__": 539 }, "_enabled": true, "__prefab": null, @@ -15618,14 +15603,14 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 544 + }, { "__id__": 545 }, { "__id__": 546 - }, - { - "__id__": 547 } ], "_prefab": null, @@ -15664,7 +15649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 544 + "__id__": 543 }, "_enabled": true, "__prefab": null, @@ -15686,7 +15671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 544 + "__id__": 543 }, "_enabled": true, "__prefab": null, @@ -15751,7 +15736,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 544 + "__id__": 543 }, "_enabled": true, "__prefab": null, @@ -16192,28 +16177,28 @@ }, "_children": [ { - "__id__": 564 + "__id__": 563 }, { - "__id__": 576 + "__id__": 575 }, { - "__id__": 583 + "__id__": 582 }, { - "__id__": 625 + "__id__": 624 } ], "_active": true, "_components": [ + { + "__id__": 628 + }, { "__id__": 629 }, { "__id__": 630 - }, - { - "__id__": 631 } ], "_prefab": null, @@ -16252,26 +16237,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 563 + "__id__": 562 }, "_children": [ { - "__id__": 565 + "__id__": 564 }, { - "__id__": 568 + "__id__": 567 }, { - "__id__": 571 + "__id__": 570 } ], "_active": true, "_components": [ { - "__id__": 574 + "__id__": 573 }, { - "__id__": 575 + "__id__": 574 } ], "_prefab": null, @@ -16310,16 +16295,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [], "_active": true, "_components": [ { - "__id__": 566 + "__id__": 565 }, { - "__id__": 567 + "__id__": 566 } ], "_prefab": null, @@ -16358,7 +16343,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 564 }, "_enabled": true, "__prefab": null, @@ -16380,7 +16365,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 564 }, "_enabled": true, "__prefab": null, @@ -16419,16 +16404,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [], "_active": true, "_components": [ { - "__id__": 569 + "__id__": 568 }, { - "__id__": 570 + "__id__": 569 } ], "_prefab": null, @@ -16467,7 +16452,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 568 + "__id__": 567 }, "_enabled": true, "__prefab": null, @@ -16489,7 +16474,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 568 + "__id__": 567 }, "_enabled": true, "__prefab": null, @@ -16528,16 +16513,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 564 + "__id__": 563 }, "_children": [], "_active": true, "_components": [ { - "__id__": 572 + "__id__": 571 }, { - "__id__": 573 + "__id__": 572 } ], "_prefab": null, @@ -16576,7 +16561,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 571 + "__id__": 570 }, "_enabled": true, "__prefab": null, @@ -16598,7 +16583,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 571 + "__id__": 570 }, "_enabled": true, "__prefab": null, @@ -16637,7 +16622,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -16659,7 +16644,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 563 }, "_enabled": true, "__prefab": null, @@ -16698,20 +16683,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 563 + "__id__": 562 }, "_children": [ { - "__id__": 577 + "__id__": 576 }, { - "__id__": 579 + "__id__": 578 } ], "_active": true, "_components": [ { - "__id__": 582 + "__id__": 581 } ], "_prefab": null, @@ -16750,13 +16735,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 576 + "__id__": 575 }, "_children": [], "_active": false, "_components": [ { - "__id__": 578 + "__id__": 577 } ], "_prefab": null, @@ -16795,7 +16780,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 576 }, "_enabled": true, "__prefab": null, @@ -16817,16 +16802,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 576 + "__id__": 575 }, "_children": [], "_active": true, "_components": [ { - "__id__": 580 + "__id__": 579 }, { - "__id__": 581 + "__id__": 580 } ], "_prefab": null, @@ -16865,7 +16850,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 579 + "__id__": 578 }, "_enabled": true, "__prefab": null, @@ -16887,7 +16872,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 579 + "__id__": 578 }, "_enabled": true, "__prefab": null, @@ -16926,7 +16911,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 576 + "__id__": 575 }, "_enabled": true, "__prefab": null, @@ -16948,20 +16933,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 563 + "__id__": 562 }, "_children": [ { - "__id__": 584 + "__id__": 583 }, { - "__id__": 603 + "__id__": 602 } ], "_active": true, "_components": [ { - "__id__": 624 + "__id__": 623 } ], "_prefab": null, @@ -16998,17 +16983,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 583 + "__id__": 582 }, "_prefab": { - "__id__": 585 + "__id__": 584 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 584 + "__id__": 583 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -17016,7 +17001,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 586 + "__id__": 585 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -17029,7 +17014,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 587 + "__id__": 586 + }, + { + "__id__": 588 }, { "__id__": 589 @@ -17041,7 +17029,7 @@ "__id__": 591 }, { - "__id__": 592 + "__id__": 593 }, { "__id__": 594 @@ -17053,13 +17041,10 @@ "__id__": 596 }, { - "__id__": 597 + "__id__": 598 }, { - "__id__": 599 - }, - { - "__id__": 601 + "__id__": 600 } ], "removedComponents": [] @@ -17067,7 +17052,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 588 + "__id__": 587 }, "propertyPath": [ "_name" @@ -17083,7 +17068,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 588 + "__id__": 587 }, "propertyPath": [ "_lpos" @@ -17098,7 +17083,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 588 + "__id__": 587 }, "propertyPath": [ "_lrot" @@ -17114,7 +17099,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 588 + "__id__": 587 }, "propertyPath": [ "_euler" @@ -17129,7 +17114,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 593 + "__id__": 592 }, "propertyPath": [ "_lrot" @@ -17151,7 +17136,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 593 + "__id__": 592 }, "propertyPath": [ "_euler" @@ -17166,7 +17151,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 588 + "__id__": 587 }, "propertyPath": [ "_layer" @@ -17176,7 +17161,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 593 + "__id__": 592 }, "propertyPath": [ "_layer" @@ -17186,7 +17171,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 598 + "__id__": 597 }, "propertyPath": [ "_layer" @@ -17202,7 +17187,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 600 + "__id__": 599 }, "propertyPath": [ "_layer" @@ -17218,7 +17203,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 602 + "__id__": 601 }, "propertyPath": [ "_rotationOvertimeModule", @@ -17237,17 +17222,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 583 + "__id__": 582 }, "_prefab": { - "__id__": 604 + "__id__": 603 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 603 + "__id__": 602 }, "asset": { "__uuid__": "c5e75294-5ee5-4e7a-8192-d1655a94811e", @@ -17255,7 +17240,7 @@ }, "fileId": "5cD4+xkz1ErKrNpV+rss2i", "instance": { - "__id__": 605 + "__id__": 604 }, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -17268,7 +17253,10 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 606 + "__id__": 605 + }, + { + "__id__": 607 }, { "__id__": 608 @@ -17283,7 +17271,7 @@ "__id__": 611 }, { - "__id__": 612 + "__id__": 613 }, { "__id__": 614 @@ -17295,16 +17283,13 @@ "__id__": 616 }, { - "__id__": 617 + "__id__": 618 }, { "__id__": 619 }, { - "__id__": 620 - }, - { - "__id__": 622 + "__id__": 621 } ], "removedComponents": [] @@ -17312,7 +17297,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_name" @@ -17328,7 +17313,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_lpos" @@ -17343,7 +17328,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_lrot" @@ -17359,7 +17344,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_euler" @@ -17374,7 +17359,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_layer" @@ -17384,7 +17369,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 613 + "__id__": 612 }, "propertyPath": [ "_lrot" @@ -17406,7 +17391,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 613 + "__id__": 612 }, "propertyPath": [ "_euler" @@ -17421,7 +17406,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 607 + "__id__": 606 }, "propertyPath": [ "_lscale" @@ -17436,7 +17421,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 613 + "__id__": 612 }, "propertyPath": [ "_lscale" @@ -17451,7 +17436,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 618 + "__id__": 617 }, "propertyPath": [ "_rotationOvertimeModule", @@ -17469,7 +17454,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 613 + "__id__": 612 }, "propertyPath": [ "_layer" @@ -17479,7 +17464,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 621 + "__id__": 620 }, "propertyPath": [ "_layer" @@ -17495,7 +17480,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 623 + "__id__": 622 }, "propertyPath": [ "_layer" @@ -17514,7 +17499,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 583 + "__id__": 582 }, "_enabled": true, "__prefab": null, @@ -17536,19 +17521,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 563 + "__id__": 562 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 625 + }, { "__id__": 626 }, { "__id__": 627 - }, - { - "__id__": 628 } ], "_prefab": null, @@ -17587,7 +17572,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 625 + "__id__": 624 }, "_enabled": true, "__prefab": null, @@ -17609,7 +17594,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 625 + "__id__": 624 }, "_enabled": true, "__prefab": null, @@ -17684,7 +17669,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 625 + "__id__": 624 }, "_enabled": true, "__prefab": null, @@ -17712,7 +17697,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 563 + "__id__": 562 }, "_enabled": true, "__prefab": null, @@ -17734,15 +17719,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 563 + "__id__": 562 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 627 + "__id__": 626 }, "_animation": { - "__id__": 631 + "__id__": 630 }, "_score": 100, "_goalFx": { @@ -17757,7 +17742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 563 + "__id__": 562 }, "_enabled": true, "__prefab": null, @@ -17789,6 +17774,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 632 + }, { "__id__": 633 }, @@ -17797,9 +17785,6 @@ }, { "__id__": 635 - }, - { - "__id__": 636 } ], "_prefab": null, @@ -17838,7 +17823,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 632 + "__id__": 631 }, "_enabled": true, "__prefab": null, @@ -17860,7 +17845,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 632 + "__id__": 631 }, "_enabled": true, "__prefab": null, @@ -17985,7 +17970,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 632 + "__id__": 631 }, "_enabled": true, "__prefab": null, @@ -18140,7 +18125,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 632 + "__id__": 631 }, "_enabled": true, "__prefab": null, @@ -18173,6 +18158,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 637 + }, { "__id__": 638 }, @@ -18181,9 +18169,6 @@ }, { "__id__": 640 - }, - { - "__id__": 641 } ], "_prefab": null, @@ -18222,7 +18207,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, @@ -18244,7 +18229,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, @@ -18299,18 +18284,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 639 + "__id__": 638 }, "_portLeft": { - "__id__": 584 + "__id__": 583 }, "_portRight": { - "__id__": 603 + "__id__": 602 }, "_fx": { "__uuid__": "7afbc379-62e2-4721-b6d4-be47b00b6db2", @@ -18328,7 +18313,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 637 + "__id__": 636 }, "_enabled": true, "__prefab": null, @@ -18360,22 +18345,22 @@ }, "_children": [ { - "__id__": 643 + "__id__": 642 }, { - "__id__": 659 + "__id__": 658 }, { - "__id__": 678 + "__id__": 677 }, { - "__id__": 697 + "__id__": 696 } ], "_active": true, "_components": [ { - "__id__": 716 + "__id__": 715 } ], "_prefab": null, @@ -18414,26 +18399,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 642 + "__id__": 641 }, "_children": [ { - "__id__": 644 + "__id__": 643 }, { - "__id__": 651 + "__id__": 650 }, { - "__id__": 653 + "__id__": 652 } ], "_active": true, "_components": [ { - "__id__": 655 + "__id__": 654 }, { - "__id__": 656 + "__id__": 655 } ], "_prefab": null, @@ -18472,23 +18457,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 643 + "__id__": 642 }, "_children": [ { - "__id__": 645 + "__id__": 644 } ], "_active": true, "_components": [ + { + "__id__": 647 + }, { "__id__": 648 }, { "__id__": 649 - }, - { - "__id__": 650 } ], "_prefab": null, @@ -18527,16 +18512,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 644 + "__id__": 643 }, "_children": [], "_active": true, "_components": [ { - "__id__": 646 + "__id__": 645 }, { - "__id__": 647 + "__id__": 646 } ], "_prefab": null, @@ -18575,7 +18560,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 645 + "__id__": 644 }, "_enabled": true, "__prefab": null, @@ -18597,7 +18582,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 645 + "__id__": 644 }, "_enabled": true, "__prefab": null, @@ -18636,7 +18621,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 644 + "__id__": 643 }, "_enabled": true, "__prefab": null, @@ -18658,7 +18643,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 644 + "__id__": 643 }, "_enabled": true, "__prefab": null, @@ -18686,7 +18671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 644 + "__id__": 643 }, "_enabled": true, "__prefab": null, @@ -18714,13 +18699,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 643 + "__id__": 642 }, "_children": [], "_active": true, "_components": [ { - "__id__": 652 + "__id__": 651 } ], "_prefab": null, @@ -18759,7 +18744,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 651 + "__id__": 650 }, "_enabled": true, "__prefab": null, @@ -18781,13 +18766,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 643 + "__id__": 642 }, "_children": [], "_active": true, "_components": [ { - "__id__": 654 + "__id__": 653 } ], "_prefab": null, @@ -18826,7 +18811,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 653 + "__id__": 652 }, "_enabled": true, "__prefab": null, @@ -18848,7 +18833,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 643 + "__id__": 642 }, "_enabled": true, "__prefab": null, @@ -18870,27 +18855,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 643 + "__id__": 642 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 649 + "__id__": 648 }, "_sprite": { - "__id__": 647 + "__id__": 646 }, "_patrolPoint1": { - "__id__": 651 + "__id__": 650 }, "_patrolPoint2": { - "__id__": 653 + "__id__": 652 }, "_speed": 50, "_requireGoal": 3, "_curveY": true, "_patrolCurve": { - "__id__": 657 + "__id__": 656 }, "_multiplierCurve": 120, "_hitSound": { @@ -18902,7 +18887,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 658 + "__id__": 657 } }, { @@ -18946,29 +18931,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 642 + "__id__": 641 }, "_children": [ { - "__id__": 660 + "__id__": 659 }, { - "__id__": 663 + "__id__": 662 }, { - "__id__": 670 + "__id__": 669 }, { - "__id__": 672 + "__id__": 671 } ], "_active": true, "_components": [ { - "__id__": 674 + "__id__": 673 }, { - "__id__": 675 + "__id__": 674 } ], "_prefab": null, @@ -19007,16 +18992,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 659 + "__id__": 658 }, "_children": [], "_active": true, "_components": [ { - "__id__": 661 + "__id__": 660 }, { - "__id__": 662 + "__id__": 661 } ], "_prefab": null, @@ -19055,7 +19040,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 660 + "__id__": 659 }, "_enabled": true, "__prefab": null, @@ -19077,7 +19062,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 660 + "__id__": 659 }, "_enabled": true, "__prefab": null, @@ -19116,23 +19101,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 659 + "__id__": 658 }, "_children": [ { - "__id__": 664 + "__id__": 663 } ], "_active": true, "_components": [ + { + "__id__": 666 + }, { "__id__": 667 }, { "__id__": 668 - }, - { - "__id__": 669 } ], "_prefab": null, @@ -19171,16 +19156,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 662 }, "_children": [], "_active": true, "_components": [ { - "__id__": 665 + "__id__": 664 }, { - "__id__": 666 + "__id__": 665 } ], "_prefab": null, @@ -19219,7 +19204,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19241,7 +19226,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 663 }, "_enabled": true, "__prefab": null, @@ -19280,7 +19265,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 662 }, "_enabled": true, "__prefab": null, @@ -19302,7 +19287,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 662 }, "_enabled": true, "__prefab": null, @@ -19330,7 +19315,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 662 }, "_enabled": true, "__prefab": null, @@ -19358,13 +19343,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 659 + "__id__": 658 }, "_children": [], "_active": true, "_components": [ { - "__id__": 671 + "__id__": 670 } ], "_prefab": null, @@ -19403,7 +19388,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 670 + "__id__": 669 }, "_enabled": true, "__prefab": null, @@ -19425,13 +19410,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 659 + "__id__": 658 }, "_children": [], "_active": true, "_components": [ { - "__id__": 673 + "__id__": 672 } ], "_prefab": null, @@ -19470,7 +19455,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 672 + "__id__": 671 }, "_enabled": true, "__prefab": null, @@ -19492,7 +19477,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 659 + "__id__": 658 }, "_enabled": true, "__prefab": null, @@ -19514,27 +19499,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 659 + "__id__": 658 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 668 + "__id__": 667 }, "_sprite": { - "__id__": 666 + "__id__": 665 }, "_patrolPoint1": { - "__id__": 670 + "__id__": 669 }, "_patrolPoint2": { - "__id__": 672 + "__id__": 671 }, "_speed": 50, "_requireGoal": 6, "_curveY": false, "_patrolCurve": { - "__id__": 676 + "__id__": 675 }, "_multiplierCurve": 100, "_hitSound": { @@ -19546,7 +19531,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 677 + "__id__": 676 } }, { @@ -19590,29 +19575,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 642 + "__id__": 641 }, "_children": [ { - "__id__": 679 + "__id__": 678 }, { - "__id__": 682 + "__id__": 681 }, { - "__id__": 689 + "__id__": 688 }, { - "__id__": 691 + "__id__": 690 } ], "_active": true, "_components": [ { - "__id__": 693 + "__id__": 692 }, { - "__id__": 694 + "__id__": 693 } ], "_prefab": null, @@ -19651,16 +19636,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 678 + "__id__": 677 }, "_children": [], "_active": true, "_components": [ { - "__id__": 680 + "__id__": 679 }, { - "__id__": 681 + "__id__": 680 } ], "_prefab": null, @@ -19699,7 +19684,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 679 + "__id__": 678 }, "_enabled": true, "__prefab": null, @@ -19721,7 +19706,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 679 + "__id__": 678 }, "_enabled": true, "__prefab": null, @@ -19760,23 +19745,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 678 + "__id__": 677 }, "_children": [ { - "__id__": 683 + "__id__": 682 } ], "_active": true, "_components": [ + { + "__id__": 685 + }, { "__id__": 686 }, { "__id__": 687 - }, - { - "__id__": 688 } ], "_prefab": null, @@ -19815,16 +19800,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 682 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 684 + "__id__": 683 }, { - "__id__": 685 + "__id__": 684 } ], "_prefab": null, @@ -19863,7 +19848,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -19885,7 +19870,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 683 + "__id__": 682 }, "_enabled": true, "__prefab": null, @@ -19924,7 +19909,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 682 + "__id__": 681 }, "_enabled": true, "__prefab": null, @@ -19946,7 +19931,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 682 + "__id__": 681 }, "_enabled": true, "__prefab": null, @@ -19974,7 +19959,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 682 + "__id__": 681 }, "_enabled": true, "__prefab": null, @@ -20002,13 +19987,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 678 + "__id__": 677 }, "_children": [], "_active": true, "_components": [ { - "__id__": 690 + "__id__": 689 } ], "_prefab": null, @@ -20047,7 +20032,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 689 + "__id__": 688 }, "_enabled": true, "__prefab": null, @@ -20069,13 +20054,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 678 + "__id__": 677 }, "_children": [], "_active": true, "_components": [ { - "__id__": 692 + "__id__": 691 } ], "_prefab": null, @@ -20114,7 +20099,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 691 + "__id__": 690 }, "_enabled": true, "__prefab": null, @@ -20136,7 +20121,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 678 + "__id__": 677 }, "_enabled": true, "__prefab": null, @@ -20158,27 +20143,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 678 + "__id__": 677 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 687 + "__id__": 686 }, "_sprite": { - "__id__": 685 + "__id__": 684 }, "_patrolPoint1": { - "__id__": 689 + "__id__": 688 }, "_patrolPoint2": { - "__id__": 691 + "__id__": 690 }, "_speed": 50, "_requireGoal": 9, "_curveY": false, "_patrolCurve": { - "__id__": 695 + "__id__": 694 }, "_multiplierCurve": 100, "_hitSound": { @@ -20190,7 +20175,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 696 + "__id__": 695 } }, { @@ -20234,29 +20219,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 642 + "__id__": 641 }, "_children": [ { - "__id__": 698 + "__id__": 697 }, { - "__id__": 701 + "__id__": 700 }, { - "__id__": 708 + "__id__": 707 }, { - "__id__": 710 + "__id__": 709 } ], "_active": true, "_components": [ { - "__id__": 712 + "__id__": 711 }, { - "__id__": 713 + "__id__": 712 } ], "_prefab": null, @@ -20295,16 +20280,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 697 + "__id__": 696 }, "_children": [], "_active": true, "_components": [ { - "__id__": 699 + "__id__": 698 }, { - "__id__": 700 + "__id__": 699 } ], "_prefab": null, @@ -20343,7 +20328,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 698 + "__id__": 697 }, "_enabled": true, "__prefab": null, @@ -20365,7 +20350,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 698 + "__id__": 697 }, "_enabled": true, "__prefab": null, @@ -20404,23 +20389,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 697 + "__id__": 696 }, "_children": [ { - "__id__": 702 + "__id__": 701 } ], "_active": true, "_components": [ + { + "__id__": 704 + }, { "__id__": 705 }, { "__id__": 706 - }, - { - "__id__": 707 } ], "_prefab": null, @@ -20459,16 +20444,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 701 + "__id__": 700 }, "_children": [], "_active": true, "_components": [ { - "__id__": 703 + "__id__": 702 }, { - "__id__": 704 + "__id__": 703 } ], "_prefab": null, @@ -20507,7 +20492,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20529,7 +20514,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 702 + "__id__": 701 }, "_enabled": true, "__prefab": null, @@ -20568,7 +20553,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 701 + "__id__": 700 }, "_enabled": true, "__prefab": null, @@ -20590,7 +20575,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 701 + "__id__": 700 }, "_enabled": true, "__prefab": null, @@ -20618,7 +20603,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 701 + "__id__": 700 }, "_enabled": true, "__prefab": null, @@ -20646,13 +20631,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 697 + "__id__": 696 }, "_children": [], "_active": true, "_components": [ { - "__id__": 709 + "__id__": 708 } ], "_prefab": null, @@ -20691,7 +20676,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 708 + "__id__": 707 }, "_enabled": true, "__prefab": null, @@ -20713,13 +20698,13 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 697 + "__id__": 696 }, "_children": [], "_active": true, "_components": [ { - "__id__": 711 + "__id__": 710 } ], "_prefab": null, @@ -20758,7 +20743,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 710 + "__id__": 709 }, "_enabled": true, "__prefab": null, @@ -20780,7 +20765,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 697 + "__id__": 696 }, "_enabled": true, "__prefab": null, @@ -20802,27 +20787,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 697 + "__id__": 696 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 706 + "__id__": 705 }, "_sprite": { - "__id__": 704 + "__id__": 703 }, "_patrolPoint1": { - "__id__": 708 + "__id__": 707 }, "_patrolPoint2": { - "__id__": 710 + "__id__": 709 }, "_speed": 50, "_requireGoal": 12, "_curveY": false, "_patrolCurve": { - "__id__": 714 + "__id__": 713 }, "_multiplierCurve": 100, "_hitSound": { @@ -20834,7 +20819,7 @@ { "__type__": "cc.AnimationCurve", "_curve": { - "__id__": 715 + "__id__": 714 } }, { @@ -20878,7 +20863,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 642 + "__id__": 641 }, "_enabled": true, "__prefab": null, @@ -20904,22 +20889,22 @@ }, "_children": [ { - "__id__": 718 + "__id__": 717 }, { - "__id__": 733 + "__id__": 732 }, { - "__id__": 748 + "__id__": 747 }, { - "__id__": 763 + "__id__": 762 } ], "_active": true, "_components": [ { - "__id__": 778 + "__id__": 777 } ], "_prefab": null, @@ -20958,23 +20943,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 717 + "__id__": 716 }, "_children": [ { - "__id__": 719 + "__id__": 718 } ], "_active": true, "_components": [ { - "__id__": 728 + "__id__": 727 + }, + { + "__id__": 730 }, { "__id__": 731 - }, - { - "__id__": 732 } ], "_prefab": null, @@ -21013,29 +20998,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 718 + "__id__": 717 }, "_children": [ { - "__id__": 720 + "__id__": 719 }, { - "__id__": 723 + "__id__": 722 } ], "_active": true, "_components": [ + { + "__id__": 725 + }, { "__id__": 726 }, { - "__id__": 727 + "__id__": 728 }, { "__id__": 729 - }, - { - "__id__": 730 } ], "_prefab": null, @@ -21074,16 +21059,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 719 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 721 + "__id__": 720 }, { - "__id__": 722 + "__id__": 721 } ], "_prefab": null, @@ -21122,7 +21107,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 720 + "__id__": 719 }, "_enabled": true, "__prefab": null, @@ -21144,7 +21129,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 720 + "__id__": 719 }, "_enabled": true, "__prefab": null, @@ -21183,16 +21168,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 719 + "__id__": 718 }, "_children": [], "_active": true, "_components": [ { - "__id__": 724 + "__id__": 723 }, { - "__id__": 725 + "__id__": 724 } ], "_prefab": null, @@ -21231,7 +21216,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21253,7 +21238,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 723 + "__id__": 722 }, "_enabled": true, "__prefab": null, @@ -21292,7 +21277,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 718 }, "_enabled": true, "__prefab": null, @@ -21320,7 +21305,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 718 }, "_enabled": true, "__prefab": null, @@ -21336,7 +21321,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 728 + "__id__": 727 }, "_enableLimit": true, "_lowerAngle": -60, @@ -21352,7 +21337,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 718 + "__id__": 717 }, "_enabled": true, "__prefab": null, @@ -21380,7 +21365,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 718 }, "_enabled": true, "__prefab": null, @@ -21460,7 +21445,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 719 + "__id__": 718 }, "_enabled": true, "__prefab": null, @@ -21482,15 +21467,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 718 + "__id__": 717 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 732 + "__id__": 731 }, "_hingeJoint": { - "__id__": 727 + "__id__": 726 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -21507,7 +21492,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 718 + "__id__": 717 }, "_enabled": true, "__prefab": null, @@ -21530,23 +21515,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 717 + "__id__": 716 }, "_children": [ { - "__id__": 734 + "__id__": 733 } ], "_active": true, "_components": [ { - "__id__": 743 + "__id__": 742 + }, + { + "__id__": 745 }, { "__id__": 746 - }, - { - "__id__": 747 } ], "_prefab": null, @@ -21585,29 +21570,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 733 + "__id__": 732 }, "_children": [ { - "__id__": 735 + "__id__": 734 }, { - "__id__": 738 + "__id__": 737 } ], "_active": true, "_components": [ + { + "__id__": 740 + }, { "__id__": 741 }, { - "__id__": 742 + "__id__": 743 }, { "__id__": 744 - }, - { - "__id__": 745 } ], "_prefab": null, @@ -21646,16 +21631,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 734 + "__id__": 733 }, "_children": [], "_active": true, "_components": [ { - "__id__": 736 + "__id__": 735 }, { - "__id__": 737 + "__id__": 736 } ], "_prefab": null, @@ -21694,7 +21679,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 735 + "__id__": 734 }, "_enabled": true, "__prefab": null, @@ -21716,7 +21701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 735 + "__id__": 734 }, "_enabled": true, "__prefab": null, @@ -21755,16 +21740,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 734 + "__id__": 733 }, "_children": [], "_active": true, "_components": [ { - "__id__": 739 + "__id__": 738 }, { - "__id__": 740 + "__id__": 739 } ], "_prefab": null, @@ -21803,7 +21788,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -21825,7 +21810,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 738 + "__id__": 737 }, "_enabled": true, "__prefab": null, @@ -21864,7 +21849,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 734 + "__id__": 733 }, "_enabled": true, "__prefab": null, @@ -21892,7 +21877,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 734 + "__id__": 733 }, "_enabled": true, "__prefab": null, @@ -21908,7 +21893,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 743 + "__id__": 742 }, "_enableLimit": true, "_lowerAngle": 0, @@ -21924,7 +21909,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 733 + "__id__": 732 }, "_enabled": true, "__prefab": null, @@ -21952,7 +21937,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 734 + "__id__": 733 }, "_enabled": true, "__prefab": null, @@ -22047,7 +22032,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 734 + "__id__": 733 }, "_enabled": true, "__prefab": null, @@ -22069,15 +22054,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 733 + "__id__": 732 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 747 + "__id__": 746 }, "_hingeJoint": { - "__id__": 742 + "__id__": 741 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22094,7 +22079,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 733 + "__id__": 732 }, "_enabled": true, "__prefab": null, @@ -22117,23 +22102,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 717 + "__id__": 716 }, "_children": [ { - "__id__": 749 + "__id__": 748 } ], "_active": true, "_components": [ { - "__id__": 758 + "__id__": 757 + }, + { + "__id__": 760 }, { "__id__": 761 - }, - { - "__id__": 762 } ], "_prefab": null, @@ -22172,29 +22157,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 748 + "__id__": 747 }, "_children": [ { - "__id__": 750 + "__id__": 749 }, { - "__id__": 753 + "__id__": 752 } ], "_active": true, "_components": [ + { + "__id__": 755 + }, { "__id__": 756 }, { - "__id__": 757 + "__id__": 758 }, { "__id__": 759 - }, - { - "__id__": 760 } ], "_prefab": null, @@ -22233,16 +22218,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 749 + "__id__": 748 }, "_children": [], "_active": true, "_components": [ { - "__id__": 751 + "__id__": 750 }, { - "__id__": 752 + "__id__": 751 } ], "_prefab": null, @@ -22281,7 +22266,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 750 + "__id__": 749 }, "_enabled": true, "__prefab": null, @@ -22303,7 +22288,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 750 + "__id__": 749 }, "_enabled": true, "__prefab": null, @@ -22342,16 +22327,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 749 + "__id__": 748 }, "_children": [], "_active": true, "_components": [ { - "__id__": 754 + "__id__": 753 }, { - "__id__": 755 + "__id__": 754 } ], "_prefab": null, @@ -22390,7 +22375,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22412,7 +22397,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 753 + "__id__": 752 }, "_enabled": true, "__prefab": null, @@ -22451,7 +22436,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 749 + "__id__": 748 }, "_enabled": true, "__prefab": null, @@ -22479,7 +22464,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 749 + "__id__": 748 }, "_enabled": true, "__prefab": null, @@ -22495,7 +22480,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 758 + "__id__": 757 }, "_enableLimit": true, "_lowerAngle": 0, @@ -22511,7 +22496,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 748 + "__id__": 747 }, "_enabled": true, "__prefab": null, @@ -22539,7 +22524,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 749 + "__id__": 748 }, "_enabled": true, "__prefab": null, @@ -22634,7 +22619,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 749 + "__id__": 748 }, "_enabled": true, "__prefab": null, @@ -22656,15 +22641,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 748 + "__id__": 747 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 762 + "__id__": 761 }, "_hingeJoint": { - "__id__": 757 + "__id__": 756 }, "_motorSpeedActive": 10000, "_motorSpeedDeActive": -10000, @@ -22681,7 +22666,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 748 + "__id__": 747 }, "_enabled": true, "__prefab": null, @@ -22704,23 +22689,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 717 + "__id__": 716 }, "_children": [ { - "__id__": 764 + "__id__": 763 } ], "_active": true, "_components": [ { - "__id__": 773 + "__id__": 772 + }, + { + "__id__": 775 }, { "__id__": 776 - }, - { - "__id__": 777 } ], "_prefab": null, @@ -22759,29 +22744,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 763 + "__id__": 762 }, "_children": [ { - "__id__": 765 + "__id__": 764 }, { - "__id__": 768 + "__id__": 767 } ], "_active": true, "_components": [ + { + "__id__": 770 + }, { "__id__": 771 }, { - "__id__": 772 + "__id__": 773 }, { "__id__": 774 - }, - { - "__id__": 775 } ], "_prefab": null, @@ -22820,16 +22805,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 764 + "__id__": 763 }, "_children": [], "_active": true, "_components": [ { - "__id__": 766 + "__id__": 765 }, { - "__id__": 767 + "__id__": 766 } ], "_prefab": null, @@ -22868,7 +22853,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 765 + "__id__": 764 }, "_enabled": true, "__prefab": null, @@ -22890,7 +22875,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 765 + "__id__": 764 }, "_enabled": true, "__prefab": null, @@ -22929,16 +22914,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 764 + "__id__": 763 }, "_children": [], "_active": true, "_components": [ { - "__id__": 769 + "__id__": 768 }, { - "__id__": 770 + "__id__": 769 } ], "_prefab": null, @@ -22977,7 +22962,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -22999,7 +22984,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 767 }, "_enabled": true, "__prefab": null, @@ -23038,7 +23023,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 764 + "__id__": 763 }, "_enabled": true, "__prefab": null, @@ -23066,7 +23051,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 764 + "__id__": 763 }, "_enabled": true, "__prefab": null, @@ -23082,7 +23067,7 @@ }, "collideConnected": false, "connectedBody": { - "__id__": 773 + "__id__": 772 }, "_enableLimit": true, "_lowerAngle": -60, @@ -23098,7 +23083,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 763 + "__id__": 762 }, "_enabled": true, "__prefab": null, @@ -23126,7 +23111,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 764 + "__id__": 763 }, "_enabled": true, "__prefab": null, @@ -23206,7 +23191,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 764 + "__id__": 763 }, "_enabled": true, "__prefab": null, @@ -23228,15 +23213,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 763 + "__id__": 762 }, "_enabled": true, "__prefab": null, "_animation": { - "__id__": 777 + "__id__": 776 }, "_hingeJoint": { - "__id__": 772 + "__id__": 771 }, "_motorSpeedActive": -10000, "_motorSpeedDeActive": 10000, @@ -23253,7 +23238,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 763 + "__id__": 762 }, "_enabled": true, "__prefab": null, @@ -23276,7 +23261,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 717 + "__id__": 716 }, "_enabled": true, "__prefab": null, @@ -23303,6 +23288,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 779 + }, { "__id__": 780 }, @@ -23311,9 +23299,6 @@ }, { "__id__": 782 - }, - { - "__id__": 783 } ], "_prefab": null, @@ -23352,7 +23337,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 779 + "__id__": 778 }, "_enabled": true, "__prefab": null, @@ -23374,7 +23359,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 779 + "__id__": 778 }, "_enabled": true, "__prefab": null, @@ -23402,12 +23387,12 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 779 + "__id__": 778 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 781 + "__id__": 780 }, "_id": "63rfzsm3REkprs+s68PCRK" }, @@ -23417,7 +23402,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 779 + "__id__": 778 }, "_enabled": true, "__prefab": null, @@ -23449,211 +23434,211 @@ }, "_children": [ { - "__id__": 785 + "__id__": 784 }, { - "__id__": 788 + "__id__": 787 }, { - "__id__": 791 + "__id__": 790 }, { - "__id__": 794 + "__id__": 793 }, { - "__id__": 797 + "__id__": 796 }, { - "__id__": 800 + "__id__": 799 }, { - "__id__": 803 + "__id__": 802 }, { - "__id__": 806 + "__id__": 805 }, { - "__id__": 809 + "__id__": 808 }, { - "__id__": 812 + "__id__": 811 }, { - "__id__": 815 + "__id__": 814 }, { - "__id__": 818 + "__id__": 817 }, { - "__id__": 821 + "__id__": 820 }, { - "__id__": 824 + "__id__": 823 }, { - "__id__": 827 + "__id__": 826 }, { - "__id__": 830 + "__id__": 829 }, { - "__id__": 833 + "__id__": 832 }, { - "__id__": 836 + "__id__": 835 }, { - "__id__": 839 + "__id__": 838 }, { - "__id__": 842 + "__id__": 841 }, { - "__id__": 845 + "__id__": 844 }, { - "__id__": 848 + "__id__": 847 }, { - "__id__": 851 + "__id__": 850 }, { - "__id__": 854 + "__id__": 853 }, { - "__id__": 857 + "__id__": 856 }, { - "__id__": 860 + "__id__": 859 }, { - "__id__": 863 + "__id__": 862 }, { - "__id__": 866 + "__id__": 865 }, { - "__id__": 869 + "__id__": 868 }, { - "__id__": 872 + "__id__": 871 }, { - "__id__": 875 + "__id__": 874 }, { - "__id__": 878 + "__id__": 877 }, { - "__id__": 881 + "__id__": 880 }, { - "__id__": 884 + "__id__": 883 }, { - "__id__": 887 + "__id__": 886 }, { - "__id__": 890 + "__id__": 889 }, { - "__id__": 893 + "__id__": 892 }, { - "__id__": 896 + "__id__": 895 }, { - "__id__": 899 + "__id__": 898 }, { - "__id__": 902 + "__id__": 901 }, { - "__id__": 905 + "__id__": 904 }, { - "__id__": 908 + "__id__": 907 }, { - "__id__": 911 + "__id__": 910 }, { - "__id__": 914 + "__id__": 913 }, { - "__id__": 917 + "__id__": 916 }, { - "__id__": 920 + "__id__": 919 }, { - "__id__": 923 + "__id__": 922 }, { - "__id__": 926 + "__id__": 925 }, { - "__id__": 929 + "__id__": 928 }, { - "__id__": 932 + "__id__": 931 }, { - "__id__": 935 + "__id__": 934 }, { - "__id__": 938 + "__id__": 937 }, { - "__id__": 941 + "__id__": 940 }, { - "__id__": 944 + "__id__": 943 }, { - "__id__": 947 + "__id__": 946 }, { - "__id__": 950 + "__id__": 949 }, { - "__id__": 953 + "__id__": 952 }, { - "__id__": 956 + "__id__": 955 }, { - "__id__": 959 + "__id__": 958 }, { - "__id__": 962 + "__id__": 961 }, { - "__id__": 965 + "__id__": 964 }, { - "__id__": 968 + "__id__": 967 }, { - "__id__": 971 + "__id__": 970 }, { - "__id__": 974 + "__id__": 973 }, { - "__id__": 977 + "__id__": 976 }, { - "__id__": 980 + "__id__": 979 } ], "_active": true, "_components": [ { - "__id__": 983 + "__id__": 982 }, { - "__id__": 984 + "__id__": 983 } ], "_prefab": null, @@ -23692,16 +23677,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 786 + "__id__": 785 }, { - "__id__": 787 + "__id__": 786 } ], "_prefab": null, @@ -23740,7 +23725,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 785 + "__id__": 784 }, "_enabled": true, "__prefab": null, @@ -23762,7 +23747,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 785 + "__id__": 784 }, "_enabled": true, "__prefab": null, @@ -23801,16 +23786,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 789 + "__id__": 788 }, { - "__id__": 790 + "__id__": 789 } ], "_prefab": null, @@ -23849,7 +23834,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 787 }, "_enabled": true, "__prefab": null, @@ -23871,7 +23856,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 787 }, "_enabled": true, "__prefab": null, @@ -23910,16 +23895,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 792 + "__id__": 791 }, { - "__id__": 793 + "__id__": 792 } ], "_prefab": null, @@ -23958,7 +23943,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 791 + "__id__": 790 }, "_enabled": true, "__prefab": null, @@ -23980,7 +23965,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 791 + "__id__": 790 }, "_enabled": true, "__prefab": null, @@ -24019,16 +24004,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 795 + "__id__": 794 }, { - "__id__": 796 + "__id__": 795 } ], "_prefab": null, @@ -24067,7 +24052,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 794 + "__id__": 793 }, "_enabled": true, "__prefab": null, @@ -24089,7 +24074,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 794 + "__id__": 793 }, "_enabled": true, "__prefab": null, @@ -24128,16 +24113,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 798 + "__id__": 797 }, { - "__id__": 799 + "__id__": 798 } ], "_prefab": null, @@ -24176,7 +24161,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 797 + "__id__": 796 }, "_enabled": true, "__prefab": null, @@ -24198,7 +24183,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 797 + "__id__": 796 }, "_enabled": true, "__prefab": null, @@ -24237,16 +24222,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 801 + "__id__": 800 }, { - "__id__": 802 + "__id__": 801 } ], "_prefab": null, @@ -24285,7 +24270,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 800 + "__id__": 799 }, "_enabled": true, "__prefab": null, @@ -24307,7 +24292,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 800 + "__id__": 799 }, "_enabled": true, "__prefab": null, @@ -24346,16 +24331,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 804 + "__id__": 803 }, { - "__id__": 805 + "__id__": 804 } ], "_prefab": null, @@ -24394,7 +24379,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 803 + "__id__": 802 }, "_enabled": true, "__prefab": null, @@ -24416,7 +24401,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 803 + "__id__": 802 }, "_enabled": true, "__prefab": null, @@ -24455,16 +24440,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 807 + "__id__": 806 }, { - "__id__": 808 + "__id__": 807 } ], "_prefab": null, @@ -24503,7 +24488,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 806 + "__id__": 805 }, "_enabled": true, "__prefab": null, @@ -24525,7 +24510,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 806 + "__id__": 805 }, "_enabled": true, "__prefab": null, @@ -24564,16 +24549,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 810 + "__id__": 809 }, { - "__id__": 811 + "__id__": 810 } ], "_prefab": null, @@ -24612,7 +24597,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 809 + "__id__": 808 }, "_enabled": true, "__prefab": null, @@ -24634,7 +24619,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 809 + "__id__": 808 }, "_enabled": true, "__prefab": null, @@ -24673,16 +24658,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 813 + "__id__": 812 }, { - "__id__": 814 + "__id__": 813 } ], "_prefab": null, @@ -24721,7 +24706,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 812 + "__id__": 811 }, "_enabled": true, "__prefab": null, @@ -24743,7 +24728,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 812 + "__id__": 811 }, "_enabled": true, "__prefab": null, @@ -24782,16 +24767,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 816 + "__id__": 815 }, { - "__id__": 817 + "__id__": 816 } ], "_prefab": null, @@ -24830,7 +24815,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 815 + "__id__": 814 }, "_enabled": true, "__prefab": null, @@ -24852,7 +24837,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 815 + "__id__": 814 }, "_enabled": true, "__prefab": null, @@ -24891,16 +24876,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 819 + "__id__": 818 }, { - "__id__": 820 + "__id__": 819 } ], "_prefab": null, @@ -24939,7 +24924,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 818 + "__id__": 817 }, "_enabled": true, "__prefab": null, @@ -24961,7 +24946,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 818 + "__id__": 817 }, "_enabled": true, "__prefab": null, @@ -25000,16 +24985,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 822 + "__id__": 821 }, { - "__id__": 823 + "__id__": 822 } ], "_prefab": null, @@ -25048,7 +25033,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 821 + "__id__": 820 }, "_enabled": true, "__prefab": null, @@ -25070,7 +25055,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 821 + "__id__": 820 }, "_enabled": true, "__prefab": null, @@ -25109,16 +25094,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 825 + "__id__": 824 }, { - "__id__": 826 + "__id__": 825 } ], "_prefab": null, @@ -25157,7 +25142,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 824 + "__id__": 823 }, "_enabled": true, "__prefab": null, @@ -25179,7 +25164,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 824 + "__id__": 823 }, "_enabled": true, "__prefab": null, @@ -25218,16 +25203,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 828 + "__id__": 827 }, { - "__id__": 829 + "__id__": 828 } ], "_prefab": null, @@ -25266,7 +25251,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 827 + "__id__": 826 }, "_enabled": true, "__prefab": null, @@ -25288,7 +25273,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 827 + "__id__": 826 }, "_enabled": true, "__prefab": null, @@ -25327,16 +25312,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 831 + "__id__": 830 }, { - "__id__": 832 + "__id__": 831 } ], "_prefab": null, @@ -25375,7 +25360,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 830 + "__id__": 829 }, "_enabled": true, "__prefab": null, @@ -25397,7 +25382,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 830 + "__id__": 829 }, "_enabled": true, "__prefab": null, @@ -25436,16 +25421,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 834 + "__id__": 833 }, { - "__id__": 835 + "__id__": 834 } ], "_prefab": null, @@ -25484,7 +25469,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 833 + "__id__": 832 }, "_enabled": true, "__prefab": null, @@ -25506,7 +25491,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 833 + "__id__": 832 }, "_enabled": true, "__prefab": null, @@ -25545,16 +25530,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 837 + "__id__": 836 }, { - "__id__": 838 + "__id__": 837 } ], "_prefab": null, @@ -25593,7 +25578,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 836 + "__id__": 835 }, "_enabled": true, "__prefab": null, @@ -25615,7 +25600,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 836 + "__id__": 835 }, "_enabled": true, "__prefab": null, @@ -25654,16 +25639,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 840 + "__id__": 839 }, { - "__id__": 841 + "__id__": 840 } ], "_prefab": null, @@ -25702,7 +25687,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 839 + "__id__": 838 }, "_enabled": true, "__prefab": null, @@ -25724,7 +25709,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 839 + "__id__": 838 }, "_enabled": true, "__prefab": null, @@ -25763,16 +25748,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 843 + "__id__": 842 }, { - "__id__": 844 + "__id__": 843 } ], "_prefab": null, @@ -25811,7 +25796,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 842 + "__id__": 841 }, "_enabled": true, "__prefab": null, @@ -25833,7 +25818,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 842 + "__id__": 841 }, "_enabled": true, "__prefab": null, @@ -25872,16 +25857,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 846 + "__id__": 845 }, { - "__id__": 847 + "__id__": 846 } ], "_prefab": null, @@ -25920,7 +25905,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 844 }, "_enabled": true, "__prefab": null, @@ -25942,7 +25927,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 844 }, "_enabled": true, "__prefab": null, @@ -25981,16 +25966,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 849 + "__id__": 848 }, { - "__id__": 850 + "__id__": 849 } ], "_prefab": null, @@ -26029,7 +26014,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 848 + "__id__": 847 }, "_enabled": true, "__prefab": null, @@ -26051,7 +26036,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 848 + "__id__": 847 }, "_enabled": true, "__prefab": null, @@ -26090,16 +26075,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 852 + "__id__": 851 }, { - "__id__": 853 + "__id__": 852 } ], "_prefab": null, @@ -26138,7 +26123,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 851 + "__id__": 850 }, "_enabled": true, "__prefab": null, @@ -26160,7 +26145,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 851 + "__id__": 850 }, "_enabled": true, "__prefab": null, @@ -26199,16 +26184,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 855 + "__id__": 854 }, { - "__id__": 856 + "__id__": 855 } ], "_prefab": null, @@ -26247,7 +26232,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 853 }, "_enabled": true, "__prefab": null, @@ -26269,7 +26254,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 854 + "__id__": 853 }, "_enabled": true, "__prefab": null, @@ -26308,16 +26293,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 858 + "__id__": 857 }, { - "__id__": 859 + "__id__": 858 } ], "_prefab": null, @@ -26356,7 +26341,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 857 + "__id__": 856 }, "_enabled": true, "__prefab": null, @@ -26378,7 +26363,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 857 + "__id__": 856 }, "_enabled": true, "__prefab": null, @@ -26417,16 +26402,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 861 + "__id__": 860 }, { - "__id__": 862 + "__id__": 861 } ], "_prefab": null, @@ -26465,7 +26450,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 860 + "__id__": 859 }, "_enabled": true, "__prefab": null, @@ -26487,7 +26472,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 860 + "__id__": 859 }, "_enabled": true, "__prefab": null, @@ -26526,16 +26511,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 864 + "__id__": 863 }, { - "__id__": 865 + "__id__": 864 } ], "_prefab": null, @@ -26574,7 +26559,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 863 + "__id__": 862 }, "_enabled": true, "__prefab": null, @@ -26596,7 +26581,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 863 + "__id__": 862 }, "_enabled": true, "__prefab": null, @@ -26635,16 +26620,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 867 + "__id__": 866 }, { - "__id__": 868 + "__id__": 867 } ], "_prefab": null, @@ -26683,7 +26668,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 866 + "__id__": 865 }, "_enabled": true, "__prefab": null, @@ -26705,7 +26690,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 866 + "__id__": 865 }, "_enabled": true, "__prefab": null, @@ -26744,16 +26729,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 870 + "__id__": 869 }, { - "__id__": 871 + "__id__": 870 } ], "_prefab": null, @@ -26792,7 +26777,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 869 + "__id__": 868 }, "_enabled": true, "__prefab": null, @@ -26814,7 +26799,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 869 + "__id__": 868 }, "_enabled": true, "__prefab": null, @@ -26853,16 +26838,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 873 + "__id__": 872 }, { - "__id__": 874 + "__id__": 873 } ], "_prefab": null, @@ -26901,7 +26886,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 872 + "__id__": 871 }, "_enabled": true, "__prefab": null, @@ -26923,7 +26908,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 872 + "__id__": 871 }, "_enabled": true, "__prefab": null, @@ -26962,16 +26947,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 876 + "__id__": 875 }, { - "__id__": 877 + "__id__": 876 } ], "_prefab": null, @@ -27010,7 +26995,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 875 + "__id__": 874 }, "_enabled": true, "__prefab": null, @@ -27032,7 +27017,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 875 + "__id__": 874 }, "_enabled": true, "__prefab": null, @@ -27071,16 +27056,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 879 + "__id__": 878 }, { - "__id__": 880 + "__id__": 879 } ], "_prefab": null, @@ -27119,7 +27104,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 877 }, "_enabled": true, "__prefab": null, @@ -27141,7 +27126,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 877 }, "_enabled": true, "__prefab": null, @@ -27180,16 +27165,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 882 + "__id__": 881 }, { - "__id__": 883 + "__id__": 882 } ], "_prefab": null, @@ -27228,7 +27213,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 881 + "__id__": 880 }, "_enabled": true, "__prefab": null, @@ -27250,7 +27235,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 881 + "__id__": 880 }, "_enabled": true, "__prefab": null, @@ -27289,16 +27274,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 885 + "__id__": 884 }, { - "__id__": 886 + "__id__": 885 } ], "_prefab": null, @@ -27337,7 +27322,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 884 + "__id__": 883 }, "_enabled": true, "__prefab": null, @@ -27359,7 +27344,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 884 + "__id__": 883 }, "_enabled": true, "__prefab": null, @@ -27398,16 +27383,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 888 + "__id__": 887 }, { - "__id__": 889 + "__id__": 888 } ], "_prefab": null, @@ -27446,7 +27431,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 887 + "__id__": 886 }, "_enabled": true, "__prefab": null, @@ -27468,7 +27453,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 887 + "__id__": 886 }, "_enabled": true, "__prefab": null, @@ -27507,16 +27492,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 891 + "__id__": 890 }, { - "__id__": 892 + "__id__": 891 } ], "_prefab": null, @@ -27555,7 +27540,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 890 + "__id__": 889 }, "_enabled": true, "__prefab": null, @@ -27577,7 +27562,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 890 + "__id__": 889 }, "_enabled": true, "__prefab": null, @@ -27616,16 +27601,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 894 + "__id__": 893 }, { - "__id__": 895 + "__id__": 894 } ], "_prefab": null, @@ -27664,7 +27649,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 893 + "__id__": 892 }, "_enabled": true, "__prefab": null, @@ -27686,7 +27671,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 893 + "__id__": 892 }, "_enabled": true, "__prefab": null, @@ -27725,16 +27710,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 897 + "__id__": 896 }, { - "__id__": 898 + "__id__": 897 } ], "_prefab": null, @@ -27773,7 +27758,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 896 + "__id__": 895 }, "_enabled": true, "__prefab": null, @@ -27795,7 +27780,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 896 + "__id__": 895 }, "_enabled": true, "__prefab": null, @@ -27834,16 +27819,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 900 + "__id__": 899 }, { - "__id__": 901 + "__id__": 900 } ], "_prefab": null, @@ -27882,7 +27867,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 899 + "__id__": 898 }, "_enabled": true, "__prefab": null, @@ -27904,7 +27889,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 899 + "__id__": 898 }, "_enabled": true, "__prefab": null, @@ -27943,16 +27928,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 903 + "__id__": 902 }, { - "__id__": 904 + "__id__": 903 } ], "_prefab": null, @@ -27991,7 +27976,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 902 + "__id__": 901 }, "_enabled": true, "__prefab": null, @@ -28013,7 +27998,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 902 + "__id__": 901 }, "_enabled": true, "__prefab": null, @@ -28052,16 +28037,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 906 + "__id__": 905 }, { - "__id__": 907 + "__id__": 906 } ], "_prefab": null, @@ -28100,7 +28085,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 905 + "__id__": 904 }, "_enabled": true, "__prefab": null, @@ -28122,7 +28107,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 905 + "__id__": 904 }, "_enabled": true, "__prefab": null, @@ -28161,16 +28146,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 909 + "__id__": 908 }, { - "__id__": 910 + "__id__": 909 } ], "_prefab": null, @@ -28209,7 +28194,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 908 + "__id__": 907 }, "_enabled": true, "__prefab": null, @@ -28231,7 +28216,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 908 + "__id__": 907 }, "_enabled": true, "__prefab": null, @@ -28270,16 +28255,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 912 + "__id__": 911 }, { - "__id__": 913 + "__id__": 912 } ], "_prefab": null, @@ -28318,7 +28303,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 911 + "__id__": 910 }, "_enabled": true, "__prefab": null, @@ -28340,7 +28325,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 911 + "__id__": 910 }, "_enabled": true, "__prefab": null, @@ -28379,16 +28364,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 915 + "__id__": 914 }, { - "__id__": 916 + "__id__": 915 } ], "_prefab": null, @@ -28427,7 +28412,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 913 }, "_enabled": true, "__prefab": null, @@ -28449,7 +28434,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 913 }, "_enabled": true, "__prefab": null, @@ -28488,16 +28473,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 918 + "__id__": 917 }, { - "__id__": 919 + "__id__": 918 } ], "_prefab": null, @@ -28536,7 +28521,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 917 + "__id__": 916 }, "_enabled": true, "__prefab": null, @@ -28558,7 +28543,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 917 + "__id__": 916 }, "_enabled": true, "__prefab": null, @@ -28597,16 +28582,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 921 + "__id__": 920 }, { - "__id__": 922 + "__id__": 921 } ], "_prefab": null, @@ -28645,7 +28630,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 920 + "__id__": 919 }, "_enabled": true, "__prefab": null, @@ -28667,7 +28652,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 920 + "__id__": 919 }, "_enabled": true, "__prefab": null, @@ -28706,16 +28691,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 924 + "__id__": 923 }, { - "__id__": 925 + "__id__": 924 } ], "_prefab": null, @@ -28754,7 +28739,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 923 + "__id__": 922 }, "_enabled": true, "__prefab": null, @@ -28776,7 +28761,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 923 + "__id__": 922 }, "_enabled": true, "__prefab": null, @@ -28815,16 +28800,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 927 + "__id__": 926 }, { - "__id__": 928 + "__id__": 927 } ], "_prefab": null, @@ -28863,7 +28848,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 926 + "__id__": 925 }, "_enabled": true, "__prefab": null, @@ -28885,7 +28870,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 926 + "__id__": 925 }, "_enabled": true, "__prefab": null, @@ -28924,16 +28909,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 930 + "__id__": 929 }, { - "__id__": 931 + "__id__": 930 } ], "_prefab": null, @@ -28972,7 +28957,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 929 + "__id__": 928 }, "_enabled": true, "__prefab": null, @@ -28994,7 +28979,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 929 + "__id__": 928 }, "_enabled": true, "__prefab": null, @@ -29033,16 +29018,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 933 + "__id__": 932 }, { - "__id__": 934 + "__id__": 933 } ], "_prefab": null, @@ -29081,7 +29066,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 932 + "__id__": 931 }, "_enabled": true, "__prefab": null, @@ -29103,7 +29088,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 932 + "__id__": 931 }, "_enabled": true, "__prefab": null, @@ -29142,16 +29127,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 936 + "__id__": 935 }, { - "__id__": 937 + "__id__": 936 } ], "_prefab": null, @@ -29190,7 +29175,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 935 + "__id__": 934 }, "_enabled": true, "__prefab": null, @@ -29212,7 +29197,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 935 + "__id__": 934 }, "_enabled": true, "__prefab": null, @@ -29251,16 +29236,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 939 + "__id__": 938 }, { - "__id__": 940 + "__id__": 939 } ], "_prefab": null, @@ -29299,7 +29284,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 938 + "__id__": 937 }, "_enabled": true, "__prefab": null, @@ -29321,7 +29306,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 938 + "__id__": 937 }, "_enabled": true, "__prefab": null, @@ -29360,16 +29345,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 942 + "__id__": 941 }, { - "__id__": 943 + "__id__": 942 } ], "_prefab": null, @@ -29408,7 +29393,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 941 + "__id__": 940 }, "_enabled": true, "__prefab": null, @@ -29430,7 +29415,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 941 + "__id__": 940 }, "_enabled": true, "__prefab": null, @@ -29469,16 +29454,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 945 + "__id__": 944 }, { - "__id__": 946 + "__id__": 945 } ], "_prefab": null, @@ -29517,7 +29502,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 944 + "__id__": 943 }, "_enabled": true, "__prefab": null, @@ -29539,7 +29524,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 944 + "__id__": 943 }, "_enabled": true, "__prefab": null, @@ -29578,16 +29563,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 948 + "__id__": 947 }, { - "__id__": 949 + "__id__": 948 } ], "_prefab": null, @@ -29626,7 +29611,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 947 + "__id__": 946 }, "_enabled": true, "__prefab": null, @@ -29648,7 +29633,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 947 + "__id__": 946 }, "_enabled": true, "__prefab": null, @@ -29687,16 +29672,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 951 + "__id__": 950 }, { - "__id__": 952 + "__id__": 951 } ], "_prefab": null, @@ -29735,7 +29720,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 950 + "__id__": 949 }, "_enabled": true, "__prefab": null, @@ -29757,7 +29742,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 950 + "__id__": 949 }, "_enabled": true, "__prefab": null, @@ -29796,16 +29781,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 954 + "__id__": 953 }, { - "__id__": 955 + "__id__": 954 } ], "_prefab": null, @@ -29844,7 +29829,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 953 + "__id__": 952 }, "_enabled": true, "__prefab": null, @@ -29866,7 +29851,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 953 + "__id__": 952 }, "_enabled": true, "__prefab": null, @@ -29905,16 +29890,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 957 + "__id__": 956 }, { - "__id__": 958 + "__id__": 957 } ], "_prefab": null, @@ -29953,7 +29938,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 956 + "__id__": 955 }, "_enabled": true, "__prefab": null, @@ -29975,7 +29960,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 956 + "__id__": 955 }, "_enabled": true, "__prefab": null, @@ -30014,16 +29999,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 960 + "__id__": 959 }, { - "__id__": 961 + "__id__": 960 } ], "_prefab": null, @@ -30062,7 +30047,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 959 + "__id__": 958 }, "_enabled": true, "__prefab": null, @@ -30084,7 +30069,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 959 + "__id__": 958 }, "_enabled": true, "__prefab": null, @@ -30123,16 +30108,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 963 + "__id__": 962 }, { - "__id__": 964 + "__id__": 963 } ], "_prefab": null, @@ -30171,7 +30156,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 962 + "__id__": 961 }, "_enabled": true, "__prefab": null, @@ -30193,7 +30178,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 962 + "__id__": 961 }, "_enabled": true, "__prefab": null, @@ -30232,16 +30217,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 966 + "__id__": 965 }, { - "__id__": 967 + "__id__": 966 } ], "_prefab": null, @@ -30280,7 +30265,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 965 + "__id__": 964 }, "_enabled": true, "__prefab": null, @@ -30302,7 +30287,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 965 + "__id__": 964 }, "_enabled": true, "__prefab": null, @@ -30341,16 +30326,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 969 + "__id__": 968 }, { - "__id__": 970 + "__id__": 969 } ], "_prefab": null, @@ -30389,7 +30374,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 968 + "__id__": 967 }, "_enabled": true, "__prefab": null, @@ -30411,7 +30396,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 968 + "__id__": 967 }, "_enabled": true, "__prefab": null, @@ -30450,16 +30435,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 972 + "__id__": 971 }, { - "__id__": 973 + "__id__": 972 } ], "_prefab": null, @@ -30498,7 +30483,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 971 + "__id__": 970 }, "_enabled": true, "__prefab": null, @@ -30520,7 +30505,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 971 + "__id__": 970 }, "_enabled": true, "__prefab": null, @@ -30559,16 +30544,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 975 + "__id__": 974 }, { - "__id__": 976 + "__id__": 975 } ], "_prefab": null, @@ -30607,7 +30592,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 974 + "__id__": 973 }, "_enabled": true, "__prefab": null, @@ -30629,7 +30614,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 974 + "__id__": 973 }, "_enabled": true, "__prefab": null, @@ -30668,16 +30653,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 978 + "__id__": 977 }, { - "__id__": 979 + "__id__": 978 } ], "_prefab": null, @@ -30716,7 +30701,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 977 + "__id__": 976 }, "_enabled": true, "__prefab": null, @@ -30738,7 +30723,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 977 + "__id__": 976 }, "_enabled": true, "__prefab": null, @@ -30777,16 +30762,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 784 + "__id__": 783 }, "_children": [], "_active": true, "_components": [ { - "__id__": 981 + "__id__": 980 }, { - "__id__": 982 + "__id__": 981 } ], "_prefab": null, @@ -30825,7 +30810,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 980 + "__id__": 979 }, "_enabled": true, "__prefab": null, @@ -30847,7 +30832,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 980 + "__id__": 979 }, "_enabled": true, "__prefab": null, @@ -30886,7 +30871,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, @@ -30908,221 +30893,221 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 784 + "__id__": 783 }, "_enabled": true, "__prefab": null, "_objects": [ { - "__id__": 985 + "__id__": 984 }, { - "__id__": 986 + "__id__": 985 } ], "_boosters": [ { - "__id__": 987 + "__id__": 986 } ], "_spawnPoints": [ { - "__id__": 785 + "__id__": 784 }, { - "__id__": 788 + "__id__": 787 }, { - "__id__": 791 + "__id__": 790 }, { - "__id__": 794 + "__id__": 793 }, { - "__id__": 797 + "__id__": 796 }, { - "__id__": 800 + "__id__": 799 }, { - "__id__": 803 + "__id__": 802 }, { - "__id__": 806 + "__id__": 805 }, { - "__id__": 809 + "__id__": 808 }, { - "__id__": 812 + "__id__": 811 }, { - "__id__": 815 + "__id__": 814 }, { - "__id__": 818 + "__id__": 817 }, { - "__id__": 821 + "__id__": 820 }, { - "__id__": 824 + "__id__": 823 }, { - "__id__": 827 + "__id__": 826 }, { - "__id__": 830 + "__id__": 829 }, { - "__id__": 833 + "__id__": 832 }, { - "__id__": 836 + "__id__": 835 }, { - "__id__": 839 + "__id__": 838 }, { - "__id__": 842 + "__id__": 841 }, { - "__id__": 845 + "__id__": 844 }, { - "__id__": 848 + "__id__": 847 }, { - "__id__": 851 + "__id__": 850 }, { - "__id__": 854 + "__id__": 853 }, { - "__id__": 857 + "__id__": 856 }, { - "__id__": 860 + "__id__": 859 }, { - "__id__": 863 + "__id__": 862 }, { - "__id__": 866 + "__id__": 865 }, { - "__id__": 869 + "__id__": 868 }, { - "__id__": 872 + "__id__": 871 }, { - "__id__": 875 + "__id__": 874 }, { - "__id__": 878 + "__id__": 877 }, { - "__id__": 881 + "__id__": 880 }, { - "__id__": 884 + "__id__": 883 }, { - "__id__": 887 + "__id__": 886 }, { - "__id__": 890 + "__id__": 889 }, { - "__id__": 893 + "__id__": 892 }, { - "__id__": 896 + "__id__": 895 }, { - "__id__": 899 + "__id__": 898 }, { - "__id__": 902 + "__id__": 901 }, { - "__id__": 905 + "__id__": 904 }, { - "__id__": 908 + "__id__": 907 }, { - "__id__": 911 + "__id__": 910 }, { - "__id__": 914 + "__id__": 913 }, { - "__id__": 917 + "__id__": 916 }, { - "__id__": 920 + "__id__": 919 }, { - "__id__": 923 + "__id__": 922 }, { - "__id__": 926 + "__id__": 925 }, { - "__id__": 929 + "__id__": 928 }, { - "__id__": 932 + "__id__": 931 }, { - "__id__": 935 + "__id__": 934 }, { - "__id__": 938 + "__id__": 937 }, { - "__id__": 941 + "__id__": 940 }, { - "__id__": 944 + "__id__": 943 }, { - "__id__": 947 + "__id__": 946 }, { - "__id__": 950 + "__id__": 949 }, { - "__id__": 953 + "__id__": 952 }, { - "__id__": 956 + "__id__": 955 }, { - "__id__": 959 + "__id__": 958 }, { - "__id__": 962 + "__id__": 961 }, { - "__id__": 965 + "__id__": 964 }, { - "__id__": 968 + "__id__": 967 }, { - "__id__": 971 + "__id__": 970 }, { - "__id__": 974 + "__id__": 973 }, { - "__id__": 977 + "__id__": 976 }, { - "__id__": 980 + "__id__": 979 } ], "_spawnTime": 1.5, @@ -31175,10 +31160,10 @@ "_active": true, "_components": [ { - "__id__": 989 + "__id__": 988 }, { - "__id__": 990 + "__id__": 989 } ], "_prefab": null, @@ -31217,7 +31202,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 988 + "__id__": 987 }, "_enabled": true, "__prefab": null, @@ -31239,7 +31224,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 988 + "__id__": 987 }, "_enabled": true, "__prefab": null, @@ -31284,7 +31269,7 @@ "_active": true, "_components": [ { - "__id__": 992 + "__id__": 991 } ], "_prefab": null, @@ -31323,7 +31308,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 991 + "__id__": 990 }, "_enabled": true, "__prefab": null, @@ -31349,16 +31334,16 @@ }, "_children": [ { - "__id__": 994 + "__id__": 993 }, { - "__id__": 1129 + "__id__": 1128 } ], "_active": true, "_components": [ { - "__id__": 1264 + "__id__": 1263 } ], "_prefab": null, @@ -31397,26 +31382,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 993 + "__id__": 992 }, "_children": [ { - "__id__": 995 + "__id__": 994 }, { - "__id__": 1000 + "__id__": 999 } ], "_active": true, "_components": [ + { + "__id__": 1125 + }, { "__id__": 1126 }, { "__id__": 1127 - }, - { - "__id__": 1128 } ], "_prefab": null, @@ -31455,11 +31440,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 994 + "__id__": 993 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 995 + }, { "__id__": 996 }, @@ -31468,9 +31456,6 @@ }, { "__id__": 998 - }, - { - "__id__": 999 } ], "_prefab": null, @@ -31509,7 +31494,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 995 + "__id__": 994 }, "_enabled": true, "__prefab": null, @@ -31531,7 +31516,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 995 + "__id__": 994 }, "_enabled": true, "__prefab": null, @@ -31570,7 +31555,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 995 + "__id__": 994 }, "_enabled": true, "__prefab": null, @@ -31598,7 +31583,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 995 + "__id__": 994 }, "_enabled": true, "__prefab": null, @@ -31626,20 +31611,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 994 + "__id__": 993 }, "_children": [ { - "__id__": 1001 + "__id__": 1000 }, { - "__id__": 1060 + "__id__": 1059 } ], "_active": false, "_components": [ { - "__id__": 1125 + "__id__": 1124 } ], "_prefab": null, @@ -31678,19 +31663,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1000 + "__id__": 999 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1002 + "__id__": 1001 + }, + { + "__id__": 1057 }, { "__id__": 1058 - }, - { - "__id__": 1059 } ], "_prefab": null, @@ -31729,7 +31714,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1001 + "__id__": 1000 }, "_enabled": true, "__prefab": null, @@ -31742,60 +31727,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1003 + "__id__": 1002 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1004 + "__id__": 1003 }, "startSize": { - "__id__": 1004 + "__id__": 1003 }, "startSizeY": { - "__id__": 1005 + "__id__": 1004 }, "startSizeZ": { - "__id__": 1006 + "__id__": 1005 }, "startSpeed": { - "__id__": 1007 + "__id__": 1006 }, "startRotation3D": false, "startRotationX": { - "__id__": 1008 + "__id__": 1007 }, "startRotationY": { - "__id__": 1009 + "__id__": 1008 }, "startRotationZ": { - "__id__": 1010 + "__id__": 1009 }, "startRotation": { - "__id__": 1010 + "__id__": 1009 }, "startDelay": { - "__id__": 1011 + "__id__": 1010 }, "startLifetime": { - "__id__": 1012 + "__id__": 1011 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1013 + "__id__": 1012 }, "rateOverTime": { - "__id__": 1014 + "__id__": 1013 }, "rateOverDistance": { - "__id__": 1015 + "__id__": 1014 }, "bursts": [ { - "__id__": 1016 + "__id__": 1015 } ], "_renderCulling": false, @@ -31806,37 +31791,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1018 + "__id__": 1017 }, "_shapeModule": { - "__id__": 1020 + "__id__": 1019 }, "_sizeOvertimeModule": { - "__id__": 1022 + "__id__": 1021 }, "_velocityOvertimeModule": { - "__id__": 1028 + "__id__": 1027 }, "_forceOvertimeModule": { - "__id__": 1034 + "__id__": 1033 }, "_limitVelocityOvertimeModule": { - "__id__": 1038 + "__id__": 1037 }, "_rotationOvertimeModule": { - "__id__": 1043 + "__id__": 1042 }, "_textureAnimationModule": { - "__id__": 1047 + "__id__": 1046 }, "_noiseModule": { - "__id__": 1051 + "__id__": 1050 }, "_trailModule": { - "__id__": 1052 + "__id__": 1051 }, "renderer": { - "__id__": 1057 + "__id__": 1056 }, "_prewarm": false, "_capacity": 8, @@ -31936,7 +31921,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1017 + "__id__": 1016 } }, { @@ -31949,7 +31934,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1019 + "__id__": 1018 } }, { @@ -31978,7 +31963,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1021 + "__id__": 1020 }, "length": 5, "boxThickness": { @@ -32019,23 +32004,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1023 + "__id__": 1022 }, "x": { - "__id__": 1025 + "__id__": 1024 }, "y": { - "__id__": 1026 + "__id__": 1025 }, "z": { - "__id__": 1027 + "__id__": 1026 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1024 + "__id__": 1023 }, "multiplier": 1 }, @@ -32096,16 +32081,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1029 + "__id__": 1028 }, "y": { - "__id__": 1030 + "__id__": 1029 }, "z": { - "__id__": 1032 + "__id__": 1031 }, "speedModifier": { - "__id__": 1033 + "__id__": 1032 }, "space": 1 }, @@ -32119,7 +32104,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1031 + "__id__": 1030 }, "multiplier": 1 }, @@ -32174,13 +32159,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1035 + "__id__": 1034 }, "y": { - "__id__": 1036 + "__id__": 1035 }, "z": { - "__id__": 1037 + "__id__": 1036 }, "space": 1 }, @@ -32206,16 +32191,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1039 + "__id__": 1038 }, "limitY": { - "__id__": 1040 + "__id__": 1039 }, "limitZ": { - "__id__": 1041 + "__id__": 1040 }, "limit": { - "__id__": 1042 + "__id__": 1041 }, "dampen": 3, "separateAxes": false, @@ -32250,13 +32235,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1044 + "__id__": 1043 }, "y": { - "__id__": 1045 + "__id__": 1044 }, "z": { - "__id__": 1046 + "__id__": 1045 } }, { @@ -32290,10 +32275,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1048 + "__id__": 1047 }, "startFrame": { - "__id__": 1050 + "__id__": 1049 }, "cycleCount": 0, "_flipU": 0, @@ -32306,7 +32291,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1049 + "__id__": 1048 }, "multiplier": 1 }, @@ -32373,25 +32358,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1053 + "__id__": 1052 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1054 + "__id__": 1053 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1055 + "__id__": 1054 }, "colorOvertime": { - "__id__": 1056 + "__id__": 1055 }, "_space": 0, "_particleSystem": { - "__id__": 1002 + "__id__": 1001 } }, { @@ -32452,7 +32437,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1001 + "__id__": 1000 }, "_enabled": true, "__prefab": null, @@ -32464,7 +32449,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1001 + "__id__": 1000 }, "_enabled": true, "__prefab": null, @@ -32486,19 +32471,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1000 + "__id__": 999 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1061 + "__id__": 1060 + }, + { + "__id__": 1122 }, { "__id__": 1123 - }, - { - "__id__": 1124 } ], "_prefab": null, @@ -32537,7 +32522,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1060 + "__id__": 1059 }, "_enabled": true, "__prefab": null, @@ -32550,60 +32535,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1062 + "__id__": 1061 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1063 + "__id__": 1062 }, "startSize": { - "__id__": 1063 + "__id__": 1062 }, "startSizeY": { - "__id__": 1064 + "__id__": 1063 }, "startSizeZ": { - "__id__": 1065 + "__id__": 1064 }, "startSpeed": { - "__id__": 1066 + "__id__": 1065 }, "startRotation3D": false, "startRotationX": { - "__id__": 1067 + "__id__": 1066 }, "startRotationY": { - "__id__": 1068 + "__id__": 1067 }, "startRotationZ": { - "__id__": 1069 + "__id__": 1068 }, "startRotation": { - "__id__": 1069 + "__id__": 1068 }, "startDelay": { - "__id__": 1070 + "__id__": 1069 }, "startLifetime": { - "__id__": 1071 + "__id__": 1070 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1072 + "__id__": 1071 }, "rateOverTime": { - "__id__": 1073 + "__id__": 1072 }, "rateOverDistance": { - "__id__": 1074 + "__id__": 1073 }, "bursts": [ { - "__id__": 1075 + "__id__": 1074 } ], "_renderCulling": false, @@ -32614,37 +32599,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1077 + "__id__": 1076 }, "_shapeModule": { - "__id__": 1086 + "__id__": 1085 }, "_sizeOvertimeModule": { - "__id__": 1088 + "__id__": 1087 }, "_velocityOvertimeModule": { - "__id__": 1094 + "__id__": 1093 }, "_forceOvertimeModule": { - "__id__": 1099 + "__id__": 1098 }, "_limitVelocityOvertimeModule": { - "__id__": 1103 + "__id__": 1102 }, "_rotationOvertimeModule": { - "__id__": 1108 + "__id__": 1107 }, "_textureAnimationModule": { - "__id__": 1112 + "__id__": 1111 }, "_noiseModule": { - "__id__": 1116 + "__id__": 1115 }, "_trailModule": { - "__id__": 1117 + "__id__": 1116 }, "renderer": { - "__id__": 1122 + "__id__": 1121 }, "_prewarm": false, "_capacity": 100, @@ -32742,7 +32727,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1076 + "__id__": 1075 } }, { @@ -32755,38 +32740,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1078 + "__id__": 1077 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1079 + "__id__": 1078 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1079 + }, { "__id__": 1080 }, { "__id__": 1081 - }, - { - "__id__": 1082 } ], "alphaKeys": [ + { + "__id__": 1082 + }, { "__id__": 1083 }, { "__id__": 1084 - }, - { - "__id__": 1085 } ], "mode": 0 @@ -32854,7 +32839,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1087 + "__id__": 1086 }, "length": 5, "boxThickness": { @@ -32895,23 +32880,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1089 + "__id__": 1088 }, "x": { - "__id__": 1091 + "__id__": 1090 }, "y": { - "__id__": 1092 + "__id__": 1091 }, "z": { - "__id__": 1093 + "__id__": 1092 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1090 + "__id__": 1089 }, "multiplier": 1 }, @@ -32972,16 +32957,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1095 + "__id__": 1094 }, "y": { - "__id__": 1096 + "__id__": 1095 }, "z": { - "__id__": 1097 + "__id__": 1096 }, "speedModifier": { - "__id__": 1098 + "__id__": 1097 }, "space": 1 }, @@ -33013,13 +32998,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1100 + "__id__": 1099 }, "y": { - "__id__": 1101 + "__id__": 1100 }, "z": { - "__id__": 1102 + "__id__": 1101 }, "space": 1 }, @@ -33045,16 +33030,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1104 + "__id__": 1103 }, "limitY": { - "__id__": 1105 + "__id__": 1104 }, "limitZ": { - "__id__": 1106 + "__id__": 1105 }, "limit": { - "__id__": 1107 + "__id__": 1106 }, "dampen": 0.05, "separateAxes": false, @@ -33089,13 +33074,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1109 + "__id__": 1108 }, "y": { - "__id__": 1110 + "__id__": 1109 }, "z": { - "__id__": 1111 + "__id__": 1110 } }, { @@ -33127,10 +33112,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1113 + "__id__": 1112 }, "startFrame": { - "__id__": 1115 + "__id__": 1114 }, "cycleCount": 1, "_flipU": 0, @@ -33143,7 +33128,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1114 + "__id__": 1113 }, "multiplier": 1 }, @@ -33211,25 +33196,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1118 + "__id__": 1117 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1119 + "__id__": 1118 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1120 + "__id__": 1119 }, "colorOvertime": { - "__id__": 1121 + "__id__": 1120 }, "_space": 0, "_particleSystem": { - "__id__": 1061 + "__id__": 1060 } }, { @@ -33290,7 +33275,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1060 + "__id__": 1059 }, "_enabled": true, "__prefab": null, @@ -33302,7 +33287,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1060 + "__id__": 1059 }, "_enabled": true, "__prefab": null, @@ -33324,7 +33309,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1000 + "__id__": 999 }, "_enabled": true, "__prefab": null, @@ -33346,7 +33331,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 994 + "__id__": 993 }, "_enabled": true, "__prefab": null, @@ -33368,15 +33353,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 994 + "__id__": 993 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 998 + "__id__": 997 }, "_animation": { - "__id__": 1128 + "__id__": 1127 }, "_force": 40, "_soundFx": { @@ -33392,7 +33377,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 994 + "__id__": 993 }, "_enabled": true, "__prefab": null, @@ -33415,26 +33400,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 993 + "__id__": 992 }, "_children": [ { - "__id__": 1130 + "__id__": 1129 }, { - "__id__": 1135 + "__id__": 1134 } ], "_active": true, "_components": [ + { + "__id__": 1260 + }, { "__id__": 1261 }, { "__id__": 1262 - }, - { - "__id__": 1263 } ], "_prefab": null, @@ -33473,11 +33458,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1129 + "__id__": 1128 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1130 + }, { "__id__": 1131 }, @@ -33486,9 +33474,6 @@ }, { "__id__": 1133 - }, - { - "__id__": 1134 } ], "_prefab": null, @@ -33527,7 +33512,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1130 + "__id__": 1129 }, "_enabled": true, "__prefab": null, @@ -33549,7 +33534,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1130 + "__id__": 1129 }, "_enabled": true, "__prefab": null, @@ -33588,7 +33573,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1130 + "__id__": 1129 }, "_enabled": true, "__prefab": null, @@ -33616,7 +33601,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1130 + "__id__": 1129 }, "_enabled": true, "__prefab": null, @@ -33644,20 +33629,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1129 + "__id__": 1128 }, "_children": [ { - "__id__": 1136 + "__id__": 1135 }, { - "__id__": 1195 + "__id__": 1194 } ], "_active": false, "_components": [ { - "__id__": 1260 + "__id__": 1259 } ], "_prefab": null, @@ -33696,19 +33681,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1135 + "__id__": 1134 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1137 + "__id__": 1136 + }, + { + "__id__": 1192 }, { "__id__": 1193 - }, - { - "__id__": 1194 } ], "_prefab": null, @@ -33747,7 +33732,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1136 + "__id__": 1135 }, "_enabled": true, "__prefab": null, @@ -33760,60 +33745,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1138 + "__id__": 1137 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1139 + "__id__": 1138 }, "startSize": { - "__id__": 1139 + "__id__": 1138 }, "startSizeY": { - "__id__": 1140 + "__id__": 1139 }, "startSizeZ": { - "__id__": 1141 + "__id__": 1140 }, "startSpeed": { - "__id__": 1142 + "__id__": 1141 }, "startRotation3D": false, "startRotationX": { - "__id__": 1143 + "__id__": 1142 }, "startRotationY": { - "__id__": 1144 + "__id__": 1143 }, "startRotationZ": { - "__id__": 1145 + "__id__": 1144 }, "startRotation": { - "__id__": 1145 + "__id__": 1144 }, "startDelay": { - "__id__": 1146 + "__id__": 1145 }, "startLifetime": { - "__id__": 1147 + "__id__": 1146 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1148 + "__id__": 1147 }, "rateOverTime": { - "__id__": 1149 + "__id__": 1148 }, "rateOverDistance": { - "__id__": 1150 + "__id__": 1149 }, "bursts": [ { - "__id__": 1151 + "__id__": 1150 } ], "_renderCulling": false, @@ -33824,37 +33809,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1153 + "__id__": 1152 }, "_shapeModule": { - "__id__": 1155 + "__id__": 1154 }, "_sizeOvertimeModule": { - "__id__": 1157 + "__id__": 1156 }, "_velocityOvertimeModule": { - "__id__": 1163 + "__id__": 1162 }, "_forceOvertimeModule": { - "__id__": 1169 + "__id__": 1168 }, "_limitVelocityOvertimeModule": { - "__id__": 1173 + "__id__": 1172 }, "_rotationOvertimeModule": { - "__id__": 1178 + "__id__": 1177 }, "_textureAnimationModule": { - "__id__": 1182 + "__id__": 1181 }, "_noiseModule": { - "__id__": 1186 + "__id__": 1185 }, "_trailModule": { - "__id__": 1187 + "__id__": 1186 }, "renderer": { - "__id__": 1192 + "__id__": 1191 }, "_prewarm": false, "_capacity": 8, @@ -33954,7 +33939,7 @@ "_repeatCount": 1, "repeatInterval": 0, "count": { - "__id__": 1152 + "__id__": 1151 } }, { @@ -33967,7 +33952,7 @@ "__type__": "cc.ColorOvertimeModule", "_enable": false, "color": { - "__id__": 1154 + "__id__": 1153 } }, { @@ -33996,7 +33981,7 @@ "arcMode": 0, "arcSpread": 11.4, "arcSpeed": { - "__id__": 1156 + "__id__": 1155 }, "length": 5, "boxThickness": { @@ -34037,23 +34022,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1158 + "__id__": 1157 }, "x": { - "__id__": 1160 + "__id__": 1159 }, "y": { - "__id__": 1161 + "__id__": 1160 }, "z": { - "__id__": 1162 + "__id__": 1161 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1159 + "__id__": 1158 }, "multiplier": 1 }, @@ -34114,16 +34099,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": true, "x": { - "__id__": 1164 + "__id__": 1163 }, "y": { - "__id__": 1165 + "__id__": 1164 }, "z": { - "__id__": 1167 + "__id__": 1166 }, "speedModifier": { - "__id__": 1168 + "__id__": 1167 }, "space": 1 }, @@ -34137,7 +34122,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1166 + "__id__": 1165 }, "multiplier": 1 }, @@ -34192,13 +34177,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1170 + "__id__": 1169 }, "y": { - "__id__": 1171 + "__id__": 1170 }, "z": { - "__id__": 1172 + "__id__": 1171 }, "space": 1 }, @@ -34224,16 +34209,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": false, "limitX": { - "__id__": 1174 + "__id__": 1173 }, "limitY": { - "__id__": 1175 + "__id__": 1174 }, "limitZ": { - "__id__": 1176 + "__id__": 1175 }, "limit": { - "__id__": 1177 + "__id__": 1176 }, "dampen": 3, "separateAxes": false, @@ -34268,13 +34253,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1179 + "__id__": 1178 }, "y": { - "__id__": 1180 + "__id__": 1179 }, "z": { - "__id__": 1181 + "__id__": 1180 } }, { @@ -34308,10 +34293,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1183 + "__id__": 1182 }, "startFrame": { - "__id__": 1185 + "__id__": 1184 }, "cycleCount": 0, "_flipU": 0, @@ -34324,7 +34309,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1184 + "__id__": 1183 }, "multiplier": 1 }, @@ -34391,25 +34376,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1188 + "__id__": 1187 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1189 + "__id__": 1188 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1190 + "__id__": 1189 }, "colorOvertime": { - "__id__": 1191 + "__id__": 1190 }, "_space": 0, "_particleSystem": { - "__id__": 1137 + "__id__": 1136 } }, { @@ -34470,7 +34455,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1136 + "__id__": 1135 }, "_enabled": true, "__prefab": null, @@ -34482,7 +34467,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1136 + "__id__": 1135 }, "_enabled": true, "__prefab": null, @@ -34504,19 +34489,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1135 + "__id__": 1134 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1196 + "__id__": 1195 + }, + { + "__id__": 1257 }, { "__id__": 1258 - }, - { - "__id__": 1259 } ], "_prefab": null, @@ -34555,7 +34540,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1195 + "__id__": 1194 }, "_enabled": true, "__prefab": null, @@ -34568,60 +34553,60 @@ ], "_visFlags": 0, "startColor": { - "__id__": 1197 + "__id__": 1196 }, "scaleSpace": 1, "startSize3D": false, "startSizeX": { - "__id__": 1198 + "__id__": 1197 }, "startSize": { - "__id__": 1198 + "__id__": 1197 }, "startSizeY": { - "__id__": 1199 + "__id__": 1198 }, "startSizeZ": { - "__id__": 1200 + "__id__": 1199 }, "startSpeed": { - "__id__": 1201 + "__id__": 1200 }, "startRotation3D": false, "startRotationX": { - "__id__": 1202 + "__id__": 1201 }, "startRotationY": { - "__id__": 1203 + "__id__": 1202 }, "startRotationZ": { - "__id__": 1204 + "__id__": 1203 }, "startRotation": { - "__id__": 1204 + "__id__": 1203 }, "startDelay": { - "__id__": 1205 + "__id__": 1204 }, "startLifetime": { - "__id__": 1206 + "__id__": 1205 }, "duration": 0.5, "loop": false, "simulationSpeed": 1, "playOnAwake": true, "gravityModifier": { - "__id__": 1207 + "__id__": 1206 }, "rateOverTime": { - "__id__": 1208 + "__id__": 1207 }, "rateOverDistance": { - "__id__": 1209 + "__id__": 1208 }, "bursts": [ { - "__id__": 1210 + "__id__": 1209 } ], "_renderCulling": false, @@ -34632,37 +34617,37 @@ "_dataCulling": false, "enableCulling": false, "_colorOverLifetimeModule": { - "__id__": 1212 + "__id__": 1211 }, "_shapeModule": { - "__id__": 1221 + "__id__": 1220 }, "_sizeOvertimeModule": { - "__id__": 1223 + "__id__": 1222 }, "_velocityOvertimeModule": { - "__id__": 1229 + "__id__": 1228 }, "_forceOvertimeModule": { - "__id__": 1234 + "__id__": 1233 }, "_limitVelocityOvertimeModule": { - "__id__": 1238 + "__id__": 1237 }, "_rotationOvertimeModule": { - "__id__": 1243 + "__id__": 1242 }, "_textureAnimationModule": { - "__id__": 1247 + "__id__": 1246 }, "_noiseModule": { - "__id__": 1251 + "__id__": 1250 }, "_trailModule": { - "__id__": 1252 + "__id__": 1251 }, "renderer": { - "__id__": 1257 + "__id__": 1256 }, "_prewarm": false, "_capacity": 100, @@ -34760,7 +34745,7 @@ "_repeatCount": 1, "repeatInterval": 1, "count": { - "__id__": 1211 + "__id__": 1210 } }, { @@ -34773,38 +34758,38 @@ "__type__": "cc.ColorOvertimeModule", "_enable": true, "color": { - "__id__": 1213 + "__id__": 1212 } }, { "__type__": "cc.GradientRange", "_mode": 1, "gradient": { - "__id__": 1214 + "__id__": 1213 } }, { "__type__": "cc.Gradient", "colorKeys": [ + { + "__id__": 1214 + }, { "__id__": 1215 }, { "__id__": 1216 - }, - { - "__id__": 1217 } ], "alphaKeys": [ + { + "__id__": 1217 + }, { "__id__": 1218 }, { "__id__": 1219 - }, - { - "__id__": 1220 } ], "mode": 0 @@ -34872,7 +34857,7 @@ "arcMode": 0, "arcSpread": 0, "arcSpeed": { - "__id__": 1222 + "__id__": 1221 }, "length": 5, "boxThickness": { @@ -34913,23 +34898,23 @@ "_enable": true, "separateAxes": false, "size": { - "__id__": 1224 + "__id__": 1223 }, "x": { - "__id__": 1226 + "__id__": 1225 }, "y": { - "__id__": 1227 + "__id__": 1226 }, "z": { - "__id__": 1228 + "__id__": 1227 } }, { "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1225 + "__id__": 1224 }, "multiplier": 1 }, @@ -34990,16 +34975,16 @@ "__type__": "cc.VelocityOvertimeModule", "_enable": false, "x": { - "__id__": 1230 + "__id__": 1229 }, "y": { - "__id__": 1231 + "__id__": 1230 }, "z": { - "__id__": 1232 + "__id__": 1231 }, "speedModifier": { - "__id__": 1233 + "__id__": 1232 }, "space": 1 }, @@ -35031,13 +35016,13 @@ "__type__": "cc.ForceOvertimeModule", "_enable": false, "x": { - "__id__": 1235 + "__id__": 1234 }, "y": { - "__id__": 1236 + "__id__": 1235 }, "z": { - "__id__": 1237 + "__id__": 1236 }, "space": 1 }, @@ -35063,16 +35048,16 @@ "__type__": "cc.LimitVelocityOvertimeModule", "_enable": true, "limitX": { - "__id__": 1239 + "__id__": 1238 }, "limitY": { - "__id__": 1240 + "__id__": 1239 }, "limitZ": { - "__id__": 1241 + "__id__": 1240 }, "limit": { - "__id__": 1242 + "__id__": 1241 }, "dampen": 0.05, "separateAxes": false, @@ -35107,13 +35092,13 @@ "_enable": true, "_separateAxes": false, "x": { - "__id__": 1244 + "__id__": 1243 }, "y": { - "__id__": 1245 + "__id__": 1244 }, "z": { - "__id__": 1246 + "__id__": 1245 } }, { @@ -35145,10 +35130,10 @@ "_mode": 0, "animation": 0, "frameOverTime": { - "__id__": 1248 + "__id__": 1247 }, "startFrame": { - "__id__": 1250 + "__id__": 1249 }, "cycleCount": 1, "_flipU": 0, @@ -35161,7 +35146,7 @@ "__type__": "cc.CurveRange", "mode": 1, "spline": { - "__id__": 1249 + "__id__": 1248 }, "multiplier": 1 }, @@ -35229,25 +35214,25 @@ "_enable": false, "mode": 0, "lifeTime": { - "__id__": 1253 + "__id__": 1252 }, "_minParticleDistance": 0.1, "existWithParticles": true, "textureMode": 0, "widthFromParticle": true, "widthRatio": { - "__id__": 1254 + "__id__": 1253 }, "colorFromParticle": false, "colorOverTrail": { - "__id__": 1255 + "__id__": 1254 }, "colorOvertime": { - "__id__": 1256 + "__id__": 1255 }, "_space": 0, "_particleSystem": { - "__id__": 1196 + "__id__": 1195 } }, { @@ -35308,7 +35293,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1195 + "__id__": 1194 }, "_enabled": true, "__prefab": null, @@ -35320,7 +35305,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1195 + "__id__": 1194 }, "_enabled": true, "__prefab": null, @@ -35342,7 +35327,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1135 + "__id__": 1134 }, "_enabled": true, "__prefab": null, @@ -35364,7 +35349,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1129 + "__id__": 1128 }, "_enabled": true, "__prefab": null, @@ -35386,15 +35371,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1129 + "__id__": 1128 }, "_enabled": true, "__prefab": null, "_collider": { - "__id__": 1133 + "__id__": 1132 }, "_animation": { - "__id__": 1263 + "__id__": 1262 }, "_force": 40, "_soundFx": { @@ -35410,7 +35395,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1129 + "__id__": 1128 }, "_enabled": true, "__prefab": null, @@ -35433,7 +35418,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 992 }, "_enabled": true, "__prefab": null, @@ -35459,19 +35444,19 @@ }, "_children": [ { - "__id__": 1266 + "__id__": 1265 }, { - "__id__": 1269 + "__id__": 1268 } ], "_active": true, "_components": [ { - "__id__": 1274 + "__id__": 1272 }, { - "__id__": 1275 + "__id__": 1273 } ], "_prefab": null, @@ -35510,16 +35495,16 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1265 + "__id__": 1264 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1267 + "__id__": 1266 }, { - "__id__": 1268 + "__id__": 1267 } ], "_prefab": null, @@ -35558,7 +35543,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1266 + "__id__": 1265 }, "_enabled": true, "__prefab": null, @@ -35580,7 +35565,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1266 + "__id__": 1265 }, "_enabled": true, "__prefab": null, @@ -35616,22 +35601,19 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1265 + "__id__": 1264 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1269 + }, { "__id__": 1270 }, { "__id__": 1271 - }, - { - "__id__": 1272 - }, - { - "__id__": 1273 } ], "_prefab": null, @@ -35670,7 +35652,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1268 }, "_enabled": true, "__prefab": null, @@ -35692,7 +35674,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1268 }, "_enabled": true, "__prefab": null, @@ -35757,7 +35739,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1269 + "__id__": 1268 }, "_enabled": true, "__prefab": null, @@ -35781,25 +35763,13 @@ "_lockFlags": 0, "_id": "31Fx2973dAt4puJYDiv8Pp" }, - { - "__type__": "cc.LabelOutline", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 1269 - }, - "_enabled": true, - "__prefab": null, - "_id": "48xN1y1cZE2q+KWSB/x1mb" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1265 + "__id__": 1264 }, "_enabled": true, "__prefab": null, @@ -35821,22 +35791,22 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1265 + "__id__": 1264 }, "_enabled": true, "__prefab": null, "_popup": { - "__id__": 1266 + "__id__": 1265 }, "_label": { - "__id__": 1271 + "__id__": 1270 }, "_stickers": [ { - "__id__": 1276 + "__id__": 1274 }, { - "__id__": 1277 + "__id__": 1275 } ], "_id": "ebx5eaCQhFnYEdDdBHEy9W" @@ -35899,10 +35869,10 @@ "__expectedType__": "cc.Prefab" }, "_topContainer": { - "__id__": 1280 + "__id__": 1278 }, "_ballHolder": { - "__id__": 991 + "__id__": 990 }, "_ballSpawnPosition": { "__type__": "cc.Vec3", @@ -35949,7 +35919,7 @@ "_active": true, "_components": [ { - "__id__": 1281 + "__id__": 1279 } ], "_prefab": null, @@ -35988,7 +35958,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1280 + "__id__": 1278 }, "_enabled": true, "__prefab": null, @@ -36080,27 +36050,27 @@ "instance": null, "targetOverrides": [ { - "__id__": 1286 + "__id__": 1284 + }, + { + "__id__": 1287 }, { "__id__": 1289 }, { - "__id__": 1291 + "__id__": 1292 }, { "__id__": 1294 - }, - { - "__id__": 1296 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 584 + "__id__": 583 }, { - "__id__": 603 + "__id__": 602 }, { "__id__": 153 @@ -36113,20 +36083,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 603 + "__id__": 602 }, "sourceInfo": { - "__id__": 1287 + "__id__": 1285 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 603 + "__id__": 602 }, "targetInfo": { - "__id__": 1288 + "__id__": 1286 } }, { @@ -36144,7 +36114,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 488 + "__id__": 487 }, "sourceInfo": null, "propertyPath": [ @@ -36154,7 +36124,7 @@ "__id__": 153 }, "targetInfo": { - "__id__": 1290 + "__id__": 1288 } }, { @@ -36166,20 +36136,20 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 584 + "__id__": 583 }, "sourceInfo": { - "__id__": 1292 + "__id__": 1290 }, "propertyPath": [ "_trailModule", "_particleSystem" ], "target": { - "__id__": 584 + "__id__": 583 }, "targetInfo": { - "__id__": 1293 + "__id__": 1291 } }, { @@ -36197,7 +36167,7 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 451 + "__id__": 450 }, "sourceInfo": null, "propertyPath": [ @@ -36207,7 +36177,7 @@ "__id__": 386 }, "targetInfo": { - "__id__": 1295 + "__id__": 1293 } }, { @@ -36222,7 +36192,7 @@ "__id__": 153 }, "sourceInfo": { - "__id__": 1297 + "__id__": 1295 }, "propertyPath": [ "_trailModule", @@ -36232,7 +36202,7 @@ "__id__": 153 }, "targetInfo": { - "__id__": 1298 + "__id__": 1296 } }, { @@ -36250,28 +36220,28 @@ { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 1300 + "__id__": 1298 }, "shadows": { - "__id__": 1301 + "__id__": 1299 }, "_skybox": { - "__id__": 1302 + "__id__": 1300 }, "fog": { - "__id__": 1303 + "__id__": 1301 }, "octree": { - "__id__": 1304 + "__id__": 1302 }, "skin": { - "__id__": 1305 + "__id__": 1303 }, "lightProbeInfo": { - "__id__": 1306 + "__id__": 1304 }, "postSettings": { - "__id__": 1307 + "__id__": 1305 }, "bakedWithStationaryMainLight": false, "bakedWithHighpLightmap": false diff --git a/assets/_Game/Scripts/DynamicSprite.ts b/assets/_Game/Scripts/DynamicSprite.ts new file mode 100644 index 0000000..44cac98 --- /dev/null +++ b/assets/_Game/Scripts/DynamicSprite.ts @@ -0,0 +1,20 @@ +import { _decorator, CCString, Component, Node, Sprite } from 'cc'; +import DynamicSpriteManager from './Manager/DynamicSpriteManager'; + +const { ccclass, property } = _decorator; + +@ccclass('DynamicSprite') +export default class DynamicSprite extends Component { + @property(Sprite) + private sprite: Sprite; + + @property(CCString) + private id: string; + + protected async start(): Promise { + const spriteFrame = await DynamicSpriteManager.instance.getSpriteFrame(this.id); + if (spriteFrame) { + this.sprite.spriteFrame = spriteFrame; + } + } +} diff --git a/assets/_Game/Scripts/DynamicSprite.ts.meta b/assets/_Game/Scripts/DynamicSprite.ts.meta new file mode 100644 index 0000000..ecf90cf --- /dev/null +++ b/assets/_Game/Scripts/DynamicSprite.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "632bc830-c894-42dd-b230-660aac8ed35f", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/_Game/Scripts/GamePlay/Enemy.ts b/assets/_Game/Scripts/GamePlay/Enemy.ts index aff44c7..61781e9 100644 --- a/assets/_Game/Scripts/GamePlay/Enemy.ts +++ b/assets/_Game/Scripts/GamePlay/Enemy.ts @@ -1,23 +1,23 @@ import { _decorator, + AudioClip, CCFloat, CCInteger, + Collider2D, Component, + Contact2DType, geometry, math, Node, - Vec3, - tween, - Collider2D, Sprite, - Contact2DType, - AudioClip, + tween, Tween, + Vec3, } from 'cc'; -import { EventManger } from '../Manager/EventManger'; -import GameEvent from '../Events/GameEvent'; -import ScoreType from '../Enum/ScoreType'; import GameState from '../Enum/GameState'; +import ScoreType from '../Enum/ScoreType'; +import GameEvent from '../Events/GameEvent'; +import { EventManger } from '../Manager/EventManger'; import { SoundManager } from '../Manager/SoundManager'; const { ccclass, property } = _decorator; diff --git a/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts b/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts new file mode 100644 index 0000000..adc094c --- /dev/null +++ b/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts @@ -0,0 +1,56 @@ +import { _decorator, assetManager, Component, ImageAsset, JsonAsset, Node, SpriteFrame, Texture2D } from 'cc'; +import Singleton from '../Singleton'; +import Utilities from '../Utilities'; + +const { ccclass, property } = _decorator; + +@ccclass('DynamicSpriteManager') +export default class DynamicSpriteManager extends Singleton() { + @property(JsonAsset) + private jsonConfig: JsonAsset; + + private spriteMap: Map = new Map(); + private initialized = false; + + protected onLoad(): void { + super.onLoad(); + this.init(); + } + + private async init() { + const config = this.jsonConfig.json; + + for (let i = 0; i < config.length; i++) { + const el = config[i]; + try { + const spriteFrame = await this.loadSprite(el.URL); + this.spriteMap.set(el.ID, spriteFrame); + } catch (err) { + console.log(err); + } + } + + this.initialized = true; + } + + private loadSprite(url: string): Promise { + return new Promise((resolve, reject) => { + assetManager.loadRemote(url, (err, imageAsset) => { + if (err) { + reject(err); + } else { + const spriteFrame = new SpriteFrame(); + const texture = new Texture2D(); + texture.image = imageAsset; + spriteFrame.texture = texture; + resolve(spriteFrame); + } + }); + }); + } + + public async getSpriteFrame(id: string): Promise { + await Utilities.waitUntil(() => this.initialized); + return this.spriteMap.get(id); + } +} diff --git a/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts.meta b/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts.meta new file mode 100644 index 0000000..f1e35da --- /dev/null +++ b/assets/_Game/Scripts/Manager/DynamicSpriteManager.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.23", + "importer": "typescript", + "imported": true, + "uuid": "0276bc08-4ccf-4017-b140-cf7a1154d4d7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/_Game/Scripts/Manager/GameManager.ts b/assets/_Game/Scripts/Manager/GameManager.ts index a15d21a..e07906b 100644 --- a/assets/_Game/Scripts/Manager/GameManager.ts +++ b/assets/_Game/Scripts/Manager/GameManager.ts @@ -1,31 +1,31 @@ import { _decorator, + AudioClip, + CCInteger, + Color, + EPhysics2DDrawFlags, Node, + PhysicsSystem2D, Prefab, + Quat, + randomRangeInt, + SpriteFrame, Vec2, Vec3, - randomRangeInt, - CCInteger, - AudioClip, - Quat, - EPhysics2DDrawFlags, - PhysicsSystem2D, - SpriteFrame, - Color, } from 'cc'; -import ObjectPool from '../Pool/ObjectPool'; -import { Ball } from '../GamePlay/Ball'; -import Utilities from '../Utilities'; -import GameState from '../Enum/GameState'; -import { EventManger } from './EventManger'; -import GameEvent from '../Events/GameEvent'; -import ScoreType from '../Enum/ScoreType'; -import { FloatingText } from '../Environments/FloatingText'; -import { SoundManager } from './SoundManager'; -import TimeConfig from '../Enum/TimeConfig'; import BEConnector from '../API/BEConnector'; import BoosterType from '../Enum/BoosterType'; +import GameState from '../Enum/GameState'; +import ScoreType from '../Enum/ScoreType'; +import TimeConfig from '../Enum/TimeConfig'; +import { FloatingText } from '../Environments/FloatingText'; +import GameEvent from '../Events/GameEvent'; +import { Ball } from '../GamePlay/Ball'; +import ObjectPool from '../Pool/ObjectPool'; import Singleton from '../Singleton'; +import Utilities from '../Utilities'; +import { EventManger } from './EventManger'; +import { SoundManager } from './SoundManager'; import { StickerManager } from './StickerManager'; const { ccclass, property } = _decorator; diff --git a/assets/_Game/Scripts/Manager/StickerManager.ts b/assets/_Game/Scripts/Manager/StickerManager.ts index 21e91bf..b7046c7 100644 --- a/assets/_Game/Scripts/Manager/StickerManager.ts +++ b/assets/_Game/Scripts/Manager/StickerManager.ts @@ -53,7 +53,7 @@ export class StickerManager extends Singleton() { this._label.string = string; this._label.color = opts?.color || new Color('#FFFF00'); this._label.node.setPosition(opts?.position || Vec3.ZERO); - this._label.getComponent(LabelOutline).color = opts?.outLineColor || new Color('#FF6600'); + this._label.outlineColor = opts?.outLineColor || new Color('#FF6600'); Tween.stopAllByTarget(this._label.node); tween(this._label.node) diff --git a/assets/_Game/spriteData.json b/assets/_Game/spriteData.json new file mode 100644 index 0000000..3308b66 --- /dev/null +++ b/assets/_Game/spriteData.json @@ -0,0 +1,6 @@ +[ + { + "ID": "carrot_default", + "URL": "https://cdn11.bigcommerce.com/s-kc25pb94dz/images/stencil/1280x1280/products/271/762/Carrot__40927.1634584458.jpg" + } +] \ No newline at end of file diff --git a/assets/_Game/spriteData.json.meta b/assets/_Game/spriteData.json.meta new file mode 100644 index 0000000..fd537d1 --- /dev/null +++ b/assets/_Game/spriteData.json.meta @@ -0,0 +1,11 @@ +{ + "ver": "2.0.1", + "importer": "json", + "imported": true, + "uuid": "d3d19129-bf34-488d-9d39-737eced907ae", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": {} +} diff --git a/extensions/excel-extension/dist/main.js b/extensions/excel-extension/dist/main.js new file mode 100644 index 0000000..05c2c41 --- /dev/null +++ b/extensions/excel-extension/dist/main.js @@ -0,0 +1,29 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.unload = exports.load = exports.methods = void 0; +// @ts-ignore +const package_json_1 = __importDefault(require("../package.json")); +/** + * @en + * @zh 为扩展的主进程的注册方法 + */ +exports.methods = { + openPanel() { + Editor.Panel.open(package_json_1.default.name); + }, +}; +/** + * @en Hooks triggered after extension loading is complete + * @zh 扩展加载完成后触发的钩子 + */ +function load() { } +exports.load = load; +/** + * @en Hooks triggered after extension uninstallation is complete + * @zh 扩展卸载完成后触发的钩子 + */ +function unload() { } +exports.unload = unload; diff --git a/extensions/excel-extension/dist/panels/default/index.js b/extensions/excel-extension/dist/panels/default/index.js new file mode 100644 index 0000000..5e98ff1 --- /dev/null +++ b/extensions/excel-extension/dist/panels/default/index.js @@ -0,0 +1,169 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const package_json_1 = __importDefault(require("../../../package.json")); +const fs_extra_1 = require("fs-extra"); +const path_1 = require("path"); +const xlsx_1 = require("xlsx"); +/** + * @zh 如果希望兼容 3.3 之前的版本可以使用下方的代码 + * @en You can add the code below if you want compatibility with versions prior to 3.3 + */ +// Editor.Panel.define = Editor.Panel.define || function(options: any) { return options } +module.exports = Editor.Panel.define({ + listeners: { + show() { }, + hide() { }, + }, + template: (0, fs_extra_1.readFileSync)((0, path_1.join)(__dirname, "../../../static/template/default/index.html"), "utf-8"), + style: (0, fs_extra_1.readFileSync)((0, path_1.join)(__dirname, "../../../static/style/default/index.css"), "utf-8"), + $: { + excelFile: "#excelAsset", + fileName: "#fileName", + out: "#out", + sheetName: "#sheetName", + submit: "#submit", + range: "#range", + exclude: "#exclude", + blankRow: "#blankRow", + blankCell: "#blankCell", + useHeader: "#useHeader", + }, + methods: { + async loadFormData() { + const data = await Editor.Profile.getConfig(package_json_1.default.name, "excelToJsonData"); + if (data) { + const inputFile = this.$.excelFile; + const fileName = this.$.fileName; + const outputFile = this.$.out; + const sheetName = this.$.sheetName; + const exclude = this.$.exclude; + const range = this.$.range; + const blankRow = this.$.blankRow; + const blankCell = this.$.blankCell; + const useHeader = this.$.useHeader; + inputFile.value = data.inputFile; + fileName.value = data.fileName; + outputFile.value = data.outputFile; + sheetName.value = data.sheetName; + exclude.value = data.exclude; + range.value = data.range; + blankRow.value = data.blankRow; + blankCell.value = data.blankCell; + useHeader.value = data.useHeader; + } + else { + setTimeout(() => { + //@ts-ignore + this.$.out.value = "project://assets"; + }, 100); + } + }, + async convertToJson(url) { + var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k; + const fileName = this.$.fileName; + const outputFile = this.$.out; + const sheetName = this.$.sheetName; + const exclude = this.$.exclude; + const range = this.$.range; + const blankRow = this.$.blankRow; + const blankCell = this.$.blankCell; + const useHeader = this.$.useHeader; + const data = { + inputFile: url, + fileName: fileName.value, + outputFile: outputFile.value, + sheetName: sheetName.value, + blankRow: blankRow.value, + blankCell: blankCell.value, + exclude: exclude.value, + range: range.value, + useHeader: useHeader.value, + }; + const excludeSheet = data.exclude.split(/\s*,\s*/); + const getRow = (sheet) => { + return xlsx_1.utils.sheet_to_json(sheet, { + raw: true, + rawNumbers: true, + defval: !!data.blankCell ? null : undefined, + blankrows: !!data.blankRow, + range: !!data.range ? data.range : undefined, + header: !!data.useHeader ? undefined : 1, + }); + }; + if (outputFile.getAttribute("invalid")) { + await Editor.Dialog.warn("Warning", { + detail: "Output path invalid", + }); + outputFile.focus(); + (_a = this.$.submit) === null || _a === void 0 ? void 0 : _a.removeAttribute("disabled"); + (_b = this.$.submit) === null || _b === void 0 ? void 0 : _b.removeAttribute("loading"); + return; + } + if (!data.fileName) { + await Editor.Dialog.warn("Warning", { + detail: "Output name is required", + }); + fileName.focus(); + (_c = this.$.submit) === null || _c === void 0 ? void 0 : _c.removeAttribute("disabled"); + (_d = this.$.submit) === null || _d === void 0 ? void 0 : _d.removeAttribute("loading"); + return; + } + if (excludeSheet.length > 1 && + excludeSheet.includes(data.sheetName)) { + await Editor.Dialog.warn("Warning", { + detail: `Sheet ${sheetName} in exclude sheet`, + }); + sheetName.focus(); + (_e = this.$.submit) === null || _e === void 0 ? void 0 : _e.removeAttribute("disabled"); + (_f = this.$.submit) === null || _f === void 0 ? void 0 : _f.removeAttribute("loading"); + return; + } + try { + const workBook = (0, xlsx_1.readFile)(url, { + type: "binary", + }); + let result = {}; + if (data.sheetName) { + const row = getRow(workBook.Sheets[data.sheetName]); + if (row.length > 0) + result = row; + } + else { + workBook.SheetNames.forEach((name) => { + if (excludeSheet.includes(name)) + return; + const row = getRow(workBook.Sheets[name]); + if (row.length > 0) + result[name] = row; + }); + } + const output = data.outputFile.replace("project://", "db://"); + await Editor.Message.request("asset-db", "create-asset", output + `/${data.fileName}.json`, JSON.stringify(result)); + (_g = this.$.submit) === null || _g === void 0 ? void 0 : _g.removeAttribute("disabled"); + (_h = this.$.submit) === null || _h === void 0 ? void 0 : _h.removeAttribute("loading"); + Editor.Profile.setConfig(package_json_1.default.name, "excelToJsonData", data); + } + catch (e) { + await Editor.Dialog.error("Error", { detail: e.message }); + (_j = this.$.submit) === null || _j === void 0 ? void 0 : _j.removeAttribute("disabled"); + (_k = this.$.submit) === null || _k === void 0 ? void 0 : _k.removeAttribute("loading"); + } + }, + }, + ready() { + var _a; + this.loadFormData(); + (_a = this.$.submit) === null || _a === void 0 ? void 0 : _a.addEventListener("confirm", (event) => { + var _a, _b; + const inputFile = this.$.excelFile; + (_a = this.$.submit) === null || _a === void 0 ? void 0 : _a.setAttribute("disabled", "true"); + (_b = this.$.submit) === null || _b === void 0 ? void 0 : _b.setAttribute("loading", "true"); + Editor.Message.send("excel-extension", "convertToJson", inputFile.value); + }); + }, + beforeClose() { }, + close() { }, +}); diff --git a/extensions/excel-extension/i18n/en.js b/extensions/excel-extension/i18n/en.js new file mode 100644 index 0000000..f165142 --- /dev/null +++ b/extensions/excel-extension/i18n/en.js @@ -0,0 +1 @@ +"use strict";module.exports={open_panel:"Default Panel",send_to_panel:"Send message to Default Panel",description:"Extension with a panel"}; \ No newline at end of file diff --git a/extensions/excel-extension/i18n/zh.js b/extensions/excel-extension/i18n/zh.js new file mode 100644 index 0000000..abe94a0 --- /dev/null +++ b/extensions/excel-extension/i18n/zh.js @@ -0,0 +1 @@ +"use strict";module.exports={open_panel:"默认面板",send_to_panel:"发送消息给面板",description:"含有一个面板的扩展"}; \ No newline at end of file diff --git a/extensions/excel-extension/package.json b/extensions/excel-extension/package.json new file mode 100644 index 0000000..1320afb --- /dev/null +++ b/extensions/excel-extension/package.json @@ -0,0 +1,56 @@ +{ + "package_version": 2, + "version": "1.0.0", + "name": "excel-extension", + "description": "i18n:excel-extension.description", + "main": "./dist/main.js", + "dependencies": { + "fs-extra": "^10.0.0", + "xlsx": "^0.18.5" + }, + "devDependencies": { + "@types/fs-extra": "^9.0.5", + "@types/node": "^16.0.1", + "typescript": "^4.3.4" + }, + "panels": { + "default": { + "title": "Excel To Json", + "type": "dockable", + "main": "dist/panels/default", + "size": { + "min-width": 550, + "min-height": 330, + "width": 550, + "height": 330 + } + } + }, + "contributions": { + "menu": [ + { + "path": "Excel Extension", + "label": "Excel To Json", + "message": "open-panel" + } + ], + "messages": { + "open-panel": { + "methods": [ + "openPanel" + ] + }, + "convertToJson": { + "methods": [ + "default.convertToJson" + ] + } + } + }, + "author": "Tiendat", + "editor": ">=3.7.2", + "scripts": { + "build": "tsc -b", + "watch": "tsc -w" + } +} \ No newline at end of file diff --git a/extensions/excel-extension/static/style/default/index.css b/extensions/excel-extension/static/style/default/index.css new file mode 100644 index 0000000..9897d1d --- /dev/null +++ b/extensions/excel-extension/static/style/default/index.css @@ -0,0 +1,29 @@ +#app { + padding: 8px 16px; +} + +.title { + text-align: center; + margin-bottom: 16px; +} + +.container ui-prop ~ ui-prop { + margin-top: 8px; +} + +.footer { + margin-top: 24px; + display: flex; + justify-content: center; +} + +#submit { + height: 32px; + width: 100px; + font-size: 16px; + font-weight: bold; +} + +.check-box ~ .check-box { + margin-left: 16px; +} diff --git a/extensions/excel-extension/static/template/default/index.html b/extensions/excel-extension/static/template/default/index.html new file mode 100644 index 0000000..81378a4 --- /dev/null +++ b/extensions/excel-extension/static/template/default/index.html @@ -0,0 +1,40 @@ +
+

Excel To Json

+
+ + Excel File + + + + Output Path + + + + Output Name + + + + Sheet Name + + + + Range + + + + Exclude Sheet Name + + + + Options +
+ Blank Row + Blank Cell + Use Header +
+
+ +
+
\ No newline at end of file diff --git a/settings/v2/packages/project.json b/settings/v2/packages/project.json index 9250c34..ed1b748 100644 --- a/settings/v2/packages/project.json +++ b/settings/v2/packages/project.json @@ -40,11 +40,11 @@ } ], "collisionMatrix": { - "0": 21, + "0": 4, "1": 4, "2": 119, "3": 16, - "4": 29, + "4": 12, "5": 4, "6": 4 }