guide.prefab 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "guide",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 10
  25. },
  26. {
  27. "__id__": 13
  28. },
  29. {
  30. "__id__": 15
  31. }
  32. ],
  33. "_active": true,
  34. "_components": [
  35. {
  36. "__id__": 67
  37. },
  38. {
  39. "__id__": 68
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 69
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 750,
  56. "height": 1334
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_trs": {
  64. "__type__": "TypedArray",
  65. "ctor": "Float64Array",
  66. "array": [
  67. 0,
  68. 667,
  69. 0,
  70. 0,
  71. 0,
  72. 0,
  73. 1,
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "_groupIndex": 0,
  89. "groupIndex": 0,
  90. "_id": ""
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "显示区域",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [
  100. {
  101. "__id__": 3
  102. }
  103. ],
  104. "_active": true,
  105. "_components": [
  106. {
  107. "__id__": 8
  108. }
  109. ],
  110. "_prefab": {
  111. "__id__": 9
  112. },
  113. "_opacity": 255,
  114. "_color": {
  115. "__type__": "cc.Color",
  116. "r": 255,
  117. "g": 255,
  118. "b": 255,
  119. "a": 255
  120. },
  121. "_contentSize": {
  122. "__type__": "cc.Size",
  123. "width": 200,
  124. "height": 200
  125. },
  126. "_anchorPoint": {
  127. "__type__": "cc.Vec2",
  128. "x": 0.5,
  129. "y": 0.5
  130. },
  131. "_trs": {
  132. "__type__": "TypedArray",
  133. "ctor": "Float64Array",
  134. "array": [
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 0,
  140. 0,
  141. 1,
  142. 1,
  143. 1,
  144. 1
  145. ]
  146. },
  147. "_eulerAngles": {
  148. "__type__": "cc.Vec3",
  149. "x": 0,
  150. "y": 0,
  151. "z": 0
  152. },
  153. "_skewX": 0,
  154. "_skewY": 0,
  155. "_is3DNode": false,
  156. "_groupIndex": 0,
  157. "groupIndex": 0,
  158. "_id": ""
  159. },
  160. {
  161. "__type__": "cc.Node",
  162. "_name": "背景",
  163. "_objFlags": 0,
  164. "_parent": {
  165. "__id__": 2
  166. },
  167. "_children": [],
  168. "_active": true,
  169. "_components": [
  170. {
  171. "__id__": 4
  172. },
  173. {
  174. "__id__": 5
  175. },
  176. {
  177. "__id__": 6
  178. }
  179. ],
  180. "_prefab": {
  181. "__id__": 7
  182. },
  183. "_opacity": 180,
  184. "_color": {
  185. "__type__": "cc.Color",
  186. "r": 0,
  187. "g": 0,
  188. "b": 0,
  189. "a": 255
  190. },
  191. "_contentSize": {
  192. "__type__": "cc.Size",
  193. "width": 750,
  194. "height": 1334.0000000000005
  195. },
  196. "_anchorPoint": {
  197. "__type__": "cc.Vec2",
  198. "x": 0.5,
  199. "y": 0.5
  200. },
  201. "_trs": {
  202. "__type__": "TypedArray",
  203. "ctor": "Float64Array",
  204. "array": [
  205. 0,
  206. 0,
  207. 0,
  208. 0,
  209. 0,
  210. 0,
  211. 1,
  212. 1,
  213. 1,
  214. 1
  215. ]
  216. },
  217. "_eulerAngles": {
  218. "__type__": "cc.Vec3",
  219. "x": 0,
  220. "y": 0,
  221. "z": 0
  222. },
  223. "_skewX": 0,
  224. "_skewY": 0,
  225. "_is3DNode": false,
  226. "_groupIndex": 0,
  227. "groupIndex": 0,
  228. "_id": ""
  229. },
  230. {
  231. "__type__": "cc.Sprite",
  232. "_name": "",
  233. "_objFlags": 0,
  234. "node": {
  235. "__id__": 3
  236. },
  237. "_enabled": true,
  238. "_materials": [
  239. {
  240. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  241. }
  242. ],
  243. "_srcBlendFactor": 770,
  244. "_dstBlendFactor": 771,
  245. "_spriteFrame": {
  246. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  247. },
  248. "_type": 0,
  249. "_sizeMode": 0,
  250. "_fillType": 0,
  251. "_fillCenter": {
  252. "__type__": "cc.Vec2",
  253. "x": 0,
  254. "y": 0
  255. },
  256. "_fillStart": 0,
  257. "_fillRange": 0,
  258. "_isTrimmedMode": true,
  259. "_atlas": null,
  260. "_id": ""
  261. },
  262. {
  263. "__type__": "cc.Widget",
  264. "_name": "",
  265. "_objFlags": 0,
  266. "node": {
  267. "__id__": 3
  268. },
  269. "_enabled": true,
  270. "alignMode": 1,
  271. "_target": {
  272. "__id__": 1
  273. },
  274. "_alignFlags": 45,
  275. "_left": 0,
  276. "_right": 0,
  277. "_top": -2.2737367544323206e-13,
  278. "_bottom": -2.2737367544323206e-13,
  279. "_verticalCenter": 0,
  280. "_horizontalCenter": 0,
  281. "_isAbsLeft": true,
  282. "_isAbsRight": true,
  283. "_isAbsTop": true,
  284. "_isAbsBottom": true,
  285. "_isAbsHorizontalCenter": true,
  286. "_isAbsVerticalCenter": true,
  287. "_originalWidth": 750,
  288. "_originalHeight": 1334,
  289. "_id": ""
  290. },
  291. {
  292. "__type__": "cc.BlockInputEvents",
  293. "_name": "",
  294. "_objFlags": 0,
  295. "node": {
  296. "__id__": 3
  297. },
  298. "_enabled": true,
  299. "_id": ""
  300. },
  301. {
  302. "__type__": "cc.PrefabInfo",
  303. "root": {
  304. "__id__": 1
  305. },
  306. "asset": {
  307. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  308. },
  309. "fileId": "46PGyVrkVNE4PKNVed+BPO",
  310. "sync": false
  311. },
  312. {
  313. "__type__": "cc.Mask",
  314. "_name": "",
  315. "_objFlags": 0,
  316. "node": {
  317. "__id__": 2
  318. },
  319. "_enabled": true,
  320. "_materials": [
  321. {
  322. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  323. }
  324. ],
  325. "_spriteFrame": null,
  326. "_type": 0,
  327. "_segments": 64,
  328. "_N$alphaThreshold": 0,
  329. "_N$inverted": true,
  330. "_id": ""
  331. },
  332. {
  333. "__type__": "cc.PrefabInfo",
  334. "root": {
  335. "__id__": 1
  336. },
  337. "asset": {
  338. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  339. },
  340. "fileId": "af2wWWnb1LsrA0wok8WpNl",
  341. "sync": false
  342. },
  343. {
  344. "__type__": "cc.Node",
  345. "_name": "点击区域",
  346. "_objFlags": 0,
  347. "_parent": {
  348. "__id__": 1
  349. },
  350. "_children": [],
  351. "_active": true,
  352. "_components": [
  353. {
  354. "__id__": 11
  355. }
  356. ],
  357. "_prefab": {
  358. "__id__": 12
  359. },
  360. "_opacity": 0,
  361. "_color": {
  362. "__type__": "cc.Color",
  363. "r": 247,
  364. "g": 193,
  365. "b": 0,
  366. "a": 255
  367. },
  368. "_contentSize": {
  369. "__type__": "cc.Size",
  370. "width": 200,
  371. "height": 200
  372. },
  373. "_anchorPoint": {
  374. "__type__": "cc.Vec2",
  375. "x": 0.5,
  376. "y": 0.5
  377. },
  378. "_trs": {
  379. "__type__": "TypedArray",
  380. "ctor": "Float64Array",
  381. "array": [
  382. -69.034,
  383. 137.01,
  384. 0,
  385. 0,
  386. 0,
  387. 0,
  388. 1,
  389. 1,
  390. 1,
  391. 1
  392. ]
  393. },
  394. "_eulerAngles": {
  395. "__type__": "cc.Vec3",
  396. "x": 0,
  397. "y": 0,
  398. "z": 0
  399. },
  400. "_skewX": 0,
  401. "_skewY": 0,
  402. "_is3DNode": false,
  403. "_groupIndex": 0,
  404. "groupIndex": 0,
  405. "_id": ""
  406. },
  407. {
  408. "__type__": "cc.Sprite",
  409. "_name": "",
  410. "_objFlags": 0,
  411. "node": {
  412. "__id__": 10
  413. },
  414. "_enabled": true,
  415. "_materials": [
  416. {
  417. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  418. }
  419. ],
  420. "_srcBlendFactor": 770,
  421. "_dstBlendFactor": 771,
  422. "_spriteFrame": {
  423. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  424. },
  425. "_type": 0,
  426. "_sizeMode": 0,
  427. "_fillType": 0,
  428. "_fillCenter": {
  429. "__type__": "cc.Vec2",
  430. "x": 0,
  431. "y": 0
  432. },
  433. "_fillStart": 0,
  434. "_fillRange": 0,
  435. "_isTrimmedMode": true,
  436. "_atlas": null,
  437. "_id": ""
  438. },
  439. {
  440. "__type__": "cc.PrefabInfo",
  441. "root": {
  442. "__id__": 1
  443. },
  444. "asset": {
  445. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  446. },
  447. "fileId": "60Q2zcsidNuakhBvwjcngt",
  448. "sync": false
  449. },
  450. {
  451. "__type__": "cc.Node",
  452. "_objFlags": 0,
  453. "_parent": {
  454. "__id__": 1
  455. },
  456. "_prefab": {
  457. "__id__": 14
  458. },
  459. "_name": "hand",
  460. "_active": true,
  461. "_trs": {
  462. "__type__": "TypedArray",
  463. "ctor": "Float64Array",
  464. "array": [
  465. 0,
  466. 0,
  467. 0,
  468. 0,
  469. 0,
  470. 0,
  471. 1,
  472. 1,
  473. 1,
  474. 1
  475. ]
  476. },
  477. "_eulerAngles": {
  478. "__type__": "cc.Vec3",
  479. "x": 0,
  480. "y": 0,
  481. "z": 0
  482. },
  483. "_id": ""
  484. },
  485. {
  486. "__type__": "cc.PrefabInfo",
  487. "root": {
  488. "__id__": 13
  489. },
  490. "asset": {
  491. "__uuid__": "73bde1e5-ca53-420e-9f68-ca130e46fc49"
  492. },
  493. "fileId": "28CtR1YfRNpaH7R5QaADW9",
  494. "sync": true
  495. },
  496. {
  497. "__type__": "cc.Node",
  498. "_name": "BangsFit",
  499. "_objFlags": 0,
  500. "_parent": {
  501. "__id__": 1
  502. },
  503. "_children": [
  504. {
  505. "__id__": 16
  506. },
  507. {
  508. "__id__": 52
  509. }
  510. ],
  511. "_active": true,
  512. "_components": [
  513. {
  514. "__id__": 64
  515. },
  516. {
  517. "__id__": 65
  518. }
  519. ],
  520. "_prefab": {
  521. "__id__": 66
  522. },
  523. "_opacity": 255,
  524. "_color": {
  525. "__type__": "cc.Color",
  526. "r": 255,
  527. "g": 255,
  528. "b": 255,
  529. "a": 255
  530. },
  531. "_contentSize": {
  532. "__type__": "cc.Size",
  533. "width": 750,
  534. "height": 1334
  535. },
  536. "_anchorPoint": {
  537. "__type__": "cc.Vec2",
  538. "x": 0.5,
  539. "y": 0.5
  540. },
  541. "_trs": {
  542. "__type__": "TypedArray",
  543. "ctor": "Float64Array",
  544. "array": [
  545. 0,
  546. 0,
  547. 0,
  548. 0,
  549. 0,
  550. 0,
  551. 1,
  552. 1,
  553. 1,
  554. 1
  555. ]
  556. },
  557. "_eulerAngles": {
  558. "__type__": "cc.Vec3",
  559. "x": 0,
  560. "y": 0,
  561. "z": 0
  562. },
  563. "_skewX": 0,
  564. "_skewY": 0,
  565. "_is3DNode": false,
  566. "_groupIndex": 0,
  567. "groupIndex": 0,
  568. "_id": ""
  569. },
  570. {
  571. "__type__": "cc.Node",
  572. "_name": "描述",
  573. "_objFlags": 0,
  574. "_parent": {
  575. "__id__": 15
  576. },
  577. "_children": [
  578. {
  579. "__id__": 17
  580. },
  581. {
  582. "__id__": 32
  583. }
  584. ],
  585. "_active": true,
  586. "_components": [
  587. {
  588. "__id__": 50
  589. }
  590. ],
  591. "_prefab": {
  592. "__id__": 51
  593. },
  594. "_opacity": 255,
  595. "_color": {
  596. "__type__": "cc.Color",
  597. "r": 255,
  598. "g": 255,
  599. "b": 255,
  600. "a": 255
  601. },
  602. "_contentSize": {
  603. "__type__": "cc.Size",
  604. "width": 750,
  605. "height": 300
  606. },
  607. "_anchorPoint": {
  608. "__type__": "cc.Vec2",
  609. "x": 0.5,
  610. "y": 0.5
  611. },
  612. "_trs": {
  613. "__type__": "TypedArray",
  614. "ctor": "Float64Array",
  615. "array": [
  616. 0,
  617. 0,
  618. 0,
  619. 0,
  620. 0,
  621. 0,
  622. 1,
  623. 1,
  624. 1,
  625. 1
  626. ]
  627. },
  628. "_eulerAngles": {
  629. "__type__": "cc.Vec3",
  630. "x": 0,
  631. "y": 0,
  632. "z": 0
  633. },
  634. "_skewX": 0,
  635. "_skewY": 0,
  636. "_is3DNode": false,
  637. "_groupIndex": 0,
  638. "groupIndex": 0,
  639. "_id": ""
  640. },
  641. {
  642. "__type__": "cc.Node",
  643. "_name": "head",
  644. "_objFlags": 0,
  645. "_parent": {
  646. "__id__": 16
  647. },
  648. "_children": [
  649. {
  650. "__id__": 18
  651. }
  652. ],
  653. "_active": false,
  654. "_components": [
  655. {
  656. "__id__": 30
  657. }
  658. ],
  659. "_prefab": {
  660. "__id__": 31
  661. },
  662. "_opacity": 255,
  663. "_color": {
  664. "__type__": "cc.Color",
  665. "r": 255,
  666. "g": 255,
  667. "b": 255,
  668. "a": 255
  669. },
  670. "_contentSize": {
  671. "__type__": "cc.Size",
  672. "width": 201,
  673. "height": 230
  674. },
  675. "_anchorPoint": {
  676. "__type__": "cc.Vec2",
  677. "x": 0.5,
  678. "y": 0.5
  679. },
  680. "_trs": {
  681. "__type__": "TypedArray",
  682. "ctor": "Float64Array",
  683. "array": [
  684. -181.396,
  685. -4.247,
  686. 0,
  687. 0,
  688. 0,
  689. 0,
  690. 1,
  691. 1,
  692. 1,
  693. 1
  694. ]
  695. },
  696. "_eulerAngles": {
  697. "__type__": "cc.Vec3",
  698. "x": 0,
  699. "y": 0,
  700. "z": 0
  701. },
  702. "_skewX": 0,
  703. "_skewY": 0,
  704. "_is3DNode": false,
  705. "_groupIndex": 0,
  706. "groupIndex": 0,
  707. "_id": ""
  708. },
  709. {
  710. "__type__": "cc.Node",
  711. "_name": "bg",
  712. "_objFlags": 0,
  713. "_parent": {
  714. "__id__": 17
  715. },
  716. "_children": [
  717. {
  718. "__id__": 19
  719. }
  720. ],
  721. "_active": true,
  722. "_components": [
  723. {
  724. "__id__": 28
  725. }
  726. ],
  727. "_prefab": {
  728. "__id__": 29
  729. },
  730. "_opacity": 255,
  731. "_color": {
  732. "__type__": "cc.Color",
  733. "r": 255,
  734. "g": 255,
  735. "b": 255,
  736. "a": 255
  737. },
  738. "_contentSize": {
  739. "__type__": "cc.Size",
  740. "width": 395,
  741. "height": 129
  742. },
  743. "_anchorPoint": {
  744. "__type__": "cc.Vec2",
  745. "x": 0.5,
  746. "y": 0.5
  747. },
  748. "_trs": {
  749. "__type__": "TypedArray",
  750. "ctor": "Float64Array",
  751. "array": [
  752. 297,
  753. 86,
  754. 0,
  755. 0,
  756. 0,
  757. 0,
  758. 1,
  759. 1,
  760. 1,
  761. 1
  762. ]
  763. },
  764. "_eulerAngles": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_skewX": 0,
  771. "_skewY": 0,
  772. "_is3DNode": false,
  773. "_groupIndex": 0,
  774. "groupIndex": 0,
  775. "_id": ""
  776. },
  777. {
  778. "__type__": "cc.Node",
  779. "_name": "文本",
  780. "_objFlags": 0,
  781. "_parent": {
  782. "__id__": 18
  783. },
  784. "_children": [
  785. {
  786. "__id__": 20
  787. },
  788. {
  789. "__id__": 23
  790. }
  791. ],
  792. "_active": true,
  793. "_components": [
  794. {
  795. "__id__": 26
  796. }
  797. ],
  798. "_prefab": {
  799. "__id__": 27
  800. },
  801. "_opacity": 255,
  802. "_color": {
  803. "__type__": "cc.Color",
  804. "r": 255,
  805. "g": 255,
  806. "b": 255,
  807. "a": 255
  808. },
  809. "_contentSize": {
  810. "__type__": "cc.Size",
  811. "width": 330,
  812. "height": 112.99999999999999
  813. },
  814. "_anchorPoint": {
  815. "__type__": "cc.Vec2",
  816. "x": 0.5,
  817. "y": 0.5
  818. },
  819. "_trs": {
  820. "__type__": "TypedArray",
  821. "ctor": "Float64Array",
  822. "array": [
  823. 18.928,
  824. 4,
  825. 0,
  826. 0,
  827. 0,
  828. 0,
  829. 1,
  830. 1,
  831. 1,
  832. 1
  833. ]
  834. },
  835. "_eulerAngles": {
  836. "__type__": "cc.Vec3",
  837. "x": 0,
  838. "y": 0,
  839. "z": 0
  840. },
  841. "_skewX": 0,
  842. "_skewY": 0,
  843. "_is3DNode": false,
  844. "_groupIndex": 0,
  845. "groupIndex": 0,
  846. "_id": ""
  847. },
  848. {
  849. "__type__": "cc.PrivateNode",
  850. "_name": "RICHTEXT_CHILD",
  851. "_objFlags": 1024,
  852. "_parent": {
  853. "__id__": 19
  854. },
  855. "_children": [],
  856. "_active": false,
  857. "_components": [
  858. {
  859. "__id__": 21
  860. }
  861. ],
  862. "_prefab": {
  863. "__id__": 22
  864. },
  865. "_opacity": 255,
  866. "_color": {
  867. "__type__": "cc.Color",
  868. "r": 0,
  869. "g": 0,
  870. "b": 0,
  871. "a": 255
  872. },
  873. "_contentSize": {
  874. "__type__": "cc.Size",
  875. "width": 240,
  876. "height": 63
  877. },
  878. "_anchorPoint": {
  879. "__type__": "cc.Vec2",
  880. "x": 0,
  881. "y": 0
  882. },
  883. "_trs": {
  884. "__type__": "TypedArray",
  885. "ctor": "Float64Array",
  886. "array": [
  887. -165,
  888. -6.499999999999993,
  889. 0,
  890. 0,
  891. 0,
  892. 0,
  893. 1,
  894. 1,
  895. 1,
  896. 1
  897. ]
  898. },
  899. "_eulerAngles": {
  900. "__type__": "cc.Vec3",
  901. "x": 0,
  902. "y": 0,
  903. "z": 0
  904. },
  905. "_skewX": 0,
  906. "_skewY": 0,
  907. "_is3DNode": false,
  908. "_groupIndex": 0,
  909. "groupIndex": 0,
  910. "showInEditor": false,
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.Label",
  915. "_name": "",
  916. "_objFlags": 0,
  917. "node": {
  918. "__id__": 20
  919. },
  920. "_enabled": true,
  921. "_materials": [
  922. {
  923. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  924. }
  925. ],
  926. "_srcBlendFactor": 770,
  927. "_dstBlendFactor": 771,
  928. "_string": "“任务红包”开启",
  929. "_N$string": "“任务红包”开启",
  930. "_fontSize": 30,
  931. "_lineHeight": 50,
  932. "_enableWrapText": true,
  933. "_N$file": {
  934. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  935. },
  936. "_isSystemFontUsed": false,
  937. "_spacingX": 0,
  938. "_batchAsBitmap": false,
  939. "_styleFlags": 0,
  940. "_underlineHeight": 0,
  941. "_N$horizontalAlign": 0,
  942. "_N$verticalAlign": 1,
  943. "_N$fontFamily": "Arial",
  944. "_N$overflow": 0,
  945. "_N$cacheMode": 0,
  946. "_id": ""
  947. },
  948. {
  949. "__type__": "cc.PrefabInfo",
  950. "root": {
  951. "__id__": 1
  952. },
  953. "asset": {
  954. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  955. },
  956. "fileId": "f0+/GBQDFN2pcI+RdpJVBQ",
  957. "sync": false
  958. },
  959. {
  960. "__type__": "cc.PrivateNode",
  961. "_name": "RICHTEXT_CHILD",
  962. "_objFlags": 1024,
  963. "_parent": {
  964. "__id__": 19
  965. },
  966. "_children": [],
  967. "_active": false,
  968. "_components": [
  969. {
  970. "__id__": 24
  971. }
  972. ],
  973. "_prefab": {
  974. "__id__": 25
  975. },
  976. "_opacity": 255,
  977. "_color": {
  978. "__type__": "cc.Color",
  979. "r": 0,
  980. "g": 0,
  981. "b": 0,
  982. "a": 255
  983. },
  984. "_contentSize": {
  985. "__type__": "cc.Size",
  986. "width": 270,
  987. "height": 63
  988. },
  989. "_anchorPoint": {
  990. "__type__": "cc.Vec2",
  991. "x": 0,
  992. "y": 0
  993. },
  994. "_trs": {
  995. "__type__": "TypedArray",
  996. "ctor": "Float64Array",
  997. "array": [
  998. -165,
  999. -56.49999999999999,
  1000. 0,
  1001. 0,
  1002. 0,
  1003. 0,
  1004. 1,
  1005. 1,
  1006. 1,
  1007. 1
  1008. ]
  1009. },
  1010. "_eulerAngles": {
  1011. "__type__": "cc.Vec3",
  1012. "x": 0,
  1013. "y": 0,
  1014. "z": 0
  1015. },
  1016. "_skewX": 0,
  1017. "_skewY": 0,
  1018. "_is3DNode": false,
  1019. "_groupIndex": 0,
  1020. "groupIndex": 0,
  1021. "showInEditor": false,
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.Label",
  1026. "_name": "",
  1027. "_objFlags": 0,
  1028. "node": {
  1029. "__id__": 23
  1030. },
  1031. "_enabled": true,
  1032. "_materials": [
  1033. {
  1034. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1035. }
  1036. ],
  1037. "_srcBlendFactor": 770,
  1038. "_dstBlendFactor": 771,
  1039. "_string": "完成任务可立即提现",
  1040. "_N$string": "完成任务可立即提现",
  1041. "_fontSize": 30,
  1042. "_lineHeight": 50,
  1043. "_enableWrapText": true,
  1044. "_N$file": {
  1045. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1046. },
  1047. "_isSystemFontUsed": false,
  1048. "_spacingX": 0,
  1049. "_batchAsBitmap": false,
  1050. "_styleFlags": 0,
  1051. "_underlineHeight": 0,
  1052. "_N$horizontalAlign": 0,
  1053. "_N$verticalAlign": 1,
  1054. "_N$fontFamily": "Arial",
  1055. "_N$overflow": 0,
  1056. "_N$cacheMode": 0,
  1057. "_id": ""
  1058. },
  1059. {
  1060. "__type__": "cc.PrefabInfo",
  1061. "root": {
  1062. "__id__": 1
  1063. },
  1064. "asset": {
  1065. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1066. },
  1067. "fileId": "a5YhxffqVAcKkrjfX/aNJ5",
  1068. "sync": false
  1069. },
  1070. {
  1071. "__type__": "cc.RichText",
  1072. "_name": "",
  1073. "_objFlags": 0,
  1074. "node": {
  1075. "__id__": 19
  1076. },
  1077. "_enabled": true,
  1078. "_fontFamily": "Arial",
  1079. "_isSystemFontUsed": false,
  1080. "_N$string": "<color=#000000>“任务红包”开启\n完成任务可立即提现</color>",
  1081. "_N$horizontalAlign": 0,
  1082. "_N$fontSize": 30,
  1083. "_N$font": {
  1084. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1085. },
  1086. "_N$cacheMode": 0,
  1087. "_N$maxWidth": 330,
  1088. "_N$lineHeight": 50,
  1089. "_N$imageAtlas": null,
  1090. "_N$handleTouchEvent": false,
  1091. "_id": ""
  1092. },
  1093. {
  1094. "__type__": "cc.PrefabInfo",
  1095. "root": {
  1096. "__id__": 1
  1097. },
  1098. "asset": {
  1099. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1100. },
  1101. "fileId": "15q9Rpp1ROjb+ZQ9k0fkjE",
  1102. "sync": false
  1103. },
  1104. {
  1105. "__type__": "cc.Sprite",
  1106. "_name": "",
  1107. "_objFlags": 0,
  1108. "node": {
  1109. "__id__": 18
  1110. },
  1111. "_enabled": true,
  1112. "_materials": [
  1113. {
  1114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1115. }
  1116. ],
  1117. "_srcBlendFactor": 770,
  1118. "_dstBlendFactor": 771,
  1119. "_spriteFrame": {
  1120. "__uuid__": "83b7eeb0-b60b-4e20-82d4-42a63882d451"
  1121. },
  1122. "_type": 1,
  1123. "_sizeMode": 0,
  1124. "_fillType": 0,
  1125. "_fillCenter": {
  1126. "__type__": "cc.Vec2",
  1127. "x": 0,
  1128. "y": 0
  1129. },
  1130. "_fillStart": 0,
  1131. "_fillRange": 0,
  1132. "_isTrimmedMode": true,
  1133. "_atlas": null,
  1134. "_id": ""
  1135. },
  1136. {
  1137. "__type__": "cc.PrefabInfo",
  1138. "root": {
  1139. "__id__": 1
  1140. },
  1141. "asset": {
  1142. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1143. },
  1144. "fileId": "67ObwmneNMaYaGuh9Bhn7F",
  1145. "sync": false
  1146. },
  1147. {
  1148. "__type__": "cc.Sprite",
  1149. "_name": "",
  1150. "_objFlags": 0,
  1151. "node": {
  1152. "__id__": 17
  1153. },
  1154. "_enabled": true,
  1155. "_materials": [
  1156. {
  1157. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1158. }
  1159. ],
  1160. "_srcBlendFactor": 770,
  1161. "_dstBlendFactor": 771,
  1162. "_spriteFrame": {
  1163. "__uuid__": "cff81677-0727-4cd3-869c-39b593e999f2"
  1164. },
  1165. "_type": 0,
  1166. "_sizeMode": 1,
  1167. "_fillType": 0,
  1168. "_fillCenter": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0,
  1171. "y": 0
  1172. },
  1173. "_fillStart": 0,
  1174. "_fillRange": 0,
  1175. "_isTrimmedMode": true,
  1176. "_atlas": null,
  1177. "_id": ""
  1178. },
  1179. {
  1180. "__type__": "cc.PrefabInfo",
  1181. "root": {
  1182. "__id__": 1
  1183. },
  1184. "asset": {
  1185. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1186. },
  1187. "fileId": "80fzk6YflEpJD4GIpJNkAY",
  1188. "sync": false
  1189. },
  1190. {
  1191. "__type__": "cc.Node",
  1192. "_name": "bg1",
  1193. "_objFlags": 0,
  1194. "_parent": {
  1195. "__id__": 16
  1196. },
  1197. "_children": [
  1198. {
  1199. "__id__": 33
  1200. },
  1201. {
  1202. "__id__": 36
  1203. }
  1204. ],
  1205. "_active": true,
  1206. "_components": [
  1207. {
  1208. "__id__": 48
  1209. }
  1210. ],
  1211. "_prefab": {
  1212. "__id__": 49
  1213. },
  1214. "_opacity": 255,
  1215. "_color": {
  1216. "__type__": "cc.Color",
  1217. "r": 255,
  1218. "g": 255,
  1219. "b": 255,
  1220. "a": 255
  1221. },
  1222. "_contentSize": {
  1223. "__type__": "cc.Size",
  1224. "width": 750,
  1225. "height": 176
  1226. },
  1227. "_anchorPoint": {
  1228. "__type__": "cc.Vec2",
  1229. "x": 0.5,
  1230. "y": 0.5
  1231. },
  1232. "_trs": {
  1233. "__type__": "TypedArray",
  1234. "ctor": "Float64Array",
  1235. "array": [
  1236. 0,
  1237. -64.338,
  1238. 0,
  1239. 0,
  1240. 0,
  1241. 0,
  1242. 1,
  1243. 1,
  1244. 1,
  1245. 1
  1246. ]
  1247. },
  1248. "_eulerAngles": {
  1249. "__type__": "cc.Vec3",
  1250. "x": 0,
  1251. "y": 0,
  1252. "z": 0
  1253. },
  1254. "_skewX": 0,
  1255. "_skewY": 0,
  1256. "_is3DNode": false,
  1257. "_groupIndex": 0,
  1258. "groupIndex": 0,
  1259. "_id": ""
  1260. },
  1261. {
  1262. "__type__": "cc.Node",
  1263. "_name": "panda",
  1264. "_objFlags": 0,
  1265. "_parent": {
  1266. "__id__": 32
  1267. },
  1268. "_children": [],
  1269. "_active": true,
  1270. "_components": [
  1271. {
  1272. "__id__": 34
  1273. }
  1274. ],
  1275. "_prefab": {
  1276. "__id__": 35
  1277. },
  1278. "_opacity": 255,
  1279. "_color": {
  1280. "__type__": "cc.Color",
  1281. "r": 255,
  1282. "g": 255,
  1283. "b": 255,
  1284. "a": 255
  1285. },
  1286. "_contentSize": {
  1287. "__type__": "cc.Size",
  1288. "width": 201,
  1289. "height": 230
  1290. },
  1291. "_anchorPoint": {
  1292. "__type__": "cc.Vec2",
  1293. "x": 0.5,
  1294. "y": 0.5
  1295. },
  1296. "_trs": {
  1297. "__type__": "TypedArray",
  1298. "ctor": "Float64Array",
  1299. "array": [
  1300. -228.704,
  1301. 121.28,
  1302. 0,
  1303. 0,
  1304. 0,
  1305. 0,
  1306. 1,
  1307. 1,
  1308. 1,
  1309. 1
  1310. ]
  1311. },
  1312. "_eulerAngles": {
  1313. "__type__": "cc.Vec3",
  1314. "x": 0,
  1315. "y": 0,
  1316. "z": 0
  1317. },
  1318. "_skewX": 0,
  1319. "_skewY": 0,
  1320. "_is3DNode": false,
  1321. "_groupIndex": 0,
  1322. "groupIndex": 0,
  1323. "_id": ""
  1324. },
  1325. {
  1326. "__type__": "cc.Sprite",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "node": {
  1330. "__id__": 33
  1331. },
  1332. "_enabled": true,
  1333. "_materials": [
  1334. {
  1335. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1336. }
  1337. ],
  1338. "_srcBlendFactor": 770,
  1339. "_dstBlendFactor": 771,
  1340. "_spriteFrame": {
  1341. "__uuid__": "cff81677-0727-4cd3-869c-39b593e999f2"
  1342. },
  1343. "_type": 0,
  1344. "_sizeMode": 1,
  1345. "_fillType": 0,
  1346. "_fillCenter": {
  1347. "__type__": "cc.Vec2",
  1348. "x": 0,
  1349. "y": 0
  1350. },
  1351. "_fillStart": 0,
  1352. "_fillRange": 0,
  1353. "_isTrimmedMode": true,
  1354. "_atlas": null,
  1355. "_id": ""
  1356. },
  1357. {
  1358. "__type__": "cc.PrefabInfo",
  1359. "root": {
  1360. "__id__": 1
  1361. },
  1362. "asset": {
  1363. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1364. },
  1365. "fileId": "51gKwfEjFEhY+h6SHCIaDw",
  1366. "sync": false
  1367. },
  1368. {
  1369. "__type__": "cc.Node",
  1370. "_name": "bg",
  1371. "_objFlags": 0,
  1372. "_parent": {
  1373. "__id__": 32
  1374. },
  1375. "_children": [
  1376. {
  1377. "__id__": 37
  1378. }
  1379. ],
  1380. "_active": true,
  1381. "_components": [
  1382. {
  1383. "__id__": 46
  1384. }
  1385. ],
  1386. "_prefab": {
  1387. "__id__": 47
  1388. },
  1389. "_opacity": 255,
  1390. "_color": {
  1391. "__type__": "cc.Color",
  1392. "r": 255,
  1393. "g": 255,
  1394. "b": 255,
  1395. "a": 255
  1396. },
  1397. "_contentSize": {
  1398. "__type__": "cc.Size",
  1399. "width": 428,
  1400. "height": 129
  1401. },
  1402. "_anchorPoint": {
  1403. "__type__": "cc.Vec2",
  1404. "x": 0.5,
  1405. "y": 0.5
  1406. },
  1407. "_trs": {
  1408. "__type__": "TypedArray",
  1409. "ctor": "Float64Array",
  1410. "array": [
  1411. 83,
  1412. 209,
  1413. 0,
  1414. 0,
  1415. 0,
  1416. 0,
  1417. 1,
  1418. 1,
  1419. 1,
  1420. 1
  1421. ]
  1422. },
  1423. "_eulerAngles": {
  1424. "__type__": "cc.Vec3",
  1425. "x": 0,
  1426. "y": 0,
  1427. "z": 0
  1428. },
  1429. "_skewX": 0,
  1430. "_skewY": 0,
  1431. "_is3DNode": false,
  1432. "_groupIndex": 0,
  1433. "groupIndex": 0,
  1434. "_id": ""
  1435. },
  1436. {
  1437. "__type__": "cc.Node",
  1438. "_name": "文本",
  1439. "_objFlags": 0,
  1440. "_parent": {
  1441. "__id__": 36
  1442. },
  1443. "_children": [
  1444. {
  1445. "__id__": 38
  1446. },
  1447. {
  1448. "__id__": 41
  1449. }
  1450. ],
  1451. "_active": true,
  1452. "_components": [
  1453. {
  1454. "__id__": 44
  1455. }
  1456. ],
  1457. "_prefab": {
  1458. "__id__": 45
  1459. },
  1460. "_opacity": 255,
  1461. "_color": {
  1462. "__type__": "cc.Color",
  1463. "r": 255,
  1464. "g": 255,
  1465. "b": 255,
  1466. "a": 255
  1467. },
  1468. "_contentSize": {
  1469. "__type__": "cc.Size",
  1470. "width": 360,
  1471. "height": 63
  1472. },
  1473. "_anchorPoint": {
  1474. "__type__": "cc.Vec2",
  1475. "x": 0.5,
  1476. "y": 0.5
  1477. },
  1478. "_trs": {
  1479. "__type__": "TypedArray",
  1480. "ctor": "Float64Array",
  1481. "array": [
  1482. 20.159,
  1483. 4,
  1484. 0,
  1485. 0,
  1486. 0,
  1487. 0,
  1488. 1,
  1489. 1,
  1490. 1,
  1491. 1
  1492. ]
  1493. },
  1494. "_eulerAngles": {
  1495. "__type__": "cc.Vec3",
  1496. "x": 0,
  1497. "y": 0,
  1498. "z": 0
  1499. },
  1500. "_skewX": 0,
  1501. "_skewY": 0,
  1502. "_is3DNode": false,
  1503. "_groupIndex": 0,
  1504. "groupIndex": 0,
  1505. "_id": ""
  1506. },
  1507. {
  1508. "__type__": "cc.PrivateNode",
  1509. "_name": "RICHTEXT_CHILD",
  1510. "_objFlags": 1024,
  1511. "_parent": {
  1512. "__id__": 37
  1513. },
  1514. "_children": [],
  1515. "_active": true,
  1516. "_components": [
  1517. {
  1518. "__id__": 39
  1519. }
  1520. ],
  1521. "_prefab": {
  1522. "__id__": 40
  1523. },
  1524. "_opacity": 255,
  1525. "_color": {
  1526. "__type__": "cc.Color",
  1527. "r": 138,
  1528. "g": 67,
  1529. "b": 18,
  1530. "a": 255
  1531. },
  1532. "_contentSize": {
  1533. "__type__": "cc.Size",
  1534. "width": 120,
  1535. "height": 63
  1536. },
  1537. "_anchorPoint": {
  1538. "__type__": "cc.Vec2",
  1539. "x": 0,
  1540. "y": 0
  1541. },
  1542. "_trs": {
  1543. "__type__": "TypedArray",
  1544. "ctor": "Float64Array",
  1545. "array": [
  1546. -165,
  1547. -31.5,
  1548. 0,
  1549. 0,
  1550. 0,
  1551. 0,
  1552. 1,
  1553. 1,
  1554. 1,
  1555. 1
  1556. ]
  1557. },
  1558. "_eulerAngles": {
  1559. "__type__": "cc.Vec3",
  1560. "x": 0,
  1561. "y": 0,
  1562. "z": 0
  1563. },
  1564. "_skewX": 0,
  1565. "_skewY": 0,
  1566. "_is3DNode": false,
  1567. "_groupIndex": 0,
  1568. "groupIndex": 0,
  1569. "showInEditor": false,
  1570. "_id": ""
  1571. },
  1572. {
  1573. "__type__": "cc.Label",
  1574. "_name": "",
  1575. "_objFlags": 0,
  1576. "node": {
  1577. "__id__": 38
  1578. },
  1579. "_enabled": true,
  1580. "_materials": [
  1581. {
  1582. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1583. }
  1584. ],
  1585. "_srcBlendFactor": 770,
  1586. "_dstBlendFactor": 771,
  1587. "_string": "欢迎来到",
  1588. "_N$string": "欢迎来到",
  1589. "_fontSize": 30,
  1590. "_lineHeight": 50,
  1591. "_enableWrapText": true,
  1592. "_N$file": {
  1593. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1594. },
  1595. "_isSystemFontUsed": false,
  1596. "_spacingX": 0,
  1597. "_batchAsBitmap": false,
  1598. "_styleFlags": 0,
  1599. "_underlineHeight": 0,
  1600. "_N$horizontalAlign": 0,
  1601. "_N$verticalAlign": 1,
  1602. "_N$fontFamily": "Arial",
  1603. "_N$overflow": 0,
  1604. "_N$cacheMode": 0,
  1605. "_id": ""
  1606. },
  1607. {
  1608. "__type__": "cc.PrefabInfo",
  1609. "root": {
  1610. "__id__": 1
  1611. },
  1612. "asset": {
  1613. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1614. },
  1615. "fileId": "36QFqXVA9Pbb5UcJ76zJCp",
  1616. "sync": false
  1617. },
  1618. {
  1619. "__type__": "cc.PrivateNode",
  1620. "_name": "RICHTEXT_CHILD",
  1621. "_objFlags": 1024,
  1622. "_parent": {
  1623. "__id__": 37
  1624. },
  1625. "_children": [],
  1626. "_active": true,
  1627. "_components": [
  1628. {
  1629. "__id__": 42
  1630. }
  1631. ],
  1632. "_prefab": {
  1633. "__id__": 43
  1634. },
  1635. "_opacity": 255,
  1636. "_color": {
  1637. "__type__": "cc.Color",
  1638. "r": 255,
  1639. "g": 0,
  1640. "b": 0,
  1641. "a": 255
  1642. },
  1643. "_contentSize": {
  1644. "__type__": "cc.Size",
  1645. "width": 210,
  1646. "height": 63
  1647. },
  1648. "_anchorPoint": {
  1649. "__type__": "cc.Vec2",
  1650. "x": 0,
  1651. "y": 0
  1652. },
  1653. "_trs": {
  1654. "__type__": "TypedArray",
  1655. "ctor": "Float64Array",
  1656. "array": [
  1657. -45,
  1658. -31.5,
  1659. 0,
  1660. 0,
  1661. 0,
  1662. 0,
  1663. 1,
  1664. 1,
  1665. 1,
  1666. 1
  1667. ]
  1668. },
  1669. "_eulerAngles": {
  1670. "__type__": "cc.Vec3",
  1671. "x": 0,
  1672. "y": 0,
  1673. "z": 0
  1674. },
  1675. "_skewX": 0,
  1676. "_skewY": 0,
  1677. "_is3DNode": false,
  1678. "_groupIndex": 0,
  1679. "groupIndex": 0,
  1680. "showInEditor": false,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.Label",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 41
  1689. },
  1690. "_enabled": true,
  1691. "_materials": [
  1692. {
  1693. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1694. }
  1695. ],
  1696. "_srcBlendFactor": 770,
  1697. "_dstBlendFactor": 771,
  1698. "_string": "《开心农乐园》",
  1699. "_N$string": "《开心农乐园》",
  1700. "_fontSize": 30,
  1701. "_lineHeight": 50,
  1702. "_enableWrapText": true,
  1703. "_N$file": {
  1704. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1705. },
  1706. "_isSystemFontUsed": false,
  1707. "_spacingX": 0,
  1708. "_batchAsBitmap": false,
  1709. "_styleFlags": 0,
  1710. "_underlineHeight": 0,
  1711. "_N$horizontalAlign": 0,
  1712. "_N$verticalAlign": 1,
  1713. "_N$fontFamily": "Arial",
  1714. "_N$overflow": 0,
  1715. "_N$cacheMode": 0,
  1716. "_id": ""
  1717. },
  1718. {
  1719. "__type__": "cc.PrefabInfo",
  1720. "root": {
  1721. "__id__": 1
  1722. },
  1723. "asset": {
  1724. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1725. },
  1726. "fileId": "62sGF3/qhH96X7KUsmc5v/",
  1727. "sync": false
  1728. },
  1729. {
  1730. "__type__": "cc.RichText",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "node": {
  1734. "__id__": 37
  1735. },
  1736. "_enabled": true,
  1737. "_fontFamily": "Arial",
  1738. "_isSystemFontUsed": false,
  1739. "_N$string": "<color=8A4312>欢迎来到<color=ff0000>《开心农乐园》</color></color>",
  1740. "_N$horizontalAlign": 1,
  1741. "_N$fontSize": 30,
  1742. "_N$font": {
  1743. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1744. },
  1745. "_N$cacheMode": 0,
  1746. "_N$maxWidth": 360,
  1747. "_N$lineHeight": 50,
  1748. "_N$imageAtlas": null,
  1749. "_N$handleTouchEvent": false,
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.PrefabInfo",
  1754. "root": {
  1755. "__id__": 1
  1756. },
  1757. "asset": {
  1758. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1759. },
  1760. "fileId": "d69IRoSWNAQJeow5ayqyP+",
  1761. "sync": false
  1762. },
  1763. {
  1764. "__type__": "cc.Sprite",
  1765. "_name": "",
  1766. "_objFlags": 0,
  1767. "node": {
  1768. "__id__": 36
  1769. },
  1770. "_enabled": true,
  1771. "_materials": [
  1772. {
  1773. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1774. }
  1775. ],
  1776. "_srcBlendFactor": 770,
  1777. "_dstBlendFactor": 771,
  1778. "_spriteFrame": {
  1779. "__uuid__": "83b7eeb0-b60b-4e20-82d4-42a63882d451"
  1780. },
  1781. "_type": 1,
  1782. "_sizeMode": 0,
  1783. "_fillType": 0,
  1784. "_fillCenter": {
  1785. "__type__": "cc.Vec2",
  1786. "x": 0,
  1787. "y": 0
  1788. },
  1789. "_fillStart": 0,
  1790. "_fillRange": 0,
  1791. "_isTrimmedMode": true,
  1792. "_atlas": null,
  1793. "_id": ""
  1794. },
  1795. {
  1796. "__type__": "cc.PrefabInfo",
  1797. "root": {
  1798. "__id__": 1
  1799. },
  1800. "asset": {
  1801. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1802. },
  1803. "fileId": "20rWQ0h5FDE7n0KDZTi3PL",
  1804. "sync": false
  1805. },
  1806. {
  1807. "__type__": "cc.Sprite",
  1808. "_name": "",
  1809. "_objFlags": 0,
  1810. "node": {
  1811. "__id__": 32
  1812. },
  1813. "_enabled": true,
  1814. "_materials": [
  1815. {
  1816. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1817. }
  1818. ],
  1819. "_srcBlendFactor": 770,
  1820. "_dstBlendFactor": 771,
  1821. "_spriteFrame": {
  1822. "__uuid__": "5544bb48-4665-4fec-b712-9b6d43719f5c"
  1823. },
  1824. "_type": 0,
  1825. "_sizeMode": 1,
  1826. "_fillType": 0,
  1827. "_fillCenter": {
  1828. "__type__": "cc.Vec2",
  1829. "x": 0,
  1830. "y": 0
  1831. },
  1832. "_fillStart": 0,
  1833. "_fillRange": 0,
  1834. "_isTrimmedMode": true,
  1835. "_atlas": null,
  1836. "_id": ""
  1837. },
  1838. {
  1839. "__type__": "cc.PrefabInfo",
  1840. "root": {
  1841. "__id__": 1
  1842. },
  1843. "asset": {
  1844. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1845. },
  1846. "fileId": "0e1tlVQRRCJKr4sqlbAXal",
  1847. "sync": false
  1848. },
  1849. {
  1850. "__type__": "cc.Widget",
  1851. "_name": "",
  1852. "_objFlags": 0,
  1853. "node": {
  1854. "__id__": 16
  1855. },
  1856. "_enabled": false,
  1857. "alignMode": 1,
  1858. "_target": null,
  1859. "_alignFlags": 0,
  1860. "_left": 0,
  1861. "_right": 0,
  1862. "_top": 300,
  1863. "_bottom": 0,
  1864. "_verticalCenter": 0,
  1865. "_horizontalCenter": 0,
  1866. "_isAbsLeft": true,
  1867. "_isAbsRight": true,
  1868. "_isAbsTop": true,
  1869. "_isAbsBottom": true,
  1870. "_isAbsHorizontalCenter": true,
  1871. "_isAbsVerticalCenter": true,
  1872. "_originalWidth": 0,
  1873. "_originalHeight": 0,
  1874. "_id": ""
  1875. },
  1876. {
  1877. "__type__": "cc.PrefabInfo",
  1878. "root": {
  1879. "__id__": 1
  1880. },
  1881. "asset": {
  1882. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  1883. },
  1884. "fileId": "43AlZIeCVO/ra2dqis6MDr",
  1885. "sync": false
  1886. },
  1887. {
  1888. "__type__": "cc.Node",
  1889. "_name": "跳过",
  1890. "_objFlags": 0,
  1891. "_parent": {
  1892. "__id__": 15
  1893. },
  1894. "_children": [
  1895. {
  1896. "__id__": 53
  1897. }
  1898. ],
  1899. "_active": true,
  1900. "_components": [
  1901. {
  1902. "__id__": 60
  1903. },
  1904. {
  1905. "__id__": 62
  1906. }
  1907. ],
  1908. "_prefab": {
  1909. "__id__": 63
  1910. },
  1911. "_opacity": 255,
  1912. "_color": {
  1913. "__type__": "cc.Color",
  1914. "r": 255,
  1915. "g": 255,
  1916. "b": 255,
  1917. "a": 255
  1918. },
  1919. "_contentSize": {
  1920. "__type__": "cc.Size",
  1921. "width": 177,
  1922. "height": 56
  1923. },
  1924. "_anchorPoint": {
  1925. "__type__": "cc.Vec2",
  1926. "x": 0.5,
  1927. "y": 0.5
  1928. },
  1929. "_trs": {
  1930. "__type__": "TypedArray",
  1931. "ctor": "Float64Array",
  1932. "array": [
  1933. 254.965,
  1934. 609.038,
  1935. 0,
  1936. 0,
  1937. 0,
  1938. 0,
  1939. 1,
  1940. 1,
  1941. 1,
  1942. 0.8
  1943. ]
  1944. },
  1945. "_eulerAngles": {
  1946. "__type__": "cc.Vec3",
  1947. "x": 0,
  1948. "y": 0,
  1949. "z": 0
  1950. },
  1951. "_skewX": 0,
  1952. "_skewY": 0,
  1953. "_is3DNode": false,
  1954. "_groupIndex": 0,
  1955. "groupIndex": 0,
  1956. "_id": ""
  1957. },
  1958. {
  1959. "__type__": "cc.Node",
  1960. "_name": "Background",
  1961. "_objFlags": 512,
  1962. "_parent": {
  1963. "__id__": 52
  1964. },
  1965. "_children": [
  1966. {
  1967. "__id__": 54
  1968. }
  1969. ],
  1970. "_active": true,
  1971. "_components": [
  1972. {
  1973. "__id__": 57
  1974. },
  1975. {
  1976. "__id__": 58
  1977. }
  1978. ],
  1979. "_prefab": {
  1980. "__id__": 59
  1981. },
  1982. "_opacity": 255,
  1983. "_color": {
  1984. "__type__": "cc.Color",
  1985. "r": 255,
  1986. "g": 255,
  1987. "b": 255,
  1988. "a": 255
  1989. },
  1990. "_contentSize": {
  1991. "__type__": "cc.Size",
  1992. "width": 177,
  1993. "height": 56
  1994. },
  1995. "_anchorPoint": {
  1996. "__type__": "cc.Vec2",
  1997. "x": 0.5,
  1998. "y": 0.5
  1999. },
  2000. "_trs": {
  2001. "__type__": "TypedArray",
  2002. "ctor": "Float64Array",
  2003. "array": [
  2004. 0,
  2005. 0,
  2006. 0,
  2007. 0,
  2008. 0,
  2009. 0,
  2010. 1,
  2011. 1,
  2012. 1,
  2013. 1
  2014. ]
  2015. },
  2016. "_eulerAngles": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 0,
  2019. "y": 0,
  2020. "z": 0
  2021. },
  2022. "_skewX": 0,
  2023. "_skewY": 0,
  2024. "_is3DNode": false,
  2025. "_groupIndex": 0,
  2026. "groupIndex": 0,
  2027. "_id": ""
  2028. },
  2029. {
  2030. "__type__": "cc.Node",
  2031. "_name": "Label",
  2032. "_objFlags": 512,
  2033. "_parent": {
  2034. "__id__": 53
  2035. },
  2036. "_children": [],
  2037. "_active": true,
  2038. "_components": [
  2039. {
  2040. "__id__": 55
  2041. }
  2042. ],
  2043. "_prefab": {
  2044. "__id__": 56
  2045. },
  2046. "_opacity": 255,
  2047. "_color": {
  2048. "__type__": "cc.Color",
  2049. "r": 0,
  2050. "g": 0,
  2051. "b": 0,
  2052. "a": 255
  2053. },
  2054. "_contentSize": {
  2055. "__type__": "cc.Size",
  2056. "width": 100,
  2057. "height": 40
  2058. },
  2059. "_anchorPoint": {
  2060. "__type__": "cc.Vec2",
  2061. "x": 0.5,
  2062. "y": 0.5
  2063. },
  2064. "_trs": {
  2065. "__type__": "TypedArray",
  2066. "ctor": "Float64Array",
  2067. "array": [
  2068. 0,
  2069. 0,
  2070. 0,
  2071. 0,
  2072. 0,
  2073. 0,
  2074. 1,
  2075. 1,
  2076. 1,
  2077. 1
  2078. ]
  2079. },
  2080. "_eulerAngles": {
  2081. "__type__": "cc.Vec3",
  2082. "x": 0,
  2083. "y": 0,
  2084. "z": 0
  2085. },
  2086. "_skewX": 0,
  2087. "_skewY": 0,
  2088. "_is3DNode": false,
  2089. "_groupIndex": 0,
  2090. "groupIndex": 0,
  2091. "_id": ""
  2092. },
  2093. {
  2094. "__type__": "cc.Label",
  2095. "_name": "",
  2096. "_objFlags": 0,
  2097. "node": {
  2098. "__id__": 54
  2099. },
  2100. "_enabled": true,
  2101. "_materials": [
  2102. {
  2103. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2104. }
  2105. ],
  2106. "_srcBlendFactor": 770,
  2107. "_dstBlendFactor": 771,
  2108. "_string": "",
  2109. "_N$string": "",
  2110. "_fontSize": 20,
  2111. "_lineHeight": 40,
  2112. "_enableWrapText": false,
  2113. "_N$file": null,
  2114. "_isSystemFontUsed": true,
  2115. "_spacingX": 0,
  2116. "_batchAsBitmap": false,
  2117. "_styleFlags": 0,
  2118. "_underlineHeight": 0,
  2119. "_N$horizontalAlign": 1,
  2120. "_N$verticalAlign": 1,
  2121. "_N$fontFamily": "Arial",
  2122. "_N$overflow": 1,
  2123. "_N$cacheMode": 1,
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.PrefabInfo",
  2128. "root": {
  2129. "__id__": 1
  2130. },
  2131. "asset": {
  2132. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  2133. },
  2134. "fileId": "6ed3VCRr5CN6DDhR/HZ4xA",
  2135. "sync": false
  2136. },
  2137. {
  2138. "__type__": "cc.Sprite",
  2139. "_name": "",
  2140. "_objFlags": 0,
  2141. "node": {
  2142. "__id__": 53
  2143. },
  2144. "_enabled": true,
  2145. "_materials": [
  2146. {
  2147. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2148. }
  2149. ],
  2150. "_srcBlendFactor": 770,
  2151. "_dstBlendFactor": 771,
  2152. "_spriteFrame": {
  2153. "__uuid__": "e321eb57-ae0f-430b-b6e7-6838cc0fbc50"
  2154. },
  2155. "_type": 0,
  2156. "_sizeMode": 1,
  2157. "_fillType": 0,
  2158. "_fillCenter": {
  2159. "__type__": "cc.Vec2",
  2160. "x": 0,
  2161. "y": 0
  2162. },
  2163. "_fillStart": 0,
  2164. "_fillRange": 0,
  2165. "_isTrimmedMode": true,
  2166. "_atlas": null,
  2167. "_id": ""
  2168. },
  2169. {
  2170. "__type__": "cc.Widget",
  2171. "_name": "",
  2172. "_objFlags": 0,
  2173. "node": {
  2174. "__id__": 53
  2175. },
  2176. "_enabled": true,
  2177. "alignMode": 0,
  2178. "_target": null,
  2179. "_alignFlags": 45,
  2180. "_left": 0,
  2181. "_right": 0,
  2182. "_top": 0,
  2183. "_bottom": 0,
  2184. "_verticalCenter": 0,
  2185. "_horizontalCenter": 0,
  2186. "_isAbsLeft": true,
  2187. "_isAbsRight": true,
  2188. "_isAbsTop": true,
  2189. "_isAbsBottom": true,
  2190. "_isAbsHorizontalCenter": true,
  2191. "_isAbsVerticalCenter": true,
  2192. "_originalWidth": 100,
  2193. "_originalHeight": 40,
  2194. "_id": ""
  2195. },
  2196. {
  2197. "__type__": "cc.PrefabInfo",
  2198. "root": {
  2199. "__id__": 1
  2200. },
  2201. "asset": {
  2202. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  2203. },
  2204. "fileId": "acnU8a8QRGdogC46w0yFJK",
  2205. "sync": false
  2206. },
  2207. {
  2208. "__type__": "cc.Button",
  2209. "_name": "",
  2210. "_objFlags": 0,
  2211. "node": {
  2212. "__id__": 52
  2213. },
  2214. "_enabled": true,
  2215. "_normalMaterial": null,
  2216. "_grayMaterial": null,
  2217. "duration": 0.1,
  2218. "zoomScale": 1.2,
  2219. "clickEvents": [
  2220. {
  2221. "__id__": 61
  2222. }
  2223. ],
  2224. "_N$interactable": true,
  2225. "_N$enableAutoGrayEffect": false,
  2226. "_N$transition": 0,
  2227. "transition": 0,
  2228. "_N$normalColor": {
  2229. "__type__": "cc.Color",
  2230. "r": 230,
  2231. "g": 230,
  2232. "b": 230,
  2233. "a": 255
  2234. },
  2235. "_N$pressedColor": {
  2236. "__type__": "cc.Color",
  2237. "r": 200,
  2238. "g": 200,
  2239. "b": 200,
  2240. "a": 255
  2241. },
  2242. "pressedColor": {
  2243. "__type__": "cc.Color",
  2244. "r": 200,
  2245. "g": 200,
  2246. "b": 200,
  2247. "a": 255
  2248. },
  2249. "_N$hoverColor": {
  2250. "__type__": "cc.Color",
  2251. "r": 255,
  2252. "g": 255,
  2253. "b": 255,
  2254. "a": 255
  2255. },
  2256. "hoverColor": {
  2257. "__type__": "cc.Color",
  2258. "r": 255,
  2259. "g": 255,
  2260. "b": 255,
  2261. "a": 255
  2262. },
  2263. "_N$disabledColor": {
  2264. "__type__": "cc.Color",
  2265. "r": 120,
  2266. "g": 120,
  2267. "b": 120,
  2268. "a": 200
  2269. },
  2270. "_N$normalSprite": {
  2271. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2272. },
  2273. "_N$pressedSprite": {
  2274. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2275. },
  2276. "pressedSprite": {
  2277. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2278. },
  2279. "_N$hoverSprite": {
  2280. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2281. },
  2282. "hoverSprite": {
  2283. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2284. },
  2285. "_N$disabledSprite": {
  2286. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2287. },
  2288. "_N$target": {
  2289. "__id__": 53
  2290. },
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.ClickEvent",
  2295. "target": {
  2296. "__id__": 1
  2297. },
  2298. "component": "",
  2299. "_componentId": "cc77atmGeBM4bPWFiQFl7H6",
  2300. "handler": "clickSkip",
  2301. "customEventData": ""
  2302. },
  2303. {
  2304. "__type__": "cc.Widget",
  2305. "_name": "",
  2306. "_objFlags": 0,
  2307. "node": {
  2308. "__id__": 52
  2309. },
  2310. "_enabled": true,
  2311. "alignMode": 1,
  2312. "_target": null,
  2313. "_alignFlags": 1,
  2314. "_left": 0,
  2315. "_right": 0,
  2316. "_top": 29.96199999999999,
  2317. "_bottom": 0,
  2318. "_verticalCenter": 0,
  2319. "_horizontalCenter": 0,
  2320. "_isAbsLeft": true,
  2321. "_isAbsRight": true,
  2322. "_isAbsTop": true,
  2323. "_isAbsBottom": true,
  2324. "_isAbsHorizontalCenter": true,
  2325. "_isAbsVerticalCenter": true,
  2326. "_originalWidth": 0,
  2327. "_originalHeight": 0,
  2328. "_id": ""
  2329. },
  2330. {
  2331. "__type__": "cc.PrefabInfo",
  2332. "root": {
  2333. "__id__": 1
  2334. },
  2335. "asset": {
  2336. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  2337. },
  2338. "fileId": "feOaa+u4xJlbkIM8/mRYqN",
  2339. "sync": false
  2340. },
  2341. {
  2342. "__type__": "cc.Widget",
  2343. "_name": "",
  2344. "_objFlags": 0,
  2345. "node": {
  2346. "__id__": 15
  2347. },
  2348. "_enabled": true,
  2349. "alignMode": 1,
  2350. "_target": null,
  2351. "_alignFlags": 45,
  2352. "_left": 0,
  2353. "_right": 0,
  2354. "_top": 0,
  2355. "_bottom": 0,
  2356. "_verticalCenter": 0,
  2357. "_horizontalCenter": 0,
  2358. "_isAbsLeft": true,
  2359. "_isAbsRight": true,
  2360. "_isAbsTop": true,
  2361. "_isAbsBottom": true,
  2362. "_isAbsHorizontalCenter": true,
  2363. "_isAbsVerticalCenter": true,
  2364. "_originalWidth": 750,
  2365. "_originalHeight": 1334,
  2366. "_id": ""
  2367. },
  2368. {
  2369. "__type__": "173866Ll/lFN6TBCxDmQuqC",
  2370. "_name": "",
  2371. "_objFlags": 0,
  2372. "node": {
  2373. "__id__": 15
  2374. },
  2375. "_enabled": true,
  2376. "isFitSpecialNode": false,
  2377. "offset": 80,
  2378. "_id": ""
  2379. },
  2380. {
  2381. "__type__": "cc.PrefabInfo",
  2382. "root": {
  2383. "__id__": 1
  2384. },
  2385. "asset": {
  2386. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  2387. },
  2388. "fileId": "aelHMayG1IwpRHKpp4sW3F",
  2389. "sync": false
  2390. },
  2391. {
  2392. "__type__": "cc77atmGeBM4bPWFiQFl7H6",
  2393. "_name": "",
  2394. "_objFlags": 0,
  2395. "node": {
  2396. "__id__": 1
  2397. },
  2398. "_enabled": true,
  2399. "node_display": {
  2400. "__id__": 2
  2401. },
  2402. "node_click": {
  2403. "__id__": 10
  2404. },
  2405. "node_bg": {
  2406. "__id__": 3
  2407. },
  2408. "node_dialog": {
  2409. "__id__": 16
  2410. },
  2411. "node_finger": {
  2412. "__id__": 13
  2413. },
  2414. "node_head": {
  2415. "__id__": 30
  2416. },
  2417. "node_person": {
  2418. "__id__": 32
  2419. },
  2420. "rich_dialog": {
  2421. "__id__": 44
  2422. },
  2423. "rich_dialog1": {
  2424. "__id__": 26
  2425. },
  2426. "node_skip": {
  2427. "__id__": 52
  2428. },
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.Widget",
  2433. "_name": "",
  2434. "_objFlags": 0,
  2435. "node": {
  2436. "__id__": 1
  2437. },
  2438. "_enabled": true,
  2439. "alignMode": 1,
  2440. "_target": null,
  2441. "_alignFlags": 5,
  2442. "_left": 0,
  2443. "_right": 0,
  2444. "_top": 0,
  2445. "_bottom": 0,
  2446. "_verticalCenter": 0,
  2447. "_horizontalCenter": 0,
  2448. "_isAbsLeft": true,
  2449. "_isAbsRight": true,
  2450. "_isAbsTop": true,
  2451. "_isAbsBottom": true,
  2452. "_isAbsHorizontalCenter": true,
  2453. "_isAbsVerticalCenter": true,
  2454. "_originalWidth": 0,
  2455. "_originalHeight": 1334,
  2456. "_id": ""
  2457. },
  2458. {
  2459. "__type__": "cc.PrefabInfo",
  2460. "root": {
  2461. "__id__": 1
  2462. },
  2463. "asset": {
  2464. "__uuid__": "5f53c125-7a14-4ca0-986a-0e0d2d665268"
  2465. },
  2466. "fileId": "",
  2467. "sync": false
  2468. }
  2469. ]