NextGoalPopup.prefab 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "NextGoalPopup",
  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": "NextGoalPopup",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. }
  24. ],
  25. "_active": true,
  26. "_components": [
  27. {
  28. "__id__": 76
  29. },
  30. {
  31. "__id__": 78
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 80
  36. },
  37. "_lpos": {
  38. "__type__": "cc.Vec3",
  39. "x": 0,
  40. "y": 0,
  41. "z": 0
  42. },
  43. "_lrot": {
  44. "__type__": "cc.Quat",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0,
  48. "w": 1
  49. },
  50. "_lscale": {
  51. "__type__": "cc.Vec3",
  52. "x": 1,
  53. "y": 1,
  54. "z": 1
  55. },
  56. "_mobility": 0,
  57. "_layer": 33554432,
  58. "_euler": {
  59. "__type__": "cc.Vec3",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0
  63. },
  64. "_id": ""
  65. },
  66. {
  67. "__type__": "cc.Node",
  68. "_name": "showNode2",
  69. "_objFlags": 0,
  70. "__editorExtras__": {},
  71. "_parent": {
  72. "__id__": 1
  73. },
  74. "_children": [
  75. {
  76. "__id__": 3
  77. },
  78. {
  79. "__id__": 9
  80. },
  81. {
  82. "__id__": 15
  83. },
  84. {
  85. "__id__": 21
  86. },
  87. {
  88. "__id__": 51
  89. },
  90. {
  91. "__id__": 69
  92. }
  93. ],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 73
  98. }
  99. ],
  100. "_prefab": {
  101. "__id__": 75
  102. },
  103. "_lpos": {
  104. "__type__": "cc.Vec3",
  105. "x": 0,
  106. "y": 0,
  107. "z": 0
  108. },
  109. "_lrot": {
  110. "__type__": "cc.Quat",
  111. "x": 0,
  112. "y": 0,
  113. "z": 0,
  114. "w": 1
  115. },
  116. "_lscale": {
  117. "__type__": "cc.Vec3",
  118. "x": 1,
  119. "y": 1,
  120. "z": 1
  121. },
  122. "_mobility": 0,
  123. "_layer": 33554432,
  124. "_euler": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0
  129. },
  130. "_id": ""
  131. },
  132. {
  133. "__type__": "cc.Node",
  134. "_name": "bg7",
  135. "_objFlags": 0,
  136. "__editorExtras__": {},
  137. "_parent": {
  138. "__id__": 2
  139. },
  140. "_children": [],
  141. "_active": true,
  142. "_components": [
  143. {
  144. "__id__": 4
  145. },
  146. {
  147. "__id__": 6
  148. }
  149. ],
  150. "_prefab": {
  151. "__id__": 8
  152. },
  153. "_lpos": {
  154. "__type__": "cc.Vec3",
  155. "x": 0,
  156. "y": 25.01400000000001,
  157. "z": 0
  158. },
  159. "_lrot": {
  160. "__type__": "cc.Quat",
  161. "x": 0,
  162. "y": 0,
  163. "z": 0,
  164. "w": 1
  165. },
  166. "_lscale": {
  167. "__type__": "cc.Vec3",
  168. "x": 1,
  169. "y": 1,
  170. "z": 1
  171. },
  172. "_mobility": 0,
  173. "_layer": 33554432,
  174. "_euler": {
  175. "__type__": "cc.Vec3",
  176. "x": 0,
  177. "y": 0,
  178. "z": 0
  179. },
  180. "_id": ""
  181. },
  182. {
  183. "__type__": "cc.UITransform",
  184. "_name": "",
  185. "_objFlags": 0,
  186. "__editorExtras__": {},
  187. "node": {
  188. "__id__": 3
  189. },
  190. "_enabled": true,
  191. "__prefab": {
  192. "__id__": 5
  193. },
  194. "_contentSize": {
  195. "__type__": "cc.Size",
  196. "width": 720,
  197. "height": 438
  198. },
  199. "_anchorPoint": {
  200. "__type__": "cc.Vec2",
  201. "x": 0.5,
  202. "y": 0.5
  203. },
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.CompPrefabInfo",
  208. "fileId": "41um8291JLx5CBqbDNkxsU"
  209. },
  210. {
  211. "__type__": "cc.Sprite",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "__editorExtras__": {},
  215. "node": {
  216. "__id__": 3
  217. },
  218. "_enabled": true,
  219. "__prefab": {
  220. "__id__": 7
  221. },
  222. "_customMaterial": null,
  223. "_srcBlendFactor": 2,
  224. "_dstBlendFactor": 4,
  225. "_color": {
  226. "__type__": "cc.Color",
  227. "r": 255,
  228. "g": 255,
  229. "b": 255,
  230. "a": 255
  231. },
  232. "_spriteFrame": {
  233. "__uuid__": "e484d473-8469-43c9-b1ff-6fd4d56927b8@f9941",
  234. "__expectedType__": "cc.SpriteFrame"
  235. },
  236. "_type": 0,
  237. "_fillType": 0,
  238. "_sizeMode": 1,
  239. "_fillCenter": {
  240. "__type__": "cc.Vec2",
  241. "x": 0,
  242. "y": 0
  243. },
  244. "_fillStart": 0,
  245. "_fillRange": 0,
  246. "_isTrimmedMode": true,
  247. "_useGrayscale": false,
  248. "_atlas": null,
  249. "_id": ""
  250. },
  251. {
  252. "__type__": "cc.CompPrefabInfo",
  253. "fileId": "72ORuRw8RDNoGvPdZRYMxZ"
  254. },
  255. {
  256. "__type__": "cc.PrefabInfo",
  257. "root": {
  258. "__id__": 1
  259. },
  260. "asset": {
  261. "__id__": 0
  262. },
  263. "fileId": "1eWX8oA5lKo5QAS95uXX1O",
  264. "instance": null,
  265. "targetOverrides": null,
  266. "nestedPrefabInstanceRoots": null
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "title_xygmb",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "_parent": {
  274. "__id__": 2
  275. },
  276. "_children": [],
  277. "_active": true,
  278. "_components": [
  279. {
  280. "__id__": 10
  281. },
  282. {
  283. "__id__": 12
  284. }
  285. ],
  286. "_prefab": {
  287. "__id__": 14
  288. },
  289. "_lpos": {
  290. "__type__": "cc.Vec3",
  291. "x": 0,
  292. "y": 283.7550000000001,
  293. "z": 0
  294. },
  295. "_lrot": {
  296. "__type__": "cc.Quat",
  297. "x": 0,
  298. "y": 0,
  299. "z": 0,
  300. "w": 1
  301. },
  302. "_lscale": {
  303. "__type__": "cc.Vec3",
  304. "x": 1,
  305. "y": 1,
  306. "z": 1
  307. },
  308. "_mobility": 0,
  309. "_layer": 33554432,
  310. "_euler": {
  311. "__type__": "cc.Vec3",
  312. "x": 0,
  313. "y": 0,
  314. "z": 0
  315. },
  316. "_id": ""
  317. },
  318. {
  319. "__type__": "cc.UITransform",
  320. "_name": "",
  321. "_objFlags": 0,
  322. "__editorExtras__": {},
  323. "node": {
  324. "__id__": 9
  325. },
  326. "_enabled": true,
  327. "__prefab": {
  328. "__id__": 11
  329. },
  330. "_contentSize": {
  331. "__type__": "cc.Size",
  332. "width": 454,
  333. "height": 90
  334. },
  335. "_anchorPoint": {
  336. "__type__": "cc.Vec2",
  337. "x": 0.5,
  338. "y": 0.5
  339. },
  340. "_id": ""
  341. },
  342. {
  343. "__type__": "cc.CompPrefabInfo",
  344. "fileId": "ecQGPXQsFPQJe5tmzKYnjQ"
  345. },
  346. {
  347. "__type__": "cc.Sprite",
  348. "_name": "",
  349. "_objFlags": 0,
  350. "__editorExtras__": {},
  351. "node": {
  352. "__id__": 9
  353. },
  354. "_enabled": true,
  355. "__prefab": {
  356. "__id__": 13
  357. },
  358. "_customMaterial": null,
  359. "_srcBlendFactor": 2,
  360. "_dstBlendFactor": 4,
  361. "_color": {
  362. "__type__": "cc.Color",
  363. "r": 255,
  364. "g": 255,
  365. "b": 255,
  366. "a": 255
  367. },
  368. "_spriteFrame": {
  369. "__uuid__": "5daf9299-08aa-4f97-9a21-8df306dc2785@f9941",
  370. "__expectedType__": "cc.SpriteFrame"
  371. },
  372. "_type": 0,
  373. "_fillType": 0,
  374. "_sizeMode": 1,
  375. "_fillCenter": {
  376. "__type__": "cc.Vec2",
  377. "x": 0,
  378. "y": 0
  379. },
  380. "_fillStart": 0,
  381. "_fillRange": 0,
  382. "_isTrimmedMode": true,
  383. "_useGrayscale": false,
  384. "_atlas": null,
  385. "_id": ""
  386. },
  387. {
  388. "__type__": "cc.CompPrefabInfo",
  389. "fileId": "22ZrxdxqJD2Iv1OTEhQyRG"
  390. },
  391. {
  392. "__type__": "cc.PrefabInfo",
  393. "root": {
  394. "__id__": 1
  395. },
  396. "asset": {
  397. "__id__": 0
  398. },
  399. "fileId": "ecCBabfZ1O+q/mZxe9q1oA",
  400. "instance": null,
  401. "targetOverrides": null,
  402. "nestedPrefabInstanceRoots": null
  403. },
  404. {
  405. "__type__": "cc.Node",
  406. "_name": "text_yj",
  407. "_objFlags": 0,
  408. "__editorExtras__": {},
  409. "_parent": {
  410. "__id__": 2
  411. },
  412. "_children": [],
  413. "_active": true,
  414. "_components": [
  415. {
  416. "__id__": 16
  417. },
  418. {
  419. "__id__": 18
  420. }
  421. ],
  422. "_prefab": {
  423. "__id__": 20
  424. },
  425. "_lpos": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_lrot": {
  432. "__type__": "cc.Quat",
  433. "x": 0,
  434. "y": 0,
  435. "z": 0,
  436. "w": 1
  437. },
  438. "_lscale": {
  439. "__type__": "cc.Vec3",
  440. "x": 1,
  441. "y": 1,
  442. "z": 1
  443. },
  444. "_mobility": 0,
  445. "_layer": 33554432,
  446. "_euler": {
  447. "__type__": "cc.Vec3",
  448. "x": 0,
  449. "y": 0,
  450. "z": 0
  451. },
  452. "_id": ""
  453. },
  454. {
  455. "__type__": "cc.UITransform",
  456. "_name": "",
  457. "_objFlags": 0,
  458. "__editorExtras__": {},
  459. "node": {
  460. "__id__": 15
  461. },
  462. "_enabled": true,
  463. "__prefab": {
  464. "__id__": 17
  465. },
  466. "_contentSize": {
  467. "__type__": "cc.Size",
  468. "width": 407,
  469. "height": 70
  470. },
  471. "_anchorPoint": {
  472. "__type__": "cc.Vec2",
  473. "x": 0.5,
  474. "y": 0.5
  475. },
  476. "_id": ""
  477. },
  478. {
  479. "__type__": "cc.CompPrefabInfo",
  480. "fileId": "abYKb6ahVOjJglNcXb/oTE"
  481. },
  482. {
  483. "__type__": "cc.Sprite",
  484. "_name": "",
  485. "_objFlags": 0,
  486. "__editorExtras__": {},
  487. "node": {
  488. "__id__": 15
  489. },
  490. "_enabled": true,
  491. "__prefab": {
  492. "__id__": 19
  493. },
  494. "_customMaterial": null,
  495. "_srcBlendFactor": 2,
  496. "_dstBlendFactor": 4,
  497. "_color": {
  498. "__type__": "cc.Color",
  499. "r": 255,
  500. "g": 255,
  501. "b": 255,
  502. "a": 255
  503. },
  504. "_spriteFrame": {
  505. "__uuid__": "7be4b7a0-6b46-4f59-9b7a-0953b5b55559@f9941",
  506. "__expectedType__": "cc.SpriteFrame"
  507. },
  508. "_type": 0,
  509. "_fillType": 0,
  510. "_sizeMode": 1,
  511. "_fillCenter": {
  512. "__type__": "cc.Vec2",
  513. "x": 0,
  514. "y": 0
  515. },
  516. "_fillStart": 0,
  517. "_fillRange": 0,
  518. "_isTrimmedMode": true,
  519. "_useGrayscale": false,
  520. "_atlas": null,
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.CompPrefabInfo",
  525. "fileId": "44LmjzdMVJj48df54y6oMu"
  526. },
  527. {
  528. "__type__": "cc.PrefabInfo",
  529. "root": {
  530. "__id__": 1
  531. },
  532. "asset": {
  533. "__id__": 0
  534. },
  535. "fileId": "e5xUJiC1RDHZbnpB1Q8wrY",
  536. "instance": null,
  537. "targetOverrides": null,
  538. "nestedPrefabInstanceRoots": null
  539. },
  540. {
  541. "__type__": "cc.Node",
  542. "_name": "Node-001",
  543. "_objFlags": 0,
  544. "__editorExtras__": {},
  545. "_parent": {
  546. "__id__": 2
  547. },
  548. "_children": [
  549. {
  550. "__id__": 22
  551. },
  552. {
  553. "__id__": 28
  554. },
  555. {
  556. "__id__": 40
  557. }
  558. ],
  559. "_active": true,
  560. "_components": [
  561. {
  562. "__id__": 46
  563. },
  564. {
  565. "__id__": 48
  566. }
  567. ],
  568. "_prefab": {
  569. "__id__": 50
  570. },
  571. "_lpos": {
  572. "__type__": "cc.Vec3",
  573. "x": 0,
  574. "y": 110.25700000000006,
  575. "z": 0
  576. },
  577. "_lrot": {
  578. "__type__": "cc.Quat",
  579. "x": 0,
  580. "y": 0,
  581. "z": 0,
  582. "w": 1
  583. },
  584. "_lscale": {
  585. "__type__": "cc.Vec3",
  586. "x": 1,
  587. "y": 1,
  588. "z": 1
  589. },
  590. "_mobility": 0,
  591. "_layer": 33554432,
  592. "_euler": {
  593. "__type__": "cc.Vec3",
  594. "x": 0,
  595. "y": 0,
  596. "z": 0
  597. },
  598. "_id": ""
  599. },
  600. {
  601. "__type__": "cc.Node",
  602. "_name": "Label",
  603. "_objFlags": 0,
  604. "__editorExtras__": {},
  605. "_parent": {
  606. "__id__": 21
  607. },
  608. "_children": [],
  609. "_active": true,
  610. "_components": [
  611. {
  612. "__id__": 23
  613. },
  614. {
  615. "__id__": 25
  616. }
  617. ],
  618. "_prefab": {
  619. "__id__": 27
  620. },
  621. "_lpos": {
  622. "__type__": "cc.Vec3",
  623. "x": -197.5,
  624. "y": 0,
  625. "z": 0
  626. },
  627. "_lrot": {
  628. "__type__": "cc.Quat",
  629. "x": 0,
  630. "y": 0,
  631. "z": 0,
  632. "w": 1
  633. },
  634. "_lscale": {
  635. "__type__": "cc.Vec3",
  636. "x": 1,
  637. "y": 1,
  638. "z": 1
  639. },
  640. "_mobility": 0,
  641. "_layer": 33554432,
  642. "_euler": {
  643. "__type__": "cc.Vec3",
  644. "x": 0,
  645. "y": 0,
  646. "z": 0
  647. },
  648. "_id": ""
  649. },
  650. {
  651. "__type__": "cc.UITransform",
  652. "_name": "",
  653. "_objFlags": 0,
  654. "__editorExtras__": {},
  655. "node": {
  656. "__id__": 22
  657. },
  658. "_enabled": true,
  659. "__prefab": {
  660. "__id__": 24
  661. },
  662. "_contentSize": {
  663. "__type__": "cc.Size",
  664. "width": 152,
  665. "height": 71
  666. },
  667. "_anchorPoint": {
  668. "__type__": "cc.Vec2",
  669. "x": 0.5,
  670. "y": 0.5
  671. },
  672. "_id": ""
  673. },
  674. {
  675. "__type__": "cc.CompPrefabInfo",
  676. "fileId": "6aOSMG6l1Bwqd4JDyTefy+"
  677. },
  678. {
  679. "__type__": "cc.Label",
  680. "_name": "",
  681. "_objFlags": 0,
  682. "__editorExtras__": {},
  683. "node": {
  684. "__id__": 22
  685. },
  686. "_enabled": true,
  687. "__prefab": {
  688. "__id__": 26
  689. },
  690. "_customMaterial": null,
  691. "_srcBlendFactor": 2,
  692. "_dstBlendFactor": 4,
  693. "_color": {
  694. "__type__": "cc.Color",
  695. "r": 255,
  696. "g": 255,
  697. "b": 255,
  698. "a": 255
  699. },
  700. "_string": "再收集",
  701. "_horizontalAlign": 1,
  702. "_verticalAlign": 1,
  703. "_actualFontSize": 48,
  704. "_fontSize": 48,
  705. "_fontFamily": "Arial",
  706. "_lineHeight": 50,
  707. "_overflow": 0,
  708. "_enableWrapText": true,
  709. "_font": null,
  710. "_isSystemFontUsed": true,
  711. "_spacingX": 0,
  712. "_isItalic": false,
  713. "_isBold": true,
  714. "_isUnderline": false,
  715. "_underlineHeight": 2,
  716. "_cacheMode": 0,
  717. "_enableOutline": true,
  718. "_outlineColor": {
  719. "__type__": "cc.Color",
  720. "r": 160,
  721. "g": 105,
  722. "b": 66,
  723. "a": 255
  724. },
  725. "_outlineWidth": 4,
  726. "_enableShadow": false,
  727. "_shadowColor": {
  728. "__type__": "cc.Color",
  729. "r": 0,
  730. "g": 0,
  731. "b": 0,
  732. "a": 255
  733. },
  734. "_shadowOffset": {
  735. "__type__": "cc.Vec2",
  736. "x": 2,
  737. "y": 2
  738. },
  739. "_shadowBlur": 2,
  740. "_id": ""
  741. },
  742. {
  743. "__type__": "cc.CompPrefabInfo",
  744. "fileId": "bbelq8oApDM756W3Kb/cKz"
  745. },
  746. {
  747. "__type__": "cc.PrefabInfo",
  748. "root": {
  749. "__id__": 1
  750. },
  751. "asset": {
  752. "__id__": 0
  753. },
  754. "fileId": "d1NBCjXDlA5LbXNd0gH5vU",
  755. "instance": null,
  756. "targetOverrides": null,
  757. "nestedPrefabInstanceRoots": null
  758. },
  759. {
  760. "__type__": "cc.Node",
  761. "_name": "brics",
  762. "_objFlags": 0,
  763. "__editorExtras__": {},
  764. "_parent": {
  765. "__id__": 21
  766. },
  767. "_children": [
  768. {
  769. "__id__": 29
  770. }
  771. ],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 35
  776. },
  777. {
  778. "__id__": 37
  779. }
  780. ],
  781. "_prefab": {
  782. "__id__": 39
  783. },
  784. "_lpos": {
  785. "__type__": "cc.Vec3",
  786. "x": -48,
  787. "y": 10,
  788. "z": 0
  789. },
  790. "_lrot": {
  791. "__type__": "cc.Quat",
  792. "x": 0,
  793. "y": 0,
  794. "z": 0,
  795. "w": 1
  796. },
  797. "_lscale": {
  798. "__type__": "cc.Vec3",
  799. "x": 1,
  800. "y": 1,
  801. "z": 1
  802. },
  803. "_mobility": 0,
  804. "_layer": 33554432,
  805. "_euler": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0
  810. },
  811. "_id": ""
  812. },
  813. {
  814. "__type__": "cc.Node",
  815. "_name": "lab_num",
  816. "_objFlags": 0,
  817. "__editorExtras__": {},
  818. "_parent": {
  819. "__id__": 28
  820. },
  821. "_children": [],
  822. "_active": true,
  823. "_components": [
  824. {
  825. "__id__": 30
  826. },
  827. {
  828. "__id__": 32
  829. }
  830. ],
  831. "_prefab": {
  832. "__id__": 34
  833. },
  834. "_lpos": {
  835. "__type__": "cc.Vec3",
  836. "x": 21.411999999999978,
  837. "y": -23.712999999999965,
  838. "z": 0
  839. },
  840. "_lrot": {
  841. "__type__": "cc.Quat",
  842. "x": 0,
  843. "y": 0,
  844. "z": 0,
  845. "w": 1
  846. },
  847. "_lscale": {
  848. "__type__": "cc.Vec3",
  849. "x": 1,
  850. "y": 1,
  851. "z": 1
  852. },
  853. "_mobility": 0,
  854. "_layer": 33554432,
  855. "_euler": {
  856. "__type__": "cc.Vec3",
  857. "x": 0,
  858. "y": 0,
  859. "z": 0
  860. },
  861. "_id": ""
  862. },
  863. {
  864. "__type__": "cc.UITransform",
  865. "_name": "",
  866. "_objFlags": 0,
  867. "__editorExtras__": {},
  868. "node": {
  869. "__id__": 29
  870. },
  871. "_enabled": true,
  872. "__prefab": {
  873. "__id__": 31
  874. },
  875. "_contentSize": {
  876. "__type__": "cc.Size",
  877. "width": 61.83984375,
  878. "height": 79.6
  879. },
  880. "_anchorPoint": {
  881. "__type__": "cc.Vec2",
  882. "x": 0.5,
  883. "y": 0.5
  884. },
  885. "_id": ""
  886. },
  887. {
  888. "__type__": "cc.CompPrefabInfo",
  889. "fileId": "bds7CjCpRD0oEE54bFXDEd"
  890. },
  891. {
  892. "__type__": "cc.Label",
  893. "_name": "",
  894. "_objFlags": 0,
  895. "__editorExtras__": {},
  896. "node": {
  897. "__id__": 29
  898. },
  899. "_enabled": true,
  900. "__prefab": {
  901. "__id__": 33
  902. },
  903. "_customMaterial": null,
  904. "_srcBlendFactor": 2,
  905. "_dstBlendFactor": 4,
  906. "_color": {
  907. "__type__": "cc.Color",
  908. "r": 255,
  909. "g": 255,
  910. "b": 255,
  911. "a": 255
  912. },
  913. "_string": "x2",
  914. "_horizontalAlign": 1,
  915. "_verticalAlign": 1,
  916. "_actualFontSize": 52,
  917. "_fontSize": 52,
  918. "_fontFamily": "Arial",
  919. "_lineHeight": 60,
  920. "_overflow": 0,
  921. "_enableWrapText": true,
  922. "_font": null,
  923. "_isSystemFontUsed": true,
  924. "_spacingX": 0,
  925. "_isItalic": false,
  926. "_isBold": true,
  927. "_isUnderline": false,
  928. "_underlineHeight": 2,
  929. "_cacheMode": 0,
  930. "_enableOutline": true,
  931. "_outlineColor": {
  932. "__type__": "cc.Color",
  933. "r": 88,
  934. "g": 42,
  935. "b": 9,
  936. "a": 255
  937. },
  938. "_outlineWidth": 2,
  939. "_enableShadow": false,
  940. "_shadowColor": {
  941. "__type__": "cc.Color",
  942. "r": 0,
  943. "g": 0,
  944. "b": 0,
  945. "a": 255
  946. },
  947. "_shadowOffset": {
  948. "__type__": "cc.Vec2",
  949. "x": 2,
  950. "y": 2
  951. },
  952. "_shadowBlur": 2,
  953. "_id": ""
  954. },
  955. {
  956. "__type__": "cc.CompPrefabInfo",
  957. "fileId": "e83QA3INJGv4No5DKhRNO3"
  958. },
  959. {
  960. "__type__": "cc.PrefabInfo",
  961. "root": {
  962. "__id__": 1
  963. },
  964. "asset": {
  965. "__id__": 0
  966. },
  967. "fileId": "40zNDMi+tB7KqI42kuY4JH",
  968. "instance": null,
  969. "targetOverrides": null,
  970. "nestedPrefabInstanceRoots": null
  971. },
  972. {
  973. "__type__": "cc.UITransform",
  974. "_name": "",
  975. "_objFlags": 0,
  976. "__editorExtras__": {},
  977. "node": {
  978. "__id__": 28
  979. },
  980. "_enabled": true,
  981. "__prefab": {
  982. "__id__": 36
  983. },
  984. "_contentSize": {
  985. "__type__": "cc.Size",
  986. "width": 127,
  987. "height": 123
  988. },
  989. "_anchorPoint": {
  990. "__type__": "cc.Vec2",
  991. "x": 0.5,
  992. "y": 0.5
  993. },
  994. "_id": ""
  995. },
  996. {
  997. "__type__": "cc.CompPrefabInfo",
  998. "fileId": "16I1Of5i9DH5k4o/AyfQdB"
  999. },
  1000. {
  1001. "__type__": "cc.Sprite",
  1002. "_name": "",
  1003. "_objFlags": 0,
  1004. "__editorExtras__": {},
  1005. "node": {
  1006. "__id__": 28
  1007. },
  1008. "_enabled": true,
  1009. "__prefab": {
  1010. "__id__": 38
  1011. },
  1012. "_customMaterial": null,
  1013. "_srcBlendFactor": 2,
  1014. "_dstBlendFactor": 4,
  1015. "_color": {
  1016. "__type__": "cc.Color",
  1017. "r": 255,
  1018. "g": 255,
  1019. "b": 255,
  1020. "a": 255
  1021. },
  1022. "_spriteFrame": {
  1023. "__uuid__": "11860ef0-b5c1-479d-8902-276ad2307a1d@f9941",
  1024. "__expectedType__": "cc.SpriteFrame"
  1025. },
  1026. "_type": 0,
  1027. "_fillType": 0,
  1028. "_sizeMode": 1,
  1029. "_fillCenter": {
  1030. "__type__": "cc.Vec2",
  1031. "x": 0,
  1032. "y": 0
  1033. },
  1034. "_fillStart": 0,
  1035. "_fillRange": 0,
  1036. "_isTrimmedMode": true,
  1037. "_useGrayscale": false,
  1038. "_atlas": null,
  1039. "_id": ""
  1040. },
  1041. {
  1042. "__type__": "cc.CompPrefabInfo",
  1043. "fileId": "9471bEsq1MB4VxEZXrkhaI"
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__id__": 0
  1052. },
  1053. "fileId": "2bCg3EtC9EY4DLk44bk8KG",
  1054. "instance": null,
  1055. "targetOverrides": null,
  1056. "nestedPrefabInstanceRoots": null
  1057. },
  1058. {
  1059. "__type__": "cc.Node",
  1060. "_name": "Label-001",
  1061. "_objFlags": 0,
  1062. "__editorExtras__": {},
  1063. "_parent": {
  1064. "__id__": 21
  1065. },
  1066. "_children": [],
  1067. "_active": true,
  1068. "_components": [
  1069. {
  1070. "__id__": 41
  1071. },
  1072. {
  1073. "__id__": 43
  1074. }
  1075. ],
  1076. "_prefab": {
  1077. "__id__": 45
  1078. },
  1079. "_lpos": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 149.5,
  1082. "y": 0,
  1083. "z": 0
  1084. },
  1085. "_lrot": {
  1086. "__type__": "cc.Quat",
  1087. "x": 0,
  1088. "y": 0,
  1089. "z": 0,
  1090. "w": 1
  1091. },
  1092. "_lscale": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 1,
  1095. "y": 1,
  1096. "z": 1
  1097. },
  1098. "_mobility": 0,
  1099. "_layer": 33554432,
  1100. "_euler": {
  1101. "__type__": "cc.Vec3",
  1102. "x": 0,
  1103. "y": 0,
  1104. "z": 0
  1105. },
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.UITransform",
  1110. "_name": "",
  1111. "_objFlags": 0,
  1112. "__editorExtras__": {},
  1113. "node": {
  1114. "__id__": 40
  1115. },
  1116. "_enabled": true,
  1117. "__prefab": {
  1118. "__id__": 42
  1119. },
  1120. "_contentSize": {
  1121. "__type__": "cc.Size",
  1122. "width": 248,
  1123. "height": 71
  1124. },
  1125. "_anchorPoint": {
  1126. "__type__": "cc.Vec2",
  1127. "x": 0.5,
  1128. "y": 0.5
  1129. },
  1130. "_id": ""
  1131. },
  1132. {
  1133. "__type__": "cc.CompPrefabInfo",
  1134. "fileId": "9b6sy00KtMX7yYodQq5NKv"
  1135. },
  1136. {
  1137. "__type__": "cc.Label",
  1138. "_name": "",
  1139. "_objFlags": 0,
  1140. "__editorExtras__": {},
  1141. "node": {
  1142. "__id__": 40
  1143. },
  1144. "_enabled": true,
  1145. "__prefab": {
  1146. "__id__": 44
  1147. },
  1148. "_customMaterial": null,
  1149. "_srcBlendFactor": 2,
  1150. "_dstBlendFactor": 4,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 255,
  1154. "g": 255,
  1155. "b": 255,
  1156. "a": 255
  1157. },
  1158. "_string": "可立即提现",
  1159. "_horizontalAlign": 1,
  1160. "_verticalAlign": 1,
  1161. "_actualFontSize": 48,
  1162. "_fontSize": 48,
  1163. "_fontFamily": "Arial",
  1164. "_lineHeight": 50,
  1165. "_overflow": 0,
  1166. "_enableWrapText": true,
  1167. "_font": null,
  1168. "_isSystemFontUsed": true,
  1169. "_spacingX": 0,
  1170. "_isItalic": false,
  1171. "_isBold": true,
  1172. "_isUnderline": false,
  1173. "_underlineHeight": 2,
  1174. "_cacheMode": 0,
  1175. "_enableOutline": true,
  1176. "_outlineColor": {
  1177. "__type__": "cc.Color",
  1178. "r": 160,
  1179. "g": 105,
  1180. "b": 66,
  1181. "a": 255
  1182. },
  1183. "_outlineWidth": 4,
  1184. "_enableShadow": false,
  1185. "_shadowColor": {
  1186. "__type__": "cc.Color",
  1187. "r": 0,
  1188. "g": 0,
  1189. "b": 0,
  1190. "a": 255
  1191. },
  1192. "_shadowOffset": {
  1193. "__type__": "cc.Vec2",
  1194. "x": 2,
  1195. "y": 2
  1196. },
  1197. "_shadowBlur": 2,
  1198. "_id": ""
  1199. },
  1200. {
  1201. "__type__": "cc.CompPrefabInfo",
  1202. "fileId": "34IBXQJYhFyZ9k6oX/zHdF"
  1203. },
  1204. {
  1205. "__type__": "cc.PrefabInfo",
  1206. "root": {
  1207. "__id__": 1
  1208. },
  1209. "asset": {
  1210. "__id__": 0
  1211. },
  1212. "fileId": "3evdcmw/5LmYLzgp5tdGpL",
  1213. "instance": null,
  1214. "targetOverrides": null,
  1215. "nestedPrefabInstanceRoots": null
  1216. },
  1217. {
  1218. "__type__": "cc.UITransform",
  1219. "_name": "",
  1220. "_objFlags": 0,
  1221. "__editorExtras__": {},
  1222. "node": {
  1223. "__id__": 21
  1224. },
  1225. "_enabled": true,
  1226. "__prefab": {
  1227. "__id__": 47
  1228. },
  1229. "_contentSize": {
  1230. "__type__": "cc.Size",
  1231. "width": 547,
  1232. "height": 100
  1233. },
  1234. "_anchorPoint": {
  1235. "__type__": "cc.Vec2",
  1236. "x": 0.5,
  1237. "y": 0.5
  1238. },
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.CompPrefabInfo",
  1243. "fileId": "a9bt59vQ9F1K/zripnek/w"
  1244. },
  1245. {
  1246. "__type__": "cc.Layout",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "__editorExtras__": {},
  1250. "node": {
  1251. "__id__": 21
  1252. },
  1253. "_enabled": true,
  1254. "__prefab": {
  1255. "__id__": 49
  1256. },
  1257. "_resizeMode": 1,
  1258. "_layoutType": 1,
  1259. "_cellSize": {
  1260. "__type__": "cc.Size",
  1261. "width": 40,
  1262. "height": 40
  1263. },
  1264. "_startAxis": 0,
  1265. "_paddingLeft": 0,
  1266. "_paddingRight": 0,
  1267. "_paddingTop": 0,
  1268. "_paddingBottom": 0,
  1269. "_spacingX": 10,
  1270. "_spacingY": 0,
  1271. "_verticalDirection": 1,
  1272. "_horizontalDirection": 0,
  1273. "_constraint": 0,
  1274. "_constraintNum": 2,
  1275. "_affectedByScale": false,
  1276. "_isAlign": false,
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.CompPrefabInfo",
  1281. "fileId": "2fZX3pMc9KMaGGW5zA9HhY"
  1282. },
  1283. {
  1284. "__type__": "cc.PrefabInfo",
  1285. "root": {
  1286. "__id__": 1
  1287. },
  1288. "asset": {
  1289. "__id__": 0
  1290. },
  1291. "fileId": "2bI9xxMnlEsL0kRFZjq+Xi",
  1292. "instance": null,
  1293. "targetOverrides": null,
  1294. "nestedPrefabInstanceRoots": null
  1295. },
  1296. {
  1297. "__type__": "cc.Node",
  1298. "_name": "pro_progress",
  1299. "_objFlags": 0,
  1300. "__editorExtras__": {},
  1301. "_parent": {
  1302. "__id__": 2
  1303. },
  1304. "_children": [
  1305. {
  1306. "__id__": 52
  1307. }
  1308. ],
  1309. "_active": true,
  1310. "_components": [
  1311. {
  1312. "__id__": 58
  1313. },
  1314. {
  1315. "__id__": 60
  1316. },
  1317. {
  1318. "__id__": 62
  1319. },
  1320. {
  1321. "__id__": 64
  1322. },
  1323. {
  1324. "__id__": 66
  1325. }
  1326. ],
  1327. "_prefab": {
  1328. "__id__": 68
  1329. },
  1330. "_lpos": {
  1331. "__type__": "cc.Vec3",
  1332. "x": -254.184,
  1333. "y": -279.366,
  1334. "z": 0
  1335. },
  1336. "_lrot": {
  1337. "__type__": "cc.Quat",
  1338. "x": 0,
  1339. "y": 0,
  1340. "z": 0,
  1341. "w": 1
  1342. },
  1343. "_lscale": {
  1344. "__type__": "cc.Vec3",
  1345. "x": 1,
  1346. "y": 1,
  1347. "z": 1
  1348. },
  1349. "_mobility": 0,
  1350. "_layer": 33554432,
  1351. "_euler": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 0,
  1354. "y": 0,
  1355. "z": 0
  1356. },
  1357. "_id": ""
  1358. },
  1359. {
  1360. "__type__": "cc.Node",
  1361. "_name": "Bar",
  1362. "_objFlags": 0,
  1363. "__editorExtras__": {},
  1364. "_parent": {
  1365. "__id__": 51
  1366. },
  1367. "_children": [],
  1368. "_active": true,
  1369. "_components": [
  1370. {
  1371. "__id__": 53
  1372. },
  1373. {
  1374. "__id__": 55
  1375. }
  1376. ],
  1377. "_prefab": {
  1378. "__id__": 57
  1379. },
  1380. "_lpos": {
  1381. "__type__": "cc.Vec3",
  1382. "x": 1,
  1383. "y": 0,
  1384. "z": 0
  1385. },
  1386. "_lrot": {
  1387. "__type__": "cc.Quat",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0,
  1391. "w": 1
  1392. },
  1393. "_lscale": {
  1394. "__type__": "cc.Vec3",
  1395. "x": 1,
  1396. "y": 1,
  1397. "z": 1
  1398. },
  1399. "_mobility": 0,
  1400. "_layer": 33554432,
  1401. "_euler": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 0,
  1404. "y": 0,
  1405. "z": 0
  1406. },
  1407. "_id": ""
  1408. },
  1409. {
  1410. "__type__": "cc.UITransform",
  1411. "_name": "",
  1412. "_objFlags": 0,
  1413. "__editorExtras__": {},
  1414. "node": {
  1415. "__id__": 52
  1416. },
  1417. "_enabled": true,
  1418. "__prefab": {
  1419. "__id__": 54
  1420. },
  1421. "_contentSize": {
  1422. "__type__": "cc.Size",
  1423. "width": 516,
  1424. "height": 23
  1425. },
  1426. "_anchorPoint": {
  1427. "__type__": "cc.Vec2",
  1428. "x": 0,
  1429. "y": 0.5
  1430. },
  1431. "_id": ""
  1432. },
  1433. {
  1434. "__type__": "cc.CompPrefabInfo",
  1435. "fileId": "18AZuUgudCmZ1V0A1h8i7/"
  1436. },
  1437. {
  1438. "__type__": "cc.Sprite",
  1439. "_name": "",
  1440. "_objFlags": 0,
  1441. "__editorExtras__": {},
  1442. "node": {
  1443. "__id__": 52
  1444. },
  1445. "_enabled": true,
  1446. "__prefab": {
  1447. "__id__": 56
  1448. },
  1449. "_customMaterial": null,
  1450. "_srcBlendFactor": 2,
  1451. "_dstBlendFactor": 4,
  1452. "_color": {
  1453. "__type__": "cc.Color",
  1454. "r": 255,
  1455. "g": 255,
  1456. "b": 255,
  1457. "a": 255
  1458. },
  1459. "_spriteFrame": {
  1460. "__uuid__": "e738cfa2-f6eb-4ede-8229-6b75cf462678@f9941",
  1461. "__expectedType__": "cc.SpriteFrame"
  1462. },
  1463. "_type": 3,
  1464. "_fillType": 0,
  1465. "_sizeMode": 0,
  1466. "_fillCenter": {
  1467. "__type__": "cc.Vec2",
  1468. "x": 0,
  1469. "y": 0
  1470. },
  1471. "_fillStart": 0,
  1472. "_fillRange": 0,
  1473. "_isTrimmedMode": true,
  1474. "_useGrayscale": false,
  1475. "_atlas": null,
  1476. "_id": ""
  1477. },
  1478. {
  1479. "__type__": "cc.CompPrefabInfo",
  1480. "fileId": "30ckfveG1JOoBqUSv1iqdr"
  1481. },
  1482. {
  1483. "__type__": "cc.PrefabInfo",
  1484. "root": {
  1485. "__id__": 1
  1486. },
  1487. "asset": {
  1488. "__id__": 0
  1489. },
  1490. "fileId": "a9u8imZ69K6K9tNmgm6Vlp",
  1491. "instance": null,
  1492. "targetOverrides": null,
  1493. "nestedPrefabInstanceRoots": null
  1494. },
  1495. {
  1496. "__type__": "cc.UITransform",
  1497. "_name": "",
  1498. "_objFlags": 0,
  1499. "__editorExtras__": {},
  1500. "node": {
  1501. "__id__": 51
  1502. },
  1503. "_enabled": true,
  1504. "__prefab": {
  1505. "__id__": 59
  1506. },
  1507. "_contentSize": {
  1508. "__type__": "cc.Size",
  1509. "width": 516,
  1510. "height": 22
  1511. },
  1512. "_anchorPoint": {
  1513. "__type__": "cc.Vec2",
  1514. "x": 0,
  1515. "y": 0.5
  1516. },
  1517. "_id": ""
  1518. },
  1519. {
  1520. "__type__": "cc.CompPrefabInfo",
  1521. "fileId": "ebcboj5qZKUIpekEPbCzxM"
  1522. },
  1523. {
  1524. "__type__": "cc.Sprite",
  1525. "_name": "",
  1526. "_objFlags": 0,
  1527. "__editorExtras__": {},
  1528. "node": {
  1529. "__id__": 51
  1530. },
  1531. "_enabled": true,
  1532. "__prefab": {
  1533. "__id__": 61
  1534. },
  1535. "_customMaterial": null,
  1536. "_srcBlendFactor": 2,
  1537. "_dstBlendFactor": 4,
  1538. "_color": {
  1539. "__type__": "cc.Color",
  1540. "r": 255,
  1541. "g": 255,
  1542. "b": 255,
  1543. "a": 255
  1544. },
  1545. "_spriteFrame": {
  1546. "__uuid__": "e902775f-4f3f-41d8-a5d1-09d24fae3430@f9941",
  1547. "__expectedType__": "cc.SpriteFrame"
  1548. },
  1549. "_type": 2,
  1550. "_fillType": 0,
  1551. "_sizeMode": 0,
  1552. "_fillCenter": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0,
  1555. "y": 0
  1556. },
  1557. "_fillStart": 0,
  1558. "_fillRange": 0,
  1559. "_isTrimmedMode": true,
  1560. "_useGrayscale": false,
  1561. "_atlas": null,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.CompPrefabInfo",
  1566. "fileId": "b7in6/9MtJwIYLDPkI7deH"
  1567. },
  1568. {
  1569. "__type__": "cc.ProgressBar",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "__editorExtras__": {},
  1573. "node": {
  1574. "__id__": 51
  1575. },
  1576. "_enabled": true,
  1577. "__prefab": {
  1578. "__id__": 63
  1579. },
  1580. "_barSprite": {
  1581. "__id__": 55
  1582. },
  1583. "_mode": 2,
  1584. "_totalLength": 1,
  1585. "_progress": 0,
  1586. "_reverse": false,
  1587. "_id": ""
  1588. },
  1589. {
  1590. "__type__": "cc.CompPrefabInfo",
  1591. "fileId": "8favWUouNH/rMghMFmajZz"
  1592. },
  1593. {
  1594. "__type__": "2a50eqI7JZNV5Sh0y/Qd9C6",
  1595. "_name": "",
  1596. "_objFlags": 0,
  1597. "__editorExtras__": {},
  1598. "node": {
  1599. "__id__": 51
  1600. },
  1601. "_enabled": true,
  1602. "__prefab": {
  1603. "__id__": 65
  1604. },
  1605. "controller": false,
  1606. "watchPath": "",
  1607. "componentName": "cc.ProgressBar",
  1608. "componentProperty": "progress",
  1609. "refreshRate": 0.1,
  1610. "watchPathArr": [
  1611. "*.cru_num",
  1612. "*.total_num"
  1613. ],
  1614. "stringFormat": "",
  1615. "_id": ""
  1616. },
  1617. {
  1618. "__type__": "cc.CompPrefabInfo",
  1619. "fileId": "6epWbGEm1KMLVf3VXsgoIl"
  1620. },
  1621. {
  1622. "__type__": "47052uw/Y5O1LXaLObj4ARx",
  1623. "_name": "",
  1624. "_objFlags": 0,
  1625. "__editorExtras__": {},
  1626. "node": {
  1627. "__id__": 51
  1628. },
  1629. "_enabled": true,
  1630. "__prefab": {
  1631. "__id__": 67
  1632. },
  1633. "watchPath": "*.cru_num",
  1634. "foreachChildMode": false,
  1635. "condition": 2,
  1636. "foreachChildType": 0,
  1637. "valueA": 0,
  1638. "valueB": 0,
  1639. "valueAction": 0,
  1640. "valueActionOpacity": 0,
  1641. "valueActionColor": {
  1642. "__type__": "cc.Color",
  1643. "r": 155,
  1644. "g": 155,
  1645. "b": 155,
  1646. "a": 255
  1647. },
  1648. "valueComponentName": "",
  1649. "valueComponentProperty": "",
  1650. "valueComponentDefaultValue": "",
  1651. "valueComponentActionValue": "",
  1652. "watchNodes": [
  1653. {
  1654. "__id__": 52
  1655. }
  1656. ],
  1657. "_id": ""
  1658. },
  1659. {
  1660. "__type__": "cc.CompPrefabInfo",
  1661. "fileId": "c5DuNMEuxOmr//6FRHaHMz"
  1662. },
  1663. {
  1664. "__type__": "cc.PrefabInfo",
  1665. "root": {
  1666. "__id__": 1
  1667. },
  1668. "asset": {
  1669. "__id__": 0
  1670. },
  1671. "fileId": "0anMG1hFdCyZZG8/JIoC5W",
  1672. "instance": null,
  1673. "targetOverrides": null,
  1674. "nestedPrefabInstanceRoots": null
  1675. },
  1676. {
  1677. "__type__": "cc.Node",
  1678. "_name": "itemList",
  1679. "_objFlags": 0,
  1680. "__editorExtras__": {},
  1681. "_parent": {
  1682. "__id__": 2
  1683. },
  1684. "_children": [],
  1685. "_active": true,
  1686. "_components": [
  1687. {
  1688. "__id__": 70
  1689. }
  1690. ],
  1691. "_prefab": {
  1692. "__id__": 72
  1693. },
  1694. "_lpos": {
  1695. "__type__": "cc.Vec3",
  1696. "x": 3.843999999999994,
  1697. "y": -272.80899999999997,
  1698. "z": 0
  1699. },
  1700. "_lrot": {
  1701. "__type__": "cc.Quat",
  1702. "x": 0,
  1703. "y": 0,
  1704. "z": 0,
  1705. "w": 1
  1706. },
  1707. "_lscale": {
  1708. "__type__": "cc.Vec3",
  1709. "x": 1,
  1710. "y": 1,
  1711. "z": 1
  1712. },
  1713. "_mobility": 0,
  1714. "_layer": 33554432,
  1715. "_euler": {
  1716. "__type__": "cc.Vec3",
  1717. "x": 0,
  1718. "y": 0,
  1719. "z": 0
  1720. },
  1721. "_id": ""
  1722. },
  1723. {
  1724. "__type__": "cc.UITransform",
  1725. "_name": "",
  1726. "_objFlags": 0,
  1727. "__editorExtras__": {},
  1728. "node": {
  1729. "__id__": 69
  1730. },
  1731. "_enabled": true,
  1732. "__prefab": {
  1733. "__id__": 71
  1734. },
  1735. "_contentSize": {
  1736. "__type__": "cc.Size",
  1737. "width": 516,
  1738. "height": 100
  1739. },
  1740. "_anchorPoint": {
  1741. "__type__": "cc.Vec2",
  1742. "x": 0.5,
  1743. "y": 0.5
  1744. },
  1745. "_id": ""
  1746. },
  1747. {
  1748. "__type__": "cc.CompPrefabInfo",
  1749. "fileId": "74wIs+v5lBibe+Ifk9fZzx"
  1750. },
  1751. {
  1752. "__type__": "cc.PrefabInfo",
  1753. "root": {
  1754. "__id__": 1
  1755. },
  1756. "asset": {
  1757. "__id__": 0
  1758. },
  1759. "fileId": "a03jDPHE9DJbQ09VAFVYaO",
  1760. "instance": null,
  1761. "targetOverrides": null,
  1762. "nestedPrefabInstanceRoots": null
  1763. },
  1764. {
  1765. "__type__": "cc.UITransform",
  1766. "_name": "",
  1767. "_objFlags": 0,
  1768. "__editorExtras__": {},
  1769. "node": {
  1770. "__id__": 2
  1771. },
  1772. "_enabled": true,
  1773. "__prefab": {
  1774. "__id__": 74
  1775. },
  1776. "_contentSize": {
  1777. "__type__": "cc.Size",
  1778. "width": 720,
  1779. "height": 700
  1780. },
  1781. "_anchorPoint": {
  1782. "__type__": "cc.Vec2",
  1783. "x": 0.5,
  1784. "y": 0.5
  1785. },
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.CompPrefabInfo",
  1790. "fileId": "7796rz4ClPvbu7InxBGjf/"
  1791. },
  1792. {
  1793. "__type__": "cc.PrefabInfo",
  1794. "root": {
  1795. "__id__": 1
  1796. },
  1797. "asset": {
  1798. "__id__": 0
  1799. },
  1800. "fileId": "bcsyvSoTZGZbzdDIxrom7V",
  1801. "instance": null,
  1802. "targetOverrides": null,
  1803. "nestedPrefabInstanceRoots": null
  1804. },
  1805. {
  1806. "__type__": "cc.UITransform",
  1807. "_name": "",
  1808. "_objFlags": 0,
  1809. "__editorExtras__": {},
  1810. "node": {
  1811. "__id__": 1
  1812. },
  1813. "_enabled": true,
  1814. "__prefab": {
  1815. "__id__": 77
  1816. },
  1817. "_contentSize": {
  1818. "__type__": "cc.Size",
  1819. "width": 720,
  1820. "height": 1600.0000000000002
  1821. },
  1822. "_anchorPoint": {
  1823. "__type__": "cc.Vec2",
  1824. "x": 0.5,
  1825. "y": 0.5
  1826. },
  1827. "_id": ""
  1828. },
  1829. {
  1830. "__type__": "cc.CompPrefabInfo",
  1831. "fileId": "2cKEKeKK9M0bTzGoIkD8f6"
  1832. },
  1833. {
  1834. "__type__": "cc.Widget",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "__editorExtras__": {},
  1838. "node": {
  1839. "__id__": 1
  1840. },
  1841. "_enabled": true,
  1842. "__prefab": {
  1843. "__id__": 79
  1844. },
  1845. "_alignFlags": 45,
  1846. "_target": null,
  1847. "_left": 0,
  1848. "_right": 0,
  1849. "_top": 0,
  1850. "_bottom": 0,
  1851. "_horizontalCenter": 0,
  1852. "_verticalCenter": 0,
  1853. "_isAbsLeft": true,
  1854. "_isAbsRight": true,
  1855. "_isAbsTop": true,
  1856. "_isAbsBottom": true,
  1857. "_isAbsHorizontalCenter": true,
  1858. "_isAbsVerticalCenter": true,
  1859. "_originalWidth": 720,
  1860. "_originalHeight": 1600,
  1861. "_alignMode": 2,
  1862. "_lockFlags": 0,
  1863. "_id": ""
  1864. },
  1865. {
  1866. "__type__": "cc.CompPrefabInfo",
  1867. "fileId": "0c45eJDB5JmrhGCQPrd0+j"
  1868. },
  1869. {
  1870. "__type__": "cc.PrefabInfo",
  1871. "root": {
  1872. "__id__": 1
  1873. },
  1874. "asset": {
  1875. "__id__": 0
  1876. },
  1877. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1878. "instance": null,
  1879. "targetOverrides": null
  1880. }
  1881. ]