gameOver.prefab 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "gameOver",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "gameOver",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 16
  26. },
  27. {
  28. "__id__": 24
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 126
  35. },
  36. {
  37. "__id__": 128
  38. },
  39. {
  40. "__id__": 130
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 132
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_objFlags": 0,
  78. "_parent": {
  79. "__id__": 1
  80. },
  81. "_prefab": {
  82. "__id__": 3
  83. },
  84. "__editorExtras__": {}
  85. },
  86. {
  87. "__type__": "cc.PrefabInfo",
  88. "root": {
  89. "__id__": 2
  90. },
  91. "asset": {
  92. "__uuid__": "142393a8-2641-4775-a79c-cbfe1bd9e5ca",
  93. "__expectedType__": "cc.Prefab"
  94. },
  95. "fileId": "a0daVw8DRLi6ToMaTA0VS2",
  96. "instance": {
  97. "__id__": 4
  98. },
  99. "targetOverrides": null
  100. },
  101. {
  102. "__type__": "cc.PrefabInstance",
  103. "fileId": "097hmq9eBB1ozt61vd88LK",
  104. "prefabRootNode": {
  105. "__id__": 1
  106. },
  107. "mountedChildren": [],
  108. "mountedComponents": [
  109. {
  110. "__id__": 5
  111. }
  112. ],
  113. "propertyOverrides": [
  114. {
  115. "__id__": 9
  116. },
  117. {
  118. "__id__": 11
  119. },
  120. {
  121. "__id__": 12
  122. },
  123. {
  124. "__id__": 13
  125. },
  126. {
  127. "__id__": 14
  128. }
  129. ],
  130. "removedComponents": []
  131. },
  132. {
  133. "__type__": "cc.MountedComponentsInfo",
  134. "targetInfo": {
  135. "__id__": 6
  136. },
  137. "components": [
  138. {
  139. "__id__": 7
  140. }
  141. ]
  142. },
  143. {
  144. "__type__": "cc.TargetInfo",
  145. "localID": [
  146. "a0daVw8DRLi6ToMaTA0VS2"
  147. ]
  148. },
  149. {
  150. "__type__": "cc.BlockInputEvents",
  151. "_name": "",
  152. "_objFlags": 0,
  153. "__editorExtras__": {
  154. "mountedRoot": {
  155. "__id__": 2
  156. }
  157. },
  158. "node": {
  159. "__id__": 2
  160. },
  161. "_enabled": true,
  162. "__prefab": {
  163. "__id__": 8
  164. },
  165. "_id": ""
  166. },
  167. {
  168. "__type__": "cc.CompPrefabInfo",
  169. "fileId": "4dtgMGcetHc5oAL8f2Wogr"
  170. },
  171. {
  172. "__type__": "CCPropertyOverrideInfo",
  173. "targetInfo": {
  174. "__id__": 10
  175. },
  176. "propertyPath": [
  177. "_name"
  178. ],
  179. "value": "mask"
  180. },
  181. {
  182. "__type__": "cc.TargetInfo",
  183. "localID": [
  184. "a0daVw8DRLi6ToMaTA0VS2"
  185. ]
  186. },
  187. {
  188. "__type__": "CCPropertyOverrideInfo",
  189. "targetInfo": {
  190. "__id__": 10
  191. },
  192. "propertyPath": [
  193. "_lpos"
  194. ],
  195. "value": {
  196. "__type__": "cc.Vec3",
  197. "x": 0,
  198. "y": 0,
  199. "z": 0
  200. }
  201. },
  202. {
  203. "__type__": "CCPropertyOverrideInfo",
  204. "targetInfo": {
  205. "__id__": 10
  206. },
  207. "propertyPath": [
  208. "_lrot"
  209. ],
  210. "value": {
  211. "__type__": "cc.Quat",
  212. "x": 0,
  213. "y": 0,
  214. "z": 0,
  215. "w": 1
  216. }
  217. },
  218. {
  219. "__type__": "CCPropertyOverrideInfo",
  220. "targetInfo": {
  221. "__id__": 10
  222. },
  223. "propertyPath": [
  224. "_euler"
  225. ],
  226. "value": {
  227. "__type__": "cc.Vec3",
  228. "x": 0,
  229. "y": 0,
  230. "z": 0
  231. }
  232. },
  233. {
  234. "__type__": "CCPropertyOverrideInfo",
  235. "targetInfo": {
  236. "__id__": 15
  237. },
  238. "propertyPath": [
  239. "_contentSize"
  240. ],
  241. "value": {
  242. "__type__": "cc.Size",
  243. "width": 720,
  244. "height": 1600
  245. }
  246. },
  247. {
  248. "__type__": "cc.TargetInfo",
  249. "localID": [
  250. "77N2cid5pKDpXplRH/AWEU"
  251. ]
  252. },
  253. {
  254. "__type__": "cc.Node",
  255. "_name": "bg_light",
  256. "_objFlags": 0,
  257. "__editorExtras__": {},
  258. "_parent": {
  259. "__id__": 1
  260. },
  261. "_children": [],
  262. "_active": true,
  263. "_components": [
  264. {
  265. "__id__": 17
  266. },
  267. {
  268. "__id__": 19
  269. },
  270. {
  271. "__id__": 21
  272. }
  273. ],
  274. "_prefab": {
  275. "__id__": 23
  276. },
  277. "_lpos": {
  278. "__type__": "cc.Vec3",
  279. "x": 0,
  280. "y": 376.851,
  281. "z": 0
  282. },
  283. "_lrot": {
  284. "__type__": "cc.Quat",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0,
  288. "w": 1
  289. },
  290. "_lscale": {
  291. "__type__": "cc.Vec3",
  292. "x": 1,
  293. "y": 1,
  294. "z": 1
  295. },
  296. "_mobility": 0,
  297. "_layer": 33554432,
  298. "_euler": {
  299. "__type__": "cc.Vec3",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0
  303. },
  304. "_id": ""
  305. },
  306. {
  307. "__type__": "cc.UITransform",
  308. "_name": "",
  309. "_objFlags": 0,
  310. "__editorExtras__": {},
  311. "node": {
  312. "__id__": 16
  313. },
  314. "_enabled": true,
  315. "__prefab": {
  316. "__id__": 18
  317. },
  318. "_contentSize": {
  319. "__type__": "cc.Size",
  320. "width": 720,
  321. "height": 967
  322. },
  323. "_anchorPoint": {
  324. "__type__": "cc.Vec2",
  325. "x": 0.5,
  326. "y": 0.5
  327. },
  328. "_id": ""
  329. },
  330. {
  331. "__type__": "cc.CompPrefabInfo",
  332. "fileId": "6aQY0hDhRHWJuxAhPOcDef"
  333. },
  334. {
  335. "__type__": "cc.Sprite",
  336. "_name": "",
  337. "_objFlags": 0,
  338. "__editorExtras__": {},
  339. "node": {
  340. "__id__": 16
  341. },
  342. "_enabled": true,
  343. "__prefab": {
  344. "__id__": 20
  345. },
  346. "_customMaterial": null,
  347. "_srcBlendFactor": 2,
  348. "_dstBlendFactor": 4,
  349. "_color": {
  350. "__type__": "cc.Color",
  351. "r": 255,
  352. "g": 255,
  353. "b": 255,
  354. "a": 255
  355. },
  356. "_spriteFrame": {
  357. "__uuid__": "813602dd-748e-4bfa-ba7a-9ecf401122e9@f9941",
  358. "__expectedType__": "cc.SpriteFrame"
  359. },
  360. "_type": 0,
  361. "_fillType": 0,
  362. "_sizeMode": 1,
  363. "_fillCenter": {
  364. "__type__": "cc.Vec2",
  365. "x": 0,
  366. "y": 0
  367. },
  368. "_fillStart": 0,
  369. "_fillRange": 0,
  370. "_isTrimmedMode": true,
  371. "_useGrayscale": false,
  372. "_atlas": null,
  373. "_id": ""
  374. },
  375. {
  376. "__type__": "cc.CompPrefabInfo",
  377. "fileId": "14QU03ZlJD9K2jgKgv2gVK"
  378. },
  379. {
  380. "__type__": "cc.Animation",
  381. "_name": "",
  382. "_objFlags": 0,
  383. "__editorExtras__": {},
  384. "node": {
  385. "__id__": 16
  386. },
  387. "_enabled": true,
  388. "__prefab": {
  389. "__id__": 22
  390. },
  391. "playOnLoad": false,
  392. "_clips": [
  393. {
  394. "__uuid__": "62c95173-1005-48b0-bef6-f49a73db295c",
  395. "__expectedType__": "cc.AnimationClip"
  396. }
  397. ],
  398. "_defaultClip": {
  399. "__uuid__": "62c95173-1005-48b0-bef6-f49a73db295c",
  400. "__expectedType__": "cc.AnimationClip"
  401. },
  402. "_id": ""
  403. },
  404. {
  405. "__type__": "cc.CompPrefabInfo",
  406. "fileId": "c42LgIJNRJxaKZfneyrW5O"
  407. },
  408. {
  409. "__type__": "cc.PrefabInfo",
  410. "root": {
  411. "__id__": 1
  412. },
  413. "asset": {
  414. "__id__": 0
  415. },
  416. "fileId": "2fOC3E7NJK8riwHsgKvvQ5",
  417. "instance": null,
  418. "targetOverrides": null,
  419. "nestedPrefabInstanceRoots": null
  420. },
  421. {
  422. "__type__": "cc.Node",
  423. "_name": "Node",
  424. "_objFlags": 0,
  425. "__editorExtras__": {},
  426. "_parent": {
  427. "__id__": 1
  428. },
  429. "_children": [
  430. {
  431. "__id__": 25
  432. },
  433. {
  434. "__id__": 31
  435. },
  436. {
  437. "__id__": 37
  438. },
  439. {
  440. "__id__": 43
  441. },
  442. {
  443. "__id__": 51
  444. },
  445. {
  446. "__id__": 57
  447. },
  448. {
  449. "__id__": 63
  450. },
  451. {
  452. "__id__": 83
  453. },
  454. {
  455. "__id__": 97
  456. },
  457. {
  458. "__id__": 105
  459. }
  460. ],
  461. "_active": true,
  462. "_components": [
  463. {
  464. "__id__": 123
  465. }
  466. ],
  467. "_prefab": {
  468. "__id__": 125
  469. },
  470. "_lpos": {
  471. "__type__": "cc.Vec3",
  472. "x": 0,
  473. "y": 0,
  474. "z": 0
  475. },
  476. "_lrot": {
  477. "__type__": "cc.Quat",
  478. "x": 0,
  479. "y": 0,
  480. "z": 0,
  481. "w": 1
  482. },
  483. "_lscale": {
  484. "__type__": "cc.Vec3",
  485. "x": 1,
  486. "y": 1,
  487. "z": 1
  488. },
  489. "_mobility": 0,
  490. "_layer": 33554432,
  491. "_euler": {
  492. "__type__": "cc.Vec3",
  493. "x": 0,
  494. "y": 0,
  495. "z": 0
  496. },
  497. "_id": ""
  498. },
  499. {
  500. "__type__": "cc.Node",
  501. "_name": "Sprite",
  502. "_objFlags": 0,
  503. "__editorExtras__": {},
  504. "_parent": {
  505. "__id__": 24
  506. },
  507. "_children": [],
  508. "_active": true,
  509. "_components": [
  510. {
  511. "__id__": 26
  512. },
  513. {
  514. "__id__": 28
  515. }
  516. ],
  517. "_prefab": {
  518. "__id__": 30
  519. },
  520. "_lpos": {
  521. "__type__": "cc.Vec3",
  522. "x": -11.662,
  523. "y": 123.284,
  524. "z": 0
  525. },
  526. "_lrot": {
  527. "__type__": "cc.Quat",
  528. "x": 0,
  529. "y": 0,
  530. "z": 0,
  531. "w": 1
  532. },
  533. "_lscale": {
  534. "__type__": "cc.Vec3",
  535. "x": 1,
  536. "y": 1,
  537. "z": 1
  538. },
  539. "_mobility": 0,
  540. "_layer": 33554432,
  541. "_euler": {
  542. "__type__": "cc.Vec3",
  543. "x": 0,
  544. "y": 0,
  545. "z": 0
  546. },
  547. "_id": ""
  548. },
  549. {
  550. "__type__": "cc.UITransform",
  551. "_name": "",
  552. "_objFlags": 0,
  553. "__editorExtras__": {},
  554. "node": {
  555. "__id__": 25
  556. },
  557. "_enabled": true,
  558. "__prefab": {
  559. "__id__": 27
  560. },
  561. "_contentSize": {
  562. "__type__": "cc.Size",
  563. "width": 695,
  564. "height": 775
  565. },
  566. "_anchorPoint": {
  567. "__type__": "cc.Vec2",
  568. "x": 0.5,
  569. "y": 0.5
  570. },
  571. "_id": ""
  572. },
  573. {
  574. "__type__": "cc.CompPrefabInfo",
  575. "fileId": "08NKqiSQxItba3pfduN9OZ"
  576. },
  577. {
  578. "__type__": "cc.Sprite",
  579. "_name": "",
  580. "_objFlags": 0,
  581. "__editorExtras__": {},
  582. "node": {
  583. "__id__": 25
  584. },
  585. "_enabled": true,
  586. "__prefab": {
  587. "__id__": 29
  588. },
  589. "_customMaterial": null,
  590. "_srcBlendFactor": 2,
  591. "_dstBlendFactor": 4,
  592. "_color": {
  593. "__type__": "cc.Color",
  594. "r": 255,
  595. "g": 255,
  596. "b": 255,
  597. "a": 255
  598. },
  599. "_spriteFrame": {
  600. "__uuid__": "8edc0217-781f-424d-a0c8-d486bfaa92f7@f9941",
  601. "__expectedType__": "cc.SpriteFrame"
  602. },
  603. "_type": 0,
  604. "_fillType": 0,
  605. "_sizeMode": 1,
  606. "_fillCenter": {
  607. "__type__": "cc.Vec2",
  608. "x": 0,
  609. "y": 0
  610. },
  611. "_fillStart": 0,
  612. "_fillRange": 0,
  613. "_isTrimmedMode": true,
  614. "_useGrayscale": false,
  615. "_atlas": null,
  616. "_id": ""
  617. },
  618. {
  619. "__type__": "cc.CompPrefabInfo",
  620. "fileId": "3aelC6EjRHlY0HWdpYZ1Qz"
  621. },
  622. {
  623. "__type__": "cc.PrefabInfo",
  624. "root": {
  625. "__id__": 1
  626. },
  627. "asset": {
  628. "__id__": 0
  629. },
  630. "fileId": "02aX09ZoJDmqb03bIRVo47",
  631. "instance": null,
  632. "targetOverrides": null,
  633. "nestedPrefabInstanceRoots": null
  634. },
  635. {
  636. "__type__": "cc.Node",
  637. "_name": "title_mywz",
  638. "_objFlags": 0,
  639. "__editorExtras__": {},
  640. "_parent": {
  641. "__id__": 24
  642. },
  643. "_children": [],
  644. "_active": true,
  645. "_components": [
  646. {
  647. "__id__": 32
  648. },
  649. {
  650. "__id__": 34
  651. }
  652. ],
  653. "_prefab": {
  654. "__id__": 36
  655. },
  656. "_lpos": {
  657. "__type__": "cc.Vec3",
  658. "x": 0,
  659. "y": 523.982,
  660. "z": 0
  661. },
  662. "_lrot": {
  663. "__type__": "cc.Quat",
  664. "x": 0,
  665. "y": 0,
  666. "z": 0,
  667. "w": 1
  668. },
  669. "_lscale": {
  670. "__type__": "cc.Vec3",
  671. "x": 1,
  672. "y": 1,
  673. "z": 1
  674. },
  675. "_mobility": 0,
  676. "_layer": 33554432,
  677. "_euler": {
  678. "__type__": "cc.Vec3",
  679. "x": 0,
  680. "y": 0,
  681. "z": 0
  682. },
  683. "_id": ""
  684. },
  685. {
  686. "__type__": "cc.UITransform",
  687. "_name": "",
  688. "_objFlags": 0,
  689. "__editorExtras__": {},
  690. "node": {
  691. "__id__": 31
  692. },
  693. "_enabled": true,
  694. "__prefab": {
  695. "__id__": 33
  696. },
  697. "_contentSize": {
  698. "__type__": "cc.Size",
  699. "width": 604,
  700. "height": 151
  701. },
  702. "_anchorPoint": {
  703. "__type__": "cc.Vec2",
  704. "x": 0.5,
  705. "y": 0.5
  706. },
  707. "_id": ""
  708. },
  709. {
  710. "__type__": "cc.CompPrefabInfo",
  711. "fileId": "46ZXUkD/lFbptVWaWF0cOA"
  712. },
  713. {
  714. "__type__": "cc.Sprite",
  715. "_name": "",
  716. "_objFlags": 0,
  717. "__editorExtras__": {},
  718. "node": {
  719. "__id__": 31
  720. },
  721. "_enabled": true,
  722. "__prefab": {
  723. "__id__": 35
  724. },
  725. "_customMaterial": null,
  726. "_srcBlendFactor": 2,
  727. "_dstBlendFactor": 4,
  728. "_color": {
  729. "__type__": "cc.Color",
  730. "r": 255,
  731. "g": 255,
  732. "b": 255,
  733. "a": 255
  734. },
  735. "_spriteFrame": {
  736. "__uuid__": "75bf4839-d763-4389-b102-3158fb30229a@f9941",
  737. "__expectedType__": "cc.SpriteFrame"
  738. },
  739. "_type": 0,
  740. "_fillType": 0,
  741. "_sizeMode": 1,
  742. "_fillCenter": {
  743. "__type__": "cc.Vec2",
  744. "x": 0,
  745. "y": 0
  746. },
  747. "_fillStart": 0,
  748. "_fillRange": 0,
  749. "_isTrimmedMode": true,
  750. "_useGrayscale": false,
  751. "_atlas": null,
  752. "_id": ""
  753. },
  754. {
  755. "__type__": "cc.CompPrefabInfo",
  756. "fileId": "d2XP4win5C86xLUPQTpZx0"
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 1
  762. },
  763. "asset": {
  764. "__id__": 0
  765. },
  766. "fileId": "8e/B490/lK0o5Yjp0un8xB",
  767. "instance": null,
  768. "targetOverrides": null,
  769. "nestedPrefabInstanceRoots": null
  770. },
  771. {
  772. "__type__": "cc.Node",
  773. "_name": "Label-001",
  774. "_objFlags": 0,
  775. "__editorExtras__": {},
  776. "_parent": {
  777. "__id__": 24
  778. },
  779. "_children": [],
  780. "_active": true,
  781. "_components": [
  782. {
  783. "__id__": 38
  784. },
  785. {
  786. "__id__": 40
  787. }
  788. ],
  789. "_prefab": {
  790. "__id__": 42
  791. },
  792. "_lpos": {
  793. "__type__": "cc.Vec3",
  794. "x": 0,
  795. "y": 407.69000000000005,
  796. "z": 0
  797. },
  798. "_lrot": {
  799. "__type__": "cc.Quat",
  800. "x": 0,
  801. "y": 0,
  802. "z": 0,
  803. "w": 1
  804. },
  805. "_lscale": {
  806. "__type__": "cc.Vec3",
  807. "x": 1,
  808. "y": 1,
  809. "z": 1
  810. },
  811. "_mobility": 0,
  812. "_layer": 33554432,
  813. "_euler": {
  814. "__type__": "cc.Vec3",
  815. "x": 0,
  816. "y": 0,
  817. "z": 0
  818. },
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.UITransform",
  823. "_name": "",
  824. "_objFlags": 0,
  825. "__editorExtras__": {},
  826. "node": {
  827. "__id__": 37
  828. },
  829. "_enabled": true,
  830. "__prefab": {
  831. "__id__": 39
  832. },
  833. "_contentSize": {
  834. "__type__": "cc.Size",
  835. "width": 208,
  836. "height": 65.96000000000001
  837. },
  838. "_anchorPoint": {
  839. "__type__": "cc.Vec2",
  840. "x": 0.5,
  841. "y": 0.5
  842. },
  843. "_id": ""
  844. },
  845. {
  846. "__type__": "cc.CompPrefabInfo",
  847. "fileId": "ad8ChoIORJvo3dfhWPuGqf"
  848. },
  849. {
  850. "__type__": "cc.Label",
  851. "_name": "",
  852. "_objFlags": 0,
  853. "__editorExtras__": {},
  854. "node": {
  855. "__id__": 37
  856. },
  857. "_enabled": true,
  858. "__prefab": {
  859. "__id__": 41
  860. },
  861. "_customMaterial": null,
  862. "_srcBlendFactor": 2,
  863. "_dstBlendFactor": 4,
  864. "_color": {
  865. "__type__": "cc.Color",
  866. "r": 255,
  867. "g": 255,
  868. "b": 255,
  869. "a": 255
  870. },
  871. "_string": "金砖已收集",
  872. "_horizontalAlign": 1,
  873. "_verticalAlign": 1,
  874. "_actualFontSize": 40,
  875. "_fontSize": 40,
  876. "_fontFamily": "Arial",
  877. "_lineHeight": 46,
  878. "_overflow": 0,
  879. "_enableWrapText": true,
  880. "_font": null,
  881. "_isSystemFontUsed": true,
  882. "_spacingX": 0,
  883. "_isItalic": false,
  884. "_isBold": true,
  885. "_isUnderline": false,
  886. "_underlineHeight": 2,
  887. "_cacheMode": 0,
  888. "_enableOutline": true,
  889. "_outlineColor": {
  890. "__type__": "cc.Color",
  891. "r": 88,
  892. "g": 42,
  893. "b": 9,
  894. "a": 255
  895. },
  896. "_outlineWidth": 4,
  897. "_enableShadow": false,
  898. "_shadowColor": {
  899. "__type__": "cc.Color",
  900. "r": 0,
  901. "g": 0,
  902. "b": 0,
  903. "a": 255
  904. },
  905. "_shadowOffset": {
  906. "__type__": "cc.Vec2",
  907. "x": 2,
  908. "y": 2
  909. },
  910. "_shadowBlur": 2,
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.CompPrefabInfo",
  915. "fileId": "fffW++f+VHYZX5SM0EAskl"
  916. },
  917. {
  918. "__type__": "cc.PrefabInfo",
  919. "root": {
  920. "__id__": 1
  921. },
  922. "asset": {
  923. "__id__": 0
  924. },
  925. "fileId": "acNYp8H2JE3Y9UhZfJQuQD",
  926. "instance": null,
  927. "targetOverrides": null,
  928. "nestedPrefabInstanceRoots": null
  929. },
  930. {
  931. "__type__": "cc.Node",
  932. "_name": "lab_num",
  933. "_objFlags": 0,
  934. "__editorExtras__": {},
  935. "_parent": {
  936. "__id__": 24
  937. },
  938. "_children": [],
  939. "_active": true,
  940. "_components": [
  941. {
  942. "__id__": 44
  943. },
  944. {
  945. "__id__": 46
  946. },
  947. {
  948. "__id__": 48
  949. }
  950. ],
  951. "_prefab": {
  952. "__id__": 50
  953. },
  954. "_lpos": {
  955. "__type__": "cc.Vec3",
  956. "x": 1.2280000000000086,
  957. "y": 85.20799999999997,
  958. "z": 0
  959. },
  960. "_lrot": {
  961. "__type__": "cc.Quat",
  962. "x": 0,
  963. "y": 0,
  964. "z": 0,
  965. "w": 1
  966. },
  967. "_lscale": {
  968. "__type__": "cc.Vec3",
  969. "x": 1,
  970. "y": 1,
  971. "z": 1
  972. },
  973. "_mobility": 0,
  974. "_layer": 33554432,
  975. "_euler": {
  976. "__type__": "cc.Vec3",
  977. "x": 0,
  978. "y": 0,
  979. "z": 0
  980. },
  981. "_id": ""
  982. },
  983. {
  984. "__type__": "cc.UITransform",
  985. "_name": "",
  986. "_objFlags": 0,
  987. "__editorExtras__": {},
  988. "node": {
  989. "__id__": 43
  990. },
  991. "_enabled": true,
  992. "__prefab": {
  993. "__id__": 45
  994. },
  995. "_contentSize": {
  996. "__type__": "cc.Size",
  997. "width": 196.125,
  998. "height": 92.2
  999. },
  1000. "_anchorPoint": {
  1001. "__type__": "cc.Vec2",
  1002. "x": 0.5,
  1003. "y": 0.5
  1004. },
  1005. "_id": ""
  1006. },
  1007. {
  1008. "__type__": "cc.CompPrefabInfo",
  1009. "fileId": "0dg0Lmh4hMNp6YjSvc2vaG"
  1010. },
  1011. {
  1012. "__type__": "cc.Label",
  1013. "_name": "",
  1014. "_objFlags": 0,
  1015. "__editorExtras__": {},
  1016. "node": {
  1017. "__id__": 43
  1018. },
  1019. "_enabled": true,
  1020. "__prefab": {
  1021. "__id__": 47
  1022. },
  1023. "_customMaterial": null,
  1024. "_srcBlendFactor": 2,
  1025. "_dstBlendFactor": 4,
  1026. "_color": {
  1027. "__type__": "cc.Color",
  1028. "r": 255,
  1029. "g": 255,
  1030. "b": 255,
  1031. "a": 255
  1032. },
  1033. "_string": "{{0}}%",
  1034. "_horizontalAlign": 1,
  1035. "_verticalAlign": 1,
  1036. "_actualFontSize": 64,
  1037. "_fontSize": 64,
  1038. "_fontFamily": "Arial",
  1039. "_lineHeight": 70,
  1040. "_overflow": 0,
  1041. "_enableWrapText": true,
  1042. "_font": null,
  1043. "_isSystemFontUsed": true,
  1044. "_spacingX": 0,
  1045. "_isItalic": false,
  1046. "_isBold": true,
  1047. "_isUnderline": false,
  1048. "_underlineHeight": 2,
  1049. "_cacheMode": 0,
  1050. "_enableOutline": true,
  1051. "_outlineColor": {
  1052. "__type__": "cc.Color",
  1053. "r": 88,
  1054. "g": 42,
  1055. "b": 9,
  1056. "a": 255
  1057. },
  1058. "_outlineWidth": 2,
  1059. "_enableShadow": false,
  1060. "_shadowColor": {
  1061. "__type__": "cc.Color",
  1062. "r": 0,
  1063. "g": 0,
  1064. "b": 0,
  1065. "a": 255
  1066. },
  1067. "_shadowOffset": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 2,
  1070. "y": 2
  1071. },
  1072. "_shadowBlur": 2,
  1073. "_id": ""
  1074. },
  1075. {
  1076. "__type__": "cc.CompPrefabInfo",
  1077. "fileId": "b5UXSLPsRGMazGLJyOTuWI"
  1078. },
  1079. {
  1080. "__type__": "545c05XsG9GDJispEGWKvYv",
  1081. "_name": "",
  1082. "_objFlags": 0,
  1083. "__editorExtras__": {},
  1084. "node": {
  1085. "__id__": 43
  1086. },
  1087. "_enabled": true,
  1088. "__prefab": {
  1089. "__id__": 49
  1090. },
  1091. "templateMode": true,
  1092. "watchPath": "*.schedule",
  1093. "labelType": "cc.Label",
  1094. "watchPathArr": [
  1095. "*.schedule"
  1096. ],
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.CompPrefabInfo",
  1101. "fileId": "1ar02ZCCNNPotkVIkL72wL"
  1102. },
  1103. {
  1104. "__type__": "cc.PrefabInfo",
  1105. "root": {
  1106. "__id__": 1
  1107. },
  1108. "asset": {
  1109. "__id__": 0
  1110. },
  1111. "fileId": "d6hjOwanRLBpyzifim/4kY",
  1112. "instance": null,
  1113. "targetOverrides": null,
  1114. "nestedPrefabInstanceRoots": null
  1115. },
  1116. {
  1117. "__type__": "cc.Node",
  1118. "_name": "fu",
  1119. "_objFlags": 0,
  1120. "__editorExtras__": {},
  1121. "_parent": {
  1122. "__id__": 24
  1123. },
  1124. "_children": [],
  1125. "_active": true,
  1126. "_components": [
  1127. {
  1128. "__id__": 52
  1129. },
  1130. {
  1131. "__id__": 54
  1132. }
  1133. ],
  1134. "_prefab": {
  1135. "__id__": 56
  1136. },
  1137. "_lpos": {
  1138. "__type__": "cc.Vec3",
  1139. "x": 0,
  1140. "y": -69.28,
  1141. "z": 0
  1142. },
  1143. "_lrot": {
  1144. "__type__": "cc.Quat",
  1145. "x": 0,
  1146. "y": 0,
  1147. "z": 0,
  1148. "w": 1
  1149. },
  1150. "_lscale": {
  1151. "__type__": "cc.Vec3",
  1152. "x": 1,
  1153. "y": 1,
  1154. "z": 1
  1155. },
  1156. "_mobility": 0,
  1157. "_layer": 33554432,
  1158. "_euler": {
  1159. "__type__": "cc.Vec3",
  1160. "x": 0,
  1161. "y": 0,
  1162. "z": 0
  1163. },
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.UITransform",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "__editorExtras__": {},
  1171. "node": {
  1172. "__id__": 51
  1173. },
  1174. "_enabled": true,
  1175. "__prefab": {
  1176. "__id__": 53
  1177. },
  1178. "_contentSize": {
  1179. "__type__": "cc.Size",
  1180. "width": 189,
  1181. "height": 69
  1182. },
  1183. "_anchorPoint": {
  1184. "__type__": "cc.Vec2",
  1185. "x": 0.5,
  1186. "y": 0.5
  1187. },
  1188. "_id": ""
  1189. },
  1190. {
  1191. "__type__": "cc.CompPrefabInfo",
  1192. "fileId": "ceWj36x5RDfJQtunzGygKE"
  1193. },
  1194. {
  1195. "__type__": "cc.Sprite",
  1196. "_name": "",
  1197. "_objFlags": 0,
  1198. "__editorExtras__": {},
  1199. "node": {
  1200. "__id__": 51
  1201. },
  1202. "_enabled": true,
  1203. "__prefab": {
  1204. "__id__": 55
  1205. },
  1206. "_customMaterial": null,
  1207. "_srcBlendFactor": 2,
  1208. "_dstBlendFactor": 4,
  1209. "_color": {
  1210. "__type__": "cc.Color",
  1211. "r": 255,
  1212. "g": 255,
  1213. "b": 255,
  1214. "a": 255
  1215. },
  1216. "_spriteFrame": {
  1217. "__uuid__": "0e8fd04d-75ef-4eb4-9e59-63a6a5fa7e39@f9941",
  1218. "__expectedType__": "cc.SpriteFrame"
  1219. },
  1220. "_type": 0,
  1221. "_fillType": 0,
  1222. "_sizeMode": 1,
  1223. "_fillCenter": {
  1224. "__type__": "cc.Vec2",
  1225. "x": 0,
  1226. "y": 0
  1227. },
  1228. "_fillStart": 0,
  1229. "_fillRange": 0,
  1230. "_isTrimmedMode": true,
  1231. "_useGrayscale": false,
  1232. "_atlas": null,
  1233. "_id": ""
  1234. },
  1235. {
  1236. "__type__": "cc.CompPrefabInfo",
  1237. "fileId": "1eU6EsxJ9OEIBJr49sf2TZ"
  1238. },
  1239. {
  1240. "__type__": "cc.PrefabInfo",
  1241. "root": {
  1242. "__id__": 1
  1243. },
  1244. "asset": {
  1245. "__id__": 0
  1246. },
  1247. "fileId": "8e1IjvH2NFS44aJX/bHK1i",
  1248. "instance": null,
  1249. "targetOverrides": null,
  1250. "nestedPrefabInstanceRoots": null
  1251. },
  1252. {
  1253. "__type__": "cc.Node",
  1254. "_name": "blfs",
  1255. "_objFlags": 0,
  1256. "__editorExtras__": {},
  1257. "_parent": {
  1258. "__id__": 24
  1259. },
  1260. "_children": [],
  1261. "_active": true,
  1262. "_components": [
  1263. {
  1264. "__id__": 58
  1265. },
  1266. {
  1267. "__id__": 60
  1268. }
  1269. ],
  1270. "_prefab": {
  1271. "__id__": 62
  1272. },
  1273. "_lpos": {
  1274. "__type__": "cc.Vec3",
  1275. "x": 0,
  1276. "y": -143.495,
  1277. "z": 0
  1278. },
  1279. "_lrot": {
  1280. "__type__": "cc.Quat",
  1281. "x": 0,
  1282. "y": 0,
  1283. "z": 0,
  1284. "w": 1
  1285. },
  1286. "_lscale": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 1,
  1289. "y": 1,
  1290. "z": 1
  1291. },
  1292. "_mobility": 0,
  1293. "_layer": 33554432,
  1294. "_euler": {
  1295. "__type__": "cc.Vec3",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 0
  1299. },
  1300. "_id": ""
  1301. },
  1302. {
  1303. "__type__": "cc.UITransform",
  1304. "_name": "",
  1305. "_objFlags": 0,
  1306. "__editorExtras__": {},
  1307. "node": {
  1308. "__id__": 57
  1309. },
  1310. "_enabled": true,
  1311. "__prefab": {
  1312. "__id__": 59
  1313. },
  1314. "_contentSize": {
  1315. "__type__": "cc.Size",
  1316. "width": 427,
  1317. "height": 46
  1318. },
  1319. "_anchorPoint": {
  1320. "__type__": "cc.Vec2",
  1321. "x": 0.5,
  1322. "y": 0.5
  1323. },
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.CompPrefabInfo",
  1328. "fileId": "9eWtiF2hFPCqOxYiyJuzwv"
  1329. },
  1330. {
  1331. "__type__": "cc.Sprite",
  1332. "_name": "",
  1333. "_objFlags": 0,
  1334. "__editorExtras__": {},
  1335. "node": {
  1336. "__id__": 57
  1337. },
  1338. "_enabled": true,
  1339. "__prefab": {
  1340. "__id__": 61
  1341. },
  1342. "_customMaterial": null,
  1343. "_srcBlendFactor": 2,
  1344. "_dstBlendFactor": 4,
  1345. "_color": {
  1346. "__type__": "cc.Color",
  1347. "r": 255,
  1348. "g": 255,
  1349. "b": 255,
  1350. "a": 255
  1351. },
  1352. "_spriteFrame": {
  1353. "__uuid__": "d3a1b10e-cc43-4845-88f7-7d6079bf7a78@f9941",
  1354. "__expectedType__": "cc.SpriteFrame"
  1355. },
  1356. "_type": 0,
  1357. "_fillType": 0,
  1358. "_sizeMode": 1,
  1359. "_fillCenter": {
  1360. "__type__": "cc.Vec2",
  1361. "x": 0,
  1362. "y": 0
  1363. },
  1364. "_fillStart": 0,
  1365. "_fillRange": 0,
  1366. "_isTrimmedMode": true,
  1367. "_useGrayscale": false,
  1368. "_atlas": null,
  1369. "_id": ""
  1370. },
  1371. {
  1372. "__type__": "cc.CompPrefabInfo",
  1373. "fileId": "cfeYAGHktHL4yN2kjW7EDl"
  1374. },
  1375. {
  1376. "__type__": "cc.PrefabInfo",
  1377. "root": {
  1378. "__id__": 1
  1379. },
  1380. "asset": {
  1381. "__id__": 0
  1382. },
  1383. "fileId": "8aQQ+7S81Nm6oeSQuqvrUf",
  1384. "instance": null,
  1385. "targetOverrides": null,
  1386. "nestedPrefabInstanceRoots": null
  1387. },
  1388. {
  1389. "__type__": "cc.Node",
  1390. "_name": "btn_resurrection",
  1391. "_objFlags": 0,
  1392. "__editorExtras__": {},
  1393. "_parent": {
  1394. "__id__": 24
  1395. },
  1396. "_children": [
  1397. {
  1398. "__id__": 64
  1399. },
  1400. {
  1401. "__id__": 70
  1402. }
  1403. ],
  1404. "_active": true,
  1405. "_components": [
  1406. {
  1407. "__id__": 76
  1408. },
  1409. {
  1410. "__id__": 78
  1411. },
  1412. {
  1413. "__id__": 80
  1414. }
  1415. ],
  1416. "_prefab": {
  1417. "__id__": 82
  1418. },
  1419. "_lpos": {
  1420. "__type__": "cc.Vec3",
  1421. "x": 11.053,
  1422. "y": -372.275,
  1423. "z": 0
  1424. },
  1425. "_lrot": {
  1426. "__type__": "cc.Quat",
  1427. "x": 0,
  1428. "y": 0,
  1429. "z": 0,
  1430. "w": 1
  1431. },
  1432. "_lscale": {
  1433. "__type__": "cc.Vec3",
  1434. "x": 1,
  1435. "y": 1,
  1436. "z": 1
  1437. },
  1438. "_mobility": 0,
  1439. "_layer": 33554432,
  1440. "_euler": {
  1441. "__type__": "cc.Vec3",
  1442. "x": 0,
  1443. "y": 0,
  1444. "z": 0
  1445. },
  1446. "_id": ""
  1447. },
  1448. {
  1449. "__type__": "cc.Node",
  1450. "_name": "icon_vector",
  1451. "_objFlags": 0,
  1452. "__editorExtras__": {},
  1453. "_parent": {
  1454. "__id__": 63
  1455. },
  1456. "_children": [],
  1457. "_active": true,
  1458. "_components": [
  1459. {
  1460. "__id__": 65
  1461. },
  1462. {
  1463. "__id__": 67
  1464. }
  1465. ],
  1466. "_prefab": {
  1467. "__id__": 69
  1468. },
  1469. "_lpos": {
  1470. "__type__": "cc.Vec3",
  1471. "x": -100.516,
  1472. "y": 5.585,
  1473. "z": 0
  1474. },
  1475. "_lrot": {
  1476. "__type__": "cc.Quat",
  1477. "x": 0,
  1478. "y": 0,
  1479. "z": 0,
  1480. "w": 1
  1481. },
  1482. "_lscale": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 1,
  1485. "y": 1,
  1486. "z": 1
  1487. },
  1488. "_mobility": 0,
  1489. "_layer": 33554432,
  1490. "_euler": {
  1491. "__type__": "cc.Vec3",
  1492. "x": 0,
  1493. "y": 0,
  1494. "z": 0
  1495. },
  1496. "_id": ""
  1497. },
  1498. {
  1499. "__type__": "cc.UITransform",
  1500. "_name": "",
  1501. "_objFlags": 0,
  1502. "__editorExtras__": {},
  1503. "node": {
  1504. "__id__": 64
  1505. },
  1506. "_enabled": true,
  1507. "__prefab": {
  1508. "__id__": 66
  1509. },
  1510. "_contentSize": {
  1511. "__type__": "cc.Size",
  1512. "width": 56,
  1513. "height": 56
  1514. },
  1515. "_anchorPoint": {
  1516. "__type__": "cc.Vec2",
  1517. "x": 0.5,
  1518. "y": 0.5
  1519. },
  1520. "_id": ""
  1521. },
  1522. {
  1523. "__type__": "cc.CompPrefabInfo",
  1524. "fileId": "9dg7621qtE8ZBdFwcr578o"
  1525. },
  1526. {
  1527. "__type__": "cc.Sprite",
  1528. "_name": "",
  1529. "_objFlags": 0,
  1530. "__editorExtras__": {},
  1531. "node": {
  1532. "__id__": 64
  1533. },
  1534. "_enabled": true,
  1535. "__prefab": {
  1536. "__id__": 68
  1537. },
  1538. "_customMaterial": null,
  1539. "_srcBlendFactor": 2,
  1540. "_dstBlendFactor": 4,
  1541. "_color": {
  1542. "__type__": "cc.Color",
  1543. "r": 255,
  1544. "g": 255,
  1545. "b": 255,
  1546. "a": 255
  1547. },
  1548. "_spriteFrame": {
  1549. "__uuid__": "333df597-fb53-4b3c-b9c7-d700e1d0bf57@f9941",
  1550. "__expectedType__": "cc.SpriteFrame"
  1551. },
  1552. "_type": 0,
  1553. "_fillType": 0,
  1554. "_sizeMode": 1,
  1555. "_fillCenter": {
  1556. "__type__": "cc.Vec2",
  1557. "x": 0,
  1558. "y": 0
  1559. },
  1560. "_fillStart": 0,
  1561. "_fillRange": 0,
  1562. "_isTrimmedMode": true,
  1563. "_useGrayscale": false,
  1564. "_atlas": null,
  1565. "_id": ""
  1566. },
  1567. {
  1568. "__type__": "cc.CompPrefabInfo",
  1569. "fileId": "f6V47wSVRGCoEAB6A7myax"
  1570. },
  1571. {
  1572. "__type__": "cc.PrefabInfo",
  1573. "root": {
  1574. "__id__": 1
  1575. },
  1576. "asset": {
  1577. "__id__": 0
  1578. },
  1579. "fileId": "86QPiXVopG8KCF91UOqrSg",
  1580. "instance": null,
  1581. "targetOverrides": null,
  1582. "nestedPrefabInstanceRoots": null
  1583. },
  1584. {
  1585. "__type__": "cc.Node",
  1586. "_name": "Label",
  1587. "_objFlags": 0,
  1588. "__editorExtras__": {},
  1589. "_parent": {
  1590. "__id__": 63
  1591. },
  1592. "_children": [],
  1593. "_active": true,
  1594. "_components": [
  1595. {
  1596. "__id__": 71
  1597. },
  1598. {
  1599. "__id__": 73
  1600. }
  1601. ],
  1602. "_prefab": {
  1603. "__id__": 75
  1604. },
  1605. "_lpos": {
  1606. "__type__": "cc.Vec3",
  1607. "x": 31.643,
  1608. "y": 6.515,
  1609. "z": 0
  1610. },
  1611. "_lrot": {
  1612. "__type__": "cc.Quat",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0,
  1616. "w": 1
  1617. },
  1618. "_lscale": {
  1619. "__type__": "cc.Vec3",
  1620. "x": 1,
  1621. "y": 1,
  1622. "z": 1
  1623. },
  1624. "_mobility": 0,
  1625. "_layer": 33554432,
  1626. "_euler": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 0,
  1629. "y": 0,
  1630. "z": 0
  1631. },
  1632. "_id": ""
  1633. },
  1634. {
  1635. "__type__": "cc.UITransform",
  1636. "_name": "",
  1637. "_objFlags": 0,
  1638. "__editorExtras__": {},
  1639. "node": {
  1640. "__id__": 70
  1641. },
  1642. "_enabled": true,
  1643. "__prefab": {
  1644. "__id__": 72
  1645. },
  1646. "_contentSize": {
  1647. "__type__": "cc.Size",
  1648. "width": 200,
  1649. "height": 60
  1650. },
  1651. "_anchorPoint": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0.5,
  1654. "y": 0.5
  1655. },
  1656. "_id": ""
  1657. },
  1658. {
  1659. "__type__": "cc.CompPrefabInfo",
  1660. "fileId": "92vw6FCi1BAYyQa7OnOskm"
  1661. },
  1662. {
  1663. "__type__": "cc.Label",
  1664. "_name": "",
  1665. "_objFlags": 0,
  1666. "__editorExtras__": {},
  1667. "node": {
  1668. "__id__": 70
  1669. },
  1670. "_enabled": true,
  1671. "__prefab": {
  1672. "__id__": 74
  1673. },
  1674. "_customMaterial": null,
  1675. "_srcBlendFactor": 2,
  1676. "_dstBlendFactor": 4,
  1677. "_color": {
  1678. "__type__": "cc.Color",
  1679. "r": 255,
  1680. "g": 255,
  1681. "b": 255,
  1682. "a": 255
  1683. },
  1684. "_string": "立即复活",
  1685. "_horizontalAlign": 1,
  1686. "_verticalAlign": 1,
  1687. "_actualFontSize": 48,
  1688. "_fontSize": 48,
  1689. "_fontFamily": "Arial",
  1690. "_lineHeight": 55,
  1691. "_overflow": 1,
  1692. "_enableWrapText": false,
  1693. "_font": null,
  1694. "_isSystemFontUsed": true,
  1695. "_spacingX": 0,
  1696. "_isItalic": false,
  1697. "_isBold": true,
  1698. "_isUnderline": false,
  1699. "_underlineHeight": 2,
  1700. "_cacheMode": 0,
  1701. "_enableOutline": true,
  1702. "_outlineColor": {
  1703. "__type__": "cc.Color",
  1704. "r": 88,
  1705. "g": 42,
  1706. "b": 9,
  1707. "a": 255
  1708. },
  1709. "_outlineWidth": 4,
  1710. "_enableShadow": false,
  1711. "_shadowColor": {
  1712. "__type__": "cc.Color",
  1713. "r": 0,
  1714. "g": 0,
  1715. "b": 0,
  1716. "a": 255
  1717. },
  1718. "_shadowOffset": {
  1719. "__type__": "cc.Vec2",
  1720. "x": 2,
  1721. "y": 2
  1722. },
  1723. "_shadowBlur": 2,
  1724. "_id": ""
  1725. },
  1726. {
  1727. "__type__": "cc.CompPrefabInfo",
  1728. "fileId": "cfQtDPPv9AraLDJspQ7IFk"
  1729. },
  1730. {
  1731. "__type__": "cc.PrefabInfo",
  1732. "root": {
  1733. "__id__": 1
  1734. },
  1735. "asset": {
  1736. "__id__": 0
  1737. },
  1738. "fileId": "c4LrdAVZlDZYtCMaXzf+DJ",
  1739. "instance": null,
  1740. "targetOverrides": null,
  1741. "nestedPrefabInstanceRoots": null
  1742. },
  1743. {
  1744. "__type__": "cc.UITransform",
  1745. "_name": "",
  1746. "_objFlags": 0,
  1747. "__editorExtras__": {},
  1748. "node": {
  1749. "__id__": 63
  1750. },
  1751. "_enabled": true,
  1752. "__prefab": {
  1753. "__id__": 77
  1754. },
  1755. "_contentSize": {
  1756. "__type__": "cc.Size",
  1757. "width": 546,
  1758. "height": 140
  1759. },
  1760. "_anchorPoint": {
  1761. "__type__": "cc.Vec2",
  1762. "x": 0.5,
  1763. "y": 0.5
  1764. },
  1765. "_id": ""
  1766. },
  1767. {
  1768. "__type__": "cc.CompPrefabInfo",
  1769. "fileId": "92PLrIuh9NG7exR4m9+bih"
  1770. },
  1771. {
  1772. "__type__": "cc.Sprite",
  1773. "_name": "",
  1774. "_objFlags": 0,
  1775. "__editorExtras__": {},
  1776. "node": {
  1777. "__id__": 63
  1778. },
  1779. "_enabled": true,
  1780. "__prefab": {
  1781. "__id__": 79
  1782. },
  1783. "_customMaterial": null,
  1784. "_srcBlendFactor": 2,
  1785. "_dstBlendFactor": 4,
  1786. "_color": {
  1787. "__type__": "cc.Color",
  1788. "r": 255,
  1789. "g": 255,
  1790. "b": 255,
  1791. "a": 255
  1792. },
  1793. "_spriteFrame": {
  1794. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  1795. "__expectedType__": "cc.SpriteFrame"
  1796. },
  1797. "_type": 1,
  1798. "_fillType": 0,
  1799. "_sizeMode": 0,
  1800. "_fillCenter": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 0,
  1803. "y": 0
  1804. },
  1805. "_fillStart": 0,
  1806. "_fillRange": 0,
  1807. "_isTrimmedMode": true,
  1808. "_useGrayscale": false,
  1809. "_atlas": null,
  1810. "_id": ""
  1811. },
  1812. {
  1813. "__type__": "cc.CompPrefabInfo",
  1814. "fileId": "1b4qkvobhBLYpdbrgLOv4P"
  1815. },
  1816. {
  1817. "__type__": "cc.Button",
  1818. "_name": "",
  1819. "_objFlags": 0,
  1820. "__editorExtras__": {},
  1821. "node": {
  1822. "__id__": 63
  1823. },
  1824. "_enabled": true,
  1825. "__prefab": {
  1826. "__id__": 81
  1827. },
  1828. "clickEvents": [],
  1829. "_interactable": true,
  1830. "_transition": 3,
  1831. "_normalColor": {
  1832. "__type__": "cc.Color",
  1833. "r": 214,
  1834. "g": 214,
  1835. "b": 214,
  1836. "a": 255
  1837. },
  1838. "_hoverColor": {
  1839. "__type__": "cc.Color",
  1840. "r": 211,
  1841. "g": 211,
  1842. "b": 211,
  1843. "a": 255
  1844. },
  1845. "_pressedColor": {
  1846. "__type__": "cc.Color",
  1847. "r": 255,
  1848. "g": 255,
  1849. "b": 255,
  1850. "a": 255
  1851. },
  1852. "_disabledColor": {
  1853. "__type__": "cc.Color",
  1854. "r": 124,
  1855. "g": 124,
  1856. "b": 124,
  1857. "a": 255
  1858. },
  1859. "_normalSprite": null,
  1860. "_hoverSprite": null,
  1861. "_pressedSprite": null,
  1862. "_disabledSprite": null,
  1863. "_duration": 0.1,
  1864. "_zoomScale": 1.2,
  1865. "_target": {
  1866. "__id__": 63
  1867. },
  1868. "_id": ""
  1869. },
  1870. {
  1871. "__type__": "cc.CompPrefabInfo",
  1872. "fileId": "baVg8R4y9GppQWAYTX5OK4"
  1873. },
  1874. {
  1875. "__type__": "cc.PrefabInfo",
  1876. "root": {
  1877. "__id__": 1
  1878. },
  1879. "asset": {
  1880. "__id__": 0
  1881. },
  1882. "fileId": "42jZ9VZMxPcbLcHtAJ8Tm+",
  1883. "instance": null,
  1884. "targetOverrides": null,
  1885. "nestedPrefabInstanceRoots": null
  1886. },
  1887. {
  1888. "__type__": "cc.Node",
  1889. "_name": "btn_restart",
  1890. "_objFlags": 0,
  1891. "__editorExtras__": {},
  1892. "_parent": {
  1893. "__id__": 24
  1894. },
  1895. "_children": [
  1896. {
  1897. "__id__": 84
  1898. }
  1899. ],
  1900. "_active": true,
  1901. "_components": [
  1902. {
  1903. "__id__": 90
  1904. },
  1905. {
  1906. "__id__": 92
  1907. },
  1908. {
  1909. "__id__": 94
  1910. }
  1911. ],
  1912. "_prefab": {
  1913. "__id__": 96
  1914. },
  1915. "_lpos": {
  1916. "__type__": "cc.Vec3",
  1917. "x": 7.446,
  1918. "y": -545.354,
  1919. "z": 0
  1920. },
  1921. "_lrot": {
  1922. "__type__": "cc.Quat",
  1923. "x": 0,
  1924. "y": 0,
  1925. "z": 0,
  1926. "w": 1
  1927. },
  1928. "_lscale": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 1,
  1931. "y": 1,
  1932. "z": 1
  1933. },
  1934. "_mobility": 0,
  1935. "_layer": 33554432,
  1936. "_euler": {
  1937. "__type__": "cc.Vec3",
  1938. "x": 0,
  1939. "y": 0,
  1940. "z": 0
  1941. },
  1942. "_id": ""
  1943. },
  1944. {
  1945. "__type__": "cc.Node",
  1946. "_name": "Label",
  1947. "_objFlags": 0,
  1948. "__editorExtras__": {},
  1949. "_parent": {
  1950. "__id__": 83
  1951. },
  1952. "_children": [],
  1953. "_active": true,
  1954. "_components": [
  1955. {
  1956. "__id__": 85
  1957. },
  1958. {
  1959. "__id__": 87
  1960. }
  1961. ],
  1962. "_prefab": {
  1963. "__id__": 89
  1964. },
  1965. "_lpos": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0
  1970. },
  1971. "_lrot": {
  1972. "__type__": "cc.Quat",
  1973. "x": 0,
  1974. "y": 0,
  1975. "z": 0,
  1976. "w": 1
  1977. },
  1978. "_lscale": {
  1979. "__type__": "cc.Vec3",
  1980. "x": 1,
  1981. "y": 1,
  1982. "z": 1
  1983. },
  1984. "_mobility": 0,
  1985. "_layer": 33554432,
  1986. "_euler": {
  1987. "__type__": "cc.Vec3",
  1988. "x": 0,
  1989. "y": 0,
  1990. "z": 0
  1991. },
  1992. "_id": ""
  1993. },
  1994. {
  1995. "__type__": "cc.UITransform",
  1996. "_name": "",
  1997. "_objFlags": 0,
  1998. "__editorExtras__": {},
  1999. "node": {
  2000. "__id__": 84
  2001. },
  2002. "_enabled": true,
  2003. "__prefab": {
  2004. "__id__": 86
  2005. },
  2006. "_contentSize": {
  2007. "__type__": "cc.Size",
  2008. "width": 200,
  2009. "height": 60
  2010. },
  2011. "_anchorPoint": {
  2012. "__type__": "cc.Vec2",
  2013. "x": 0.5,
  2014. "y": 0.5
  2015. },
  2016. "_id": ""
  2017. },
  2018. {
  2019. "__type__": "cc.CompPrefabInfo",
  2020. "fileId": "95zMaHlfJNIIGsYFZ2qHfG"
  2021. },
  2022. {
  2023. "__type__": "cc.Label",
  2024. "_name": "",
  2025. "_objFlags": 0,
  2026. "__editorExtras__": {},
  2027. "node": {
  2028. "__id__": 84
  2029. },
  2030. "_enabled": true,
  2031. "__prefab": {
  2032. "__id__": 88
  2033. },
  2034. "_customMaterial": null,
  2035. "_srcBlendFactor": 2,
  2036. "_dstBlendFactor": 4,
  2037. "_color": {
  2038. "__type__": "cc.Color",
  2039. "r": 255,
  2040. "g": 255,
  2041. "b": 255,
  2042. "a": 255
  2043. },
  2044. "_string": "重新开始",
  2045. "_horizontalAlign": 1,
  2046. "_verticalAlign": 1,
  2047. "_actualFontSize": 48,
  2048. "_fontSize": 48,
  2049. "_fontFamily": "Arial",
  2050. "_lineHeight": 50,
  2051. "_overflow": 1,
  2052. "_enableWrapText": false,
  2053. "_font": null,
  2054. "_isSystemFontUsed": true,
  2055. "_spacingX": 0,
  2056. "_isItalic": false,
  2057. "_isBold": true,
  2058. "_isUnderline": false,
  2059. "_underlineHeight": 2,
  2060. "_cacheMode": 0,
  2061. "_enableOutline": true,
  2062. "_outlineColor": {
  2063. "__type__": "cc.Color",
  2064. "r": 88,
  2065. "g": 42,
  2066. "b": 9,
  2067. "a": 255
  2068. },
  2069. "_outlineWidth": 4,
  2070. "_enableShadow": false,
  2071. "_shadowColor": {
  2072. "__type__": "cc.Color",
  2073. "r": 0,
  2074. "g": 0,
  2075. "b": 0,
  2076. "a": 255
  2077. },
  2078. "_shadowOffset": {
  2079. "__type__": "cc.Vec2",
  2080. "x": 2,
  2081. "y": 2
  2082. },
  2083. "_shadowBlur": 2,
  2084. "_id": ""
  2085. },
  2086. {
  2087. "__type__": "cc.CompPrefabInfo",
  2088. "fileId": "41OFVK6k9PGoPOOexmUemn"
  2089. },
  2090. {
  2091. "__type__": "cc.PrefabInfo",
  2092. "root": {
  2093. "__id__": 1
  2094. },
  2095. "asset": {
  2096. "__id__": 0
  2097. },
  2098. "fileId": "c9Q2VGn/NKUbnTIq6QeEZt",
  2099. "instance": null,
  2100. "targetOverrides": null,
  2101. "nestedPrefabInstanceRoots": null
  2102. },
  2103. {
  2104. "__type__": "cc.UITransform",
  2105. "_name": "",
  2106. "_objFlags": 0,
  2107. "__editorExtras__": {},
  2108. "node": {
  2109. "__id__": 83
  2110. },
  2111. "_enabled": true,
  2112. "__prefab": {
  2113. "__id__": 91
  2114. },
  2115. "_contentSize": {
  2116. "__type__": "cc.Size",
  2117. "width": 546,
  2118. "height": 140
  2119. },
  2120. "_anchorPoint": {
  2121. "__type__": "cc.Vec2",
  2122. "x": 0.5,
  2123. "y": 0.5
  2124. },
  2125. "_id": ""
  2126. },
  2127. {
  2128. "__type__": "cc.CompPrefabInfo",
  2129. "fileId": "22CO7QMs1KpJM3pKvCgRl3"
  2130. },
  2131. {
  2132. "__type__": "cc.Sprite",
  2133. "_name": "",
  2134. "_objFlags": 0,
  2135. "__editorExtras__": {},
  2136. "node": {
  2137. "__id__": 83
  2138. },
  2139. "_enabled": true,
  2140. "__prefab": {
  2141. "__id__": 93
  2142. },
  2143. "_customMaterial": null,
  2144. "_srcBlendFactor": 2,
  2145. "_dstBlendFactor": 4,
  2146. "_color": {
  2147. "__type__": "cc.Color",
  2148. "r": 255,
  2149. "g": 255,
  2150. "b": 255,
  2151. "a": 255
  2152. },
  2153. "_spriteFrame": {
  2154. "__uuid__": "687ccbde-5159-4afa-84c3-6671c93b20b7@f9941",
  2155. "__expectedType__": "cc.SpriteFrame"
  2156. },
  2157. "_type": 1,
  2158. "_fillType": 0,
  2159. "_sizeMode": 0,
  2160. "_fillCenter": {
  2161. "__type__": "cc.Vec2",
  2162. "x": 0,
  2163. "y": 0
  2164. },
  2165. "_fillStart": 0,
  2166. "_fillRange": 0,
  2167. "_isTrimmedMode": true,
  2168. "_useGrayscale": false,
  2169. "_atlas": null,
  2170. "_id": ""
  2171. },
  2172. {
  2173. "__type__": "cc.CompPrefabInfo",
  2174. "fileId": "52QZzZ7FZGC7NizNZhNkKe"
  2175. },
  2176. {
  2177. "__type__": "cc.Button",
  2178. "_name": "",
  2179. "_objFlags": 0,
  2180. "__editorExtras__": {},
  2181. "node": {
  2182. "__id__": 83
  2183. },
  2184. "_enabled": true,
  2185. "__prefab": {
  2186. "__id__": 95
  2187. },
  2188. "clickEvents": [],
  2189. "_interactable": true,
  2190. "_transition": 3,
  2191. "_normalColor": {
  2192. "__type__": "cc.Color",
  2193. "r": 214,
  2194. "g": 214,
  2195. "b": 214,
  2196. "a": 255
  2197. },
  2198. "_hoverColor": {
  2199. "__type__": "cc.Color",
  2200. "r": 211,
  2201. "g": 211,
  2202. "b": 211,
  2203. "a": 255
  2204. },
  2205. "_pressedColor": {
  2206. "__type__": "cc.Color",
  2207. "r": 255,
  2208. "g": 255,
  2209. "b": 255,
  2210. "a": 255
  2211. },
  2212. "_disabledColor": {
  2213. "__type__": "cc.Color",
  2214. "r": 124,
  2215. "g": 124,
  2216. "b": 124,
  2217. "a": 255
  2218. },
  2219. "_normalSprite": {
  2220. "__uuid__": "687ccbde-5159-4afa-84c3-6671c93b20b7@f9941",
  2221. "__expectedType__": "cc.SpriteFrame"
  2222. },
  2223. "_hoverSprite": null,
  2224. "_pressedSprite": null,
  2225. "_disabledSprite": null,
  2226. "_duration": 0.1,
  2227. "_zoomScale": 1.2,
  2228. "_target": {
  2229. "__id__": 83
  2230. },
  2231. "_id": ""
  2232. },
  2233. {
  2234. "__type__": "cc.CompPrefabInfo",
  2235. "fileId": "edpFXvePBIRZ1a9WGkfbH2"
  2236. },
  2237. {
  2238. "__type__": "cc.PrefabInfo",
  2239. "root": {
  2240. "__id__": 1
  2241. },
  2242. "asset": {
  2243. "__id__": 0
  2244. },
  2245. "fileId": "09z2E/5bZFw7xZyyw+UMRs",
  2246. "instance": null,
  2247. "targetOverrides": null,
  2248. "nestedPrefabInstanceRoots": null
  2249. },
  2250. {
  2251. "__type__": "cc.Node",
  2252. "_name": "guide",
  2253. "_objFlags": 0,
  2254. "__editorExtras__": {},
  2255. "_parent": {
  2256. "__id__": 24
  2257. },
  2258. "_children": [],
  2259. "_active": true,
  2260. "_components": [
  2261. {
  2262. "__id__": 98
  2263. },
  2264. {
  2265. "__id__": 100
  2266. },
  2267. {
  2268. "__id__": 102
  2269. }
  2270. ],
  2271. "_prefab": {
  2272. "__id__": 104
  2273. },
  2274. "_lpos": {
  2275. "__type__": "cc.Vec3",
  2276. "x": 253,
  2277. "y": -423,
  2278. "z": 0
  2279. },
  2280. "_lrot": {
  2281. "__type__": "cc.Quat",
  2282. "x": 0,
  2283. "y": 0,
  2284. "z": 0,
  2285. "w": 1
  2286. },
  2287. "_lscale": {
  2288. "__type__": "cc.Vec3",
  2289. "x": 1,
  2290. "y": 1,
  2291. "z": 1
  2292. },
  2293. "_mobility": 0,
  2294. "_layer": 33554432,
  2295. "_euler": {
  2296. "__type__": "cc.Vec3",
  2297. "x": 0,
  2298. "y": 0,
  2299. "z": 0
  2300. },
  2301. "_id": ""
  2302. },
  2303. {
  2304. "__type__": "cc.UITransform",
  2305. "_name": "",
  2306. "_objFlags": 0,
  2307. "__editorExtras__": {},
  2308. "node": {
  2309. "__id__": 97
  2310. },
  2311. "_enabled": true,
  2312. "__prefab": {
  2313. "__id__": 99
  2314. },
  2315. "_contentSize": {
  2316. "__type__": "cc.Size",
  2317. "width": 120,
  2318. "height": 129
  2319. },
  2320. "_anchorPoint": {
  2321. "__type__": "cc.Vec2",
  2322. "x": 0.5,
  2323. "y": 0.5
  2324. },
  2325. "_id": ""
  2326. },
  2327. {
  2328. "__type__": "cc.CompPrefabInfo",
  2329. "fileId": "10YsOmDU5J0o235jzuo4k2"
  2330. },
  2331. {
  2332. "__type__": "cc.Sprite",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "__editorExtras__": {},
  2336. "node": {
  2337. "__id__": 97
  2338. },
  2339. "_enabled": true,
  2340. "__prefab": {
  2341. "__id__": 101
  2342. },
  2343. "_customMaterial": null,
  2344. "_srcBlendFactor": 2,
  2345. "_dstBlendFactor": 4,
  2346. "_color": {
  2347. "__type__": "cc.Color",
  2348. "r": 255,
  2349. "g": 255,
  2350. "b": 255,
  2351. "a": 255
  2352. },
  2353. "_spriteFrame": {
  2354. "__uuid__": "1883e639-28b3-4d59-96db-57ffaa299715@f9941",
  2355. "__expectedType__": "cc.SpriteFrame"
  2356. },
  2357. "_type": 0,
  2358. "_fillType": 0,
  2359. "_sizeMode": 1,
  2360. "_fillCenter": {
  2361. "__type__": "cc.Vec2",
  2362. "x": 0,
  2363. "y": 0
  2364. },
  2365. "_fillStart": 0,
  2366. "_fillRange": 0,
  2367. "_isTrimmedMode": true,
  2368. "_useGrayscale": false,
  2369. "_atlas": null,
  2370. "_id": ""
  2371. },
  2372. {
  2373. "__type__": "cc.CompPrefabInfo",
  2374. "fileId": "9cT6e75TVJubqKZ16agwNw"
  2375. },
  2376. {
  2377. "__type__": "cc.Animation",
  2378. "_name": "",
  2379. "_objFlags": 0,
  2380. "__editorExtras__": {},
  2381. "node": {
  2382. "__id__": 97
  2383. },
  2384. "_enabled": true,
  2385. "__prefab": {
  2386. "__id__": 103
  2387. },
  2388. "playOnLoad": false,
  2389. "_clips": [
  2390. {
  2391. "__uuid__": "f1b91ca4-bfcd-4774-a8e7-c741ea10beff",
  2392. "__expectedType__": "cc.AnimationClip"
  2393. }
  2394. ],
  2395. "_defaultClip": null,
  2396. "_id": ""
  2397. },
  2398. {
  2399. "__type__": "cc.CompPrefabInfo",
  2400. "fileId": "5eWcS2MXRPppnx4EqBgC2H"
  2401. },
  2402. {
  2403. "__type__": "cc.PrefabInfo",
  2404. "root": {
  2405. "__id__": 1
  2406. },
  2407. "asset": {
  2408. "__id__": 0
  2409. },
  2410. "fileId": "b29az5GaFABpAKXI69ylfR",
  2411. "instance": null,
  2412. "targetOverrides": null,
  2413. "nestedPrefabInstanceRoots": null
  2414. },
  2415. {
  2416. "__type__": "cc.Node",
  2417. "_name": "ProgressBar",
  2418. "_objFlags": 0,
  2419. "__editorExtras__": {},
  2420. "_parent": {
  2421. "__id__": 24
  2422. },
  2423. "_children": [
  2424. {
  2425. "__id__": 106
  2426. }
  2427. ],
  2428. "_active": true,
  2429. "_components": [
  2430. {
  2431. "__id__": 112
  2432. },
  2433. {
  2434. "__id__": 114
  2435. },
  2436. {
  2437. "__id__": 116
  2438. },
  2439. {
  2440. "__id__": 118
  2441. },
  2442. {
  2443. "__id__": 120
  2444. }
  2445. ],
  2446. "_prefab": {
  2447. "__id__": 122
  2448. },
  2449. "_lpos": {
  2450. "__type__": "cc.Vec3",
  2451. "x": -1.3,
  2452. "y": 180.432,
  2453. "z": 0
  2454. },
  2455. "_lrot": {
  2456. "__type__": "cc.Quat",
  2457. "x": 0,
  2458. "y": 0,
  2459. "z": 0,
  2460. "w": 1
  2461. },
  2462. "_lscale": {
  2463. "__type__": "cc.Vec3",
  2464. "x": 1,
  2465. "y": 1,
  2466. "z": 1
  2467. },
  2468. "_mobility": 0,
  2469. "_layer": 33554432,
  2470. "_euler": {
  2471. "__type__": "cc.Vec3",
  2472. "x": 0,
  2473. "y": 0,
  2474. "z": 0
  2475. },
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.Node",
  2480. "_name": "Bar",
  2481. "_objFlags": 0,
  2482. "__editorExtras__": {},
  2483. "_parent": {
  2484. "__id__": 105
  2485. },
  2486. "_children": [],
  2487. "_active": true,
  2488. "_components": [
  2489. {
  2490. "__id__": 107
  2491. },
  2492. {
  2493. "__id__": 109
  2494. }
  2495. ],
  2496. "_prefab": {
  2497. "__id__": 111
  2498. },
  2499. "_lpos": {
  2500. "__type__": "cc.Vec3",
  2501. "x": 0,
  2502. "y": 0,
  2503. "z": 0
  2504. },
  2505. "_lrot": {
  2506. "__type__": "cc.Quat",
  2507. "x": 0,
  2508. "y": 0,
  2509. "z": 0,
  2510. "w": 1
  2511. },
  2512. "_lscale": {
  2513. "__type__": "cc.Vec3",
  2514. "x": 1,
  2515. "y": 1,
  2516. "z": 1
  2517. },
  2518. "_mobility": 0,
  2519. "_layer": 33554432,
  2520. "_euler": {
  2521. "__type__": "cc.Vec3",
  2522. "x": 0,
  2523. "y": 0,
  2524. "z": 0
  2525. },
  2526. "_id": ""
  2527. },
  2528. {
  2529. "__type__": "cc.UITransform",
  2530. "_name": "",
  2531. "_objFlags": 0,
  2532. "__editorExtras__": {},
  2533. "node": {
  2534. "__id__": 106
  2535. },
  2536. "_enabled": true,
  2537. "__prefab": {
  2538. "__id__": 108
  2539. },
  2540. "_contentSize": {
  2541. "__type__": "cc.Size",
  2542. "width": 352,
  2543. "height": 352
  2544. },
  2545. "_anchorPoint": {
  2546. "__type__": "cc.Vec2",
  2547. "x": 0.5,
  2548. "y": 0.5
  2549. },
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.CompPrefabInfo",
  2554. "fileId": "8aXeqvR1hMOafuGLEiOw2u"
  2555. },
  2556. {
  2557. "__type__": "cc.Sprite",
  2558. "_name": "",
  2559. "_objFlags": 0,
  2560. "__editorExtras__": {},
  2561. "node": {
  2562. "__id__": 106
  2563. },
  2564. "_enabled": true,
  2565. "__prefab": {
  2566. "__id__": 110
  2567. },
  2568. "_customMaterial": null,
  2569. "_srcBlendFactor": 2,
  2570. "_dstBlendFactor": 4,
  2571. "_color": {
  2572. "__type__": "cc.Color",
  2573. "r": 255,
  2574. "g": 255,
  2575. "b": 255,
  2576. "a": 255
  2577. },
  2578. "_spriteFrame": {
  2579. "__uuid__": "8d8e43d7-dcbd-4de8-8910-98c65b93469f@f9941",
  2580. "__expectedType__": "cc.SpriteFrame"
  2581. },
  2582. "_type": 3,
  2583. "_fillType": 2,
  2584. "_sizeMode": 2,
  2585. "_fillCenter": {
  2586. "__type__": "cc.Vec2",
  2587. "x": 0.5,
  2588. "y": 0.5
  2589. },
  2590. "_fillStart": 0.25,
  2591. "_fillRange": -0.11,
  2592. "_isTrimmedMode": true,
  2593. "_useGrayscale": false,
  2594. "_atlas": null,
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.CompPrefabInfo",
  2599. "fileId": "f2WKAV7yBNI4TtWG8UZp6x"
  2600. },
  2601. {
  2602. "__type__": "cc.PrefabInfo",
  2603. "root": {
  2604. "__id__": 1
  2605. },
  2606. "asset": {
  2607. "__id__": 0
  2608. },
  2609. "fileId": "e9395BA/RHw4qmdNKQzp4P",
  2610. "instance": null,
  2611. "targetOverrides": null,
  2612. "nestedPrefabInstanceRoots": null
  2613. },
  2614. {
  2615. "__type__": "cc.UITransform",
  2616. "_name": "",
  2617. "_objFlags": 0,
  2618. "__editorExtras__": {},
  2619. "node": {
  2620. "__id__": 105
  2621. },
  2622. "_enabled": true,
  2623. "__prefab": {
  2624. "__id__": 113
  2625. },
  2626. "_contentSize": {
  2627. "__type__": "cc.Size",
  2628. "width": 352,
  2629. "height": 352
  2630. },
  2631. "_anchorPoint": {
  2632. "__type__": "cc.Vec2",
  2633. "x": 0.5,
  2634. "y": 0.5
  2635. },
  2636. "_id": ""
  2637. },
  2638. {
  2639. "__type__": "cc.CompPrefabInfo",
  2640. "fileId": "e0V4e3X59EK7qMBe3qeXM3"
  2641. },
  2642. {
  2643. "__type__": "cc.Sprite",
  2644. "_name": "",
  2645. "_objFlags": 0,
  2646. "__editorExtras__": {},
  2647. "node": {
  2648. "__id__": 105
  2649. },
  2650. "_enabled": true,
  2651. "__prefab": {
  2652. "__id__": 115
  2653. },
  2654. "_customMaterial": null,
  2655. "_srcBlendFactor": 2,
  2656. "_dstBlendFactor": 4,
  2657. "_color": {
  2658. "__type__": "cc.Color",
  2659. "r": 255,
  2660. "g": 255,
  2661. "b": 255,
  2662. "a": 255
  2663. },
  2664. "_spriteFrame": {
  2665. "__uuid__": "b6e9049c-d02c-4ec6-8f71-6cda04e177ec@f9941",
  2666. "__expectedType__": "cc.SpriteFrame"
  2667. },
  2668. "_type": 1,
  2669. "_fillType": 0,
  2670. "_sizeMode": 2,
  2671. "_fillCenter": {
  2672. "__type__": "cc.Vec2",
  2673. "x": 0,
  2674. "y": 0
  2675. },
  2676. "_fillStart": 0,
  2677. "_fillRange": 0,
  2678. "_isTrimmedMode": true,
  2679. "_useGrayscale": false,
  2680. "_atlas": null,
  2681. "_id": ""
  2682. },
  2683. {
  2684. "__type__": "cc.CompPrefabInfo",
  2685. "fileId": "a7PJf23/FJabBPK9JeuafX"
  2686. },
  2687. {
  2688. "__type__": "cc.ProgressBar",
  2689. "_name": "",
  2690. "_objFlags": 0,
  2691. "__editorExtras__": {},
  2692. "node": {
  2693. "__id__": 105
  2694. },
  2695. "_enabled": true,
  2696. "__prefab": {
  2697. "__id__": 117
  2698. },
  2699. "_barSprite": {
  2700. "__id__": 109
  2701. },
  2702. "_mode": 2,
  2703. "_totalLength": 1,
  2704. "_progress": 0.11,
  2705. "_reverse": true,
  2706. "_id": ""
  2707. },
  2708. {
  2709. "__type__": "cc.CompPrefabInfo",
  2710. "fileId": "99CgcZI3dMz5UIYYwlw4CE"
  2711. },
  2712. {
  2713. "__type__": "2a50eqI7JZNV5Sh0y/Qd9C6",
  2714. "_name": "",
  2715. "_objFlags": 0,
  2716. "__editorExtras__": {},
  2717. "node": {
  2718. "__id__": 105
  2719. },
  2720. "_enabled": true,
  2721. "__prefab": {
  2722. "__id__": 119
  2723. },
  2724. "controller": false,
  2725. "watchPath": "",
  2726. "componentName": "cc.ProgressBar",
  2727. "componentProperty": "progress",
  2728. "refreshRate": 0.1,
  2729. "watchPathArr": [
  2730. "*.cd",
  2731. "*.cdMax"
  2732. ],
  2733. "stringFormat": "",
  2734. "_id": ""
  2735. },
  2736. {
  2737. "__type__": "cc.CompPrefabInfo",
  2738. "fileId": "78FUu7YAJNJpAM+n+gvRlg"
  2739. },
  2740. {
  2741. "__type__": "47052uw/Y5O1LXaLObj4ARx",
  2742. "_name": "",
  2743. "_objFlags": 0,
  2744. "__editorExtras__": {},
  2745. "node": {
  2746. "__id__": 105
  2747. },
  2748. "_enabled": true,
  2749. "__prefab": {
  2750. "__id__": 121
  2751. },
  2752. "watchPath": "*.cd",
  2753. "foreachChildMode": false,
  2754. "condition": 2,
  2755. "foreachChildType": 0,
  2756. "valueA": 0,
  2757. "valueB": 0,
  2758. "valueAction": 0,
  2759. "valueActionOpacity": 0,
  2760. "valueActionColor": {
  2761. "__type__": "cc.Color",
  2762. "r": 155,
  2763. "g": 155,
  2764. "b": 155,
  2765. "a": 255
  2766. },
  2767. "valueComponentName": "",
  2768. "valueComponentProperty": "",
  2769. "valueComponentDefaultValue": "",
  2770. "valueComponentActionValue": "",
  2771. "watchNodes": [
  2772. {
  2773. "__id__": 106
  2774. }
  2775. ],
  2776. "_id": ""
  2777. },
  2778. {
  2779. "__type__": "cc.CompPrefabInfo",
  2780. "fileId": "36C9tolAdBlZC96+N6ubwv"
  2781. },
  2782. {
  2783. "__type__": "cc.PrefabInfo",
  2784. "root": {
  2785. "__id__": 1
  2786. },
  2787. "asset": {
  2788. "__id__": 0
  2789. },
  2790. "fileId": "d0OmsJlK1MDZ9SuEIRLElZ",
  2791. "instance": null,
  2792. "targetOverrides": null,
  2793. "nestedPrefabInstanceRoots": null
  2794. },
  2795. {
  2796. "__type__": "cc.UITransform",
  2797. "_name": "",
  2798. "_objFlags": 0,
  2799. "__editorExtras__": {},
  2800. "node": {
  2801. "__id__": 24
  2802. },
  2803. "_enabled": true,
  2804. "__prefab": {
  2805. "__id__": 124
  2806. },
  2807. "_contentSize": {
  2808. "__type__": "cc.Size",
  2809. "width": 700,
  2810. "height": 1260
  2811. },
  2812. "_anchorPoint": {
  2813. "__type__": "cc.Vec2",
  2814. "x": 0.5,
  2815. "y": 0.5
  2816. },
  2817. "_id": ""
  2818. },
  2819. {
  2820. "__type__": "cc.CompPrefabInfo",
  2821. "fileId": "4dIs8bo45F7453eFCAUlnh"
  2822. },
  2823. {
  2824. "__type__": "cc.PrefabInfo",
  2825. "root": {
  2826. "__id__": 1
  2827. },
  2828. "asset": {
  2829. "__id__": 0
  2830. },
  2831. "fileId": "80Ahm+C9JP4ZXBxL3tRDVp",
  2832. "instance": null,
  2833. "targetOverrides": null,
  2834. "nestedPrefabInstanceRoots": null
  2835. },
  2836. {
  2837. "__type__": "cc.UITransform",
  2838. "_name": "",
  2839. "_objFlags": 0,
  2840. "__editorExtras__": {},
  2841. "node": {
  2842. "__id__": 1
  2843. },
  2844. "_enabled": true,
  2845. "__prefab": {
  2846. "__id__": 127
  2847. },
  2848. "_contentSize": {
  2849. "__type__": "cc.Size",
  2850. "width": 720,
  2851. "height": 1600
  2852. },
  2853. "_anchorPoint": {
  2854. "__type__": "cc.Vec2",
  2855. "x": 0.5,
  2856. "y": 0.5
  2857. },
  2858. "_id": ""
  2859. },
  2860. {
  2861. "__type__": "cc.CompPrefabInfo",
  2862. "fileId": "45O6Y8ta5HK6T+yTzU2c7w"
  2863. },
  2864. {
  2865. "__type__": "a8615R7PmZKh4W+fAfDWRLV",
  2866. "_name": "",
  2867. "_objFlags": 0,
  2868. "__editorExtras__": {},
  2869. "node": {
  2870. "__id__": 1
  2871. },
  2872. "_enabled": true,
  2873. "__prefab": {
  2874. "__id__": 129
  2875. },
  2876. "lab_bar": null,
  2877. "progressBar": null,
  2878. "_id": ""
  2879. },
  2880. {
  2881. "__type__": "cc.CompPrefabInfo",
  2882. "fileId": "b38Jr/LO9MmYKShW7GqG/P"
  2883. },
  2884. {
  2885. "__type__": "cc.Widget",
  2886. "_name": "",
  2887. "_objFlags": 0,
  2888. "__editorExtras__": {},
  2889. "node": {
  2890. "__id__": 1
  2891. },
  2892. "_enabled": true,
  2893. "__prefab": {
  2894. "__id__": 131
  2895. },
  2896. "_alignFlags": 45,
  2897. "_target": null,
  2898. "_left": 0,
  2899. "_right": 0,
  2900. "_top": 0,
  2901. "_bottom": 0,
  2902. "_horizontalCenter": 0,
  2903. "_verticalCenter": 0,
  2904. "_isAbsLeft": true,
  2905. "_isAbsRight": true,
  2906. "_isAbsTop": true,
  2907. "_isAbsBottom": true,
  2908. "_isAbsHorizontalCenter": true,
  2909. "_isAbsVerticalCenter": true,
  2910. "_originalWidth": 720,
  2911. "_originalHeight": 1600,
  2912. "_alignMode": 2,
  2913. "_lockFlags": 0,
  2914. "_id": ""
  2915. },
  2916. {
  2917. "__type__": "cc.CompPrefabInfo",
  2918. "fileId": "f5m2lIiZRImKffL0P+6F+j"
  2919. },
  2920. {
  2921. "__type__": "cc.PrefabInfo",
  2922. "root": {
  2923. "__id__": 1
  2924. },
  2925. "asset": {
  2926. "__id__": 0
  2927. },
  2928. "fileId": "7bf5hR8c1H27BVPQkkvl+S",
  2929. "instance": null,
  2930. "targetOverrides": null,
  2931. "nestedPrefabInstanceRoots": [
  2932. {
  2933. "__id__": 2
  2934. }
  2935. ]
  2936. }
  2937. ]