gameOver.prefab 45 KB

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