drawCycleScroll.prefab 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "drawCycleScroll",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. },
  25. {
  26. "__id__": 76
  27. },
  28. {
  29. "__id__": 89
  30. }
  31. ],
  32. "_active": true,
  33. "_level": 1,
  34. "_components": [
  35. {
  36. "__id__": 92
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 93
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 679,
  53. "height": 900
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_position": {
  61. "__type__": "cc.Vec3",
  62. "x": 0,
  63. "y": 0,
  64. "z": 0
  65. },
  66. "_scale": {
  67. "__type__": "cc.Vec3",
  68. "x": 1,
  69. "y": 1,
  70. "z": 1
  71. },
  72. "_rotationX": 0,
  73. "_rotationY": 0,
  74. "_quat": {
  75. "__type__": "cc.Quat",
  76. "x": 0,
  77. "y": 0,
  78. "z": 0,
  79. "w": 1
  80. },
  81. "_skewX": 0,
  82. "_skewY": 0,
  83. "_zIndex": 0,
  84. "groupIndex": 0,
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "mask",
  90. "_objFlags": 0,
  91. "_parent": {
  92. "__id__": 1
  93. },
  94. "_children": [],
  95. "_active": true,
  96. "_level": 2,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 4
  103. }
  104. ],
  105. "_prefab": {
  106. "__id__": 5
  107. },
  108. "_opacity": 153,
  109. "_color": {
  110. "__type__": "cc.Color",
  111. "r": 0,
  112. "g": 0,
  113. "b": 0,
  114. "a": 255
  115. },
  116. "_contentSize": {
  117. "__type__": "cc.Size",
  118. "width": 5000,
  119. "height": 10000
  120. },
  121. "_anchorPoint": {
  122. "__type__": "cc.Vec2",
  123. "x": 0.5,
  124. "y": 0.5
  125. },
  126. "_position": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_scale": {
  133. "__type__": "cc.Vec3",
  134. "x": 1,
  135. "y": 1,
  136. "z": 1
  137. },
  138. "_rotationX": 0,
  139. "_rotationY": 0,
  140. "_quat": {
  141. "__type__": "cc.Quat",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0,
  145. "w": 1
  146. },
  147. "_skewX": 0,
  148. "_skewY": 0,
  149. "_zIndex": 0,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Sprite",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_srcBlendFactor": 770,
  162. "_dstBlendFactor": 771,
  163. "_spriteFrame": {
  164. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  165. },
  166. "_type": 0,
  167. "_sizeMode": 0,
  168. "_fillType": 0,
  169. "_fillCenter": {
  170. "__type__": "cc.Vec2",
  171. "x": 0,
  172. "y": 0
  173. },
  174. "_fillStart": 0,
  175. "_fillRange": 0,
  176. "_isTrimmedMode": true,
  177. "_state": 0,
  178. "_atlas": null,
  179. "_id": ""
  180. },
  181. {
  182. "__type__": "cc.BlockInputEvents",
  183. "_name": "",
  184. "_objFlags": 0,
  185. "node": {
  186. "__id__": 2
  187. },
  188. "_enabled": true,
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.PrefabInfo",
  193. "root": {
  194. "__id__": 1
  195. },
  196. "asset": {
  197. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  198. },
  199. "fileId": "afF9DDcRZAQIWln5lPlFIX",
  200. "sync": false
  201. },
  202. {
  203. "__type__": "cc.Node",
  204. "_name": "content",
  205. "_objFlags": 0,
  206. "_parent": {
  207. "__id__": 1
  208. },
  209. "_children": [
  210. {
  211. "__id__": 7
  212. },
  213. {
  214. "__id__": 10
  215. },
  216. {
  217. "__id__": 18
  218. },
  219. {
  220. "__id__": 26
  221. },
  222. {
  223. "__id__": 34
  224. },
  225. {
  226. "__id__": 42
  227. },
  228. {
  229. "__id__": 50
  230. },
  231. {
  232. "__id__": 58
  233. },
  234. {
  235. "__id__": 66
  236. }
  237. ],
  238. "_active": true,
  239. "_level": 2,
  240. "_components": [
  241. {
  242. "__id__": 74
  243. }
  244. ],
  245. "_prefab": {
  246. "__id__": 75
  247. },
  248. "_opacity": 255,
  249. "_color": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_contentSize": {
  257. "__type__": "cc.Size",
  258. "width": 679,
  259. "height": 679
  260. },
  261. "_anchorPoint": {
  262. "__type__": "cc.Vec2",
  263. "x": 0.5,
  264. "y": 0.5
  265. },
  266. "_position": {
  267. "__type__": "cc.Vec3",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0
  271. },
  272. "_scale": {
  273. "__type__": "cc.Vec3",
  274. "x": 1,
  275. "y": 1,
  276. "z": 1
  277. },
  278. "_rotationX": 0,
  279. "_rotationY": 0,
  280. "_quat": {
  281. "__type__": "cc.Quat",
  282. "x": 0,
  283. "y": 0,
  284. "z": 0,
  285. "w": 1
  286. },
  287. "_skewX": 0,
  288. "_skewY": 0,
  289. "_zIndex": 0,
  290. "groupIndex": 0,
  291. "_id": ""
  292. },
  293. {
  294. "__type__": "cc.Node",
  295. "_name": "cycle_bg",
  296. "_objFlags": 0,
  297. "_parent": {
  298. "__id__": 6
  299. },
  300. "_children": [],
  301. "_active": true,
  302. "_level": 3,
  303. "_components": [
  304. {
  305. "__id__": 8
  306. }
  307. ],
  308. "_prefab": {
  309. "__id__": 9
  310. },
  311. "_opacity": 255,
  312. "_color": {
  313. "__type__": "cc.Color",
  314. "r": 255,
  315. "g": 255,
  316. "b": 255,
  317. "a": 255
  318. },
  319. "_contentSize": {
  320. "__type__": "cc.Size",
  321. "width": 679,
  322. "height": 679
  323. },
  324. "_anchorPoint": {
  325. "__type__": "cc.Vec2",
  326. "x": 0.5,
  327. "y": 0.5
  328. },
  329. "_position": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0
  334. },
  335. "_scale": {
  336. "__type__": "cc.Vec3",
  337. "x": 1,
  338. "y": 1,
  339. "z": 1
  340. },
  341. "_rotationX": 0,
  342. "_rotationY": 0,
  343. "_quat": {
  344. "__type__": "cc.Quat",
  345. "x": 0,
  346. "y": 0,
  347. "z": 0,
  348. "w": 1
  349. },
  350. "_skewX": 0,
  351. "_skewY": 0,
  352. "_zIndex": 0,
  353. "groupIndex": 0,
  354. "_id": ""
  355. },
  356. {
  357. "__type__": "cc.Sprite",
  358. "_name": "",
  359. "_objFlags": 0,
  360. "node": {
  361. "__id__": 7
  362. },
  363. "_enabled": true,
  364. "_srcBlendFactor": 770,
  365. "_dstBlendFactor": 771,
  366. "_spriteFrame": {
  367. "__uuid__": "df639d80-0668-45e7-8bbd-1f270b1ad21a"
  368. },
  369. "_type": 0,
  370. "_sizeMode": 1,
  371. "_fillType": 0,
  372. "_fillCenter": {
  373. "__type__": "cc.Vec2",
  374. "x": 0,
  375. "y": 0
  376. },
  377. "_fillStart": 0,
  378. "_fillRange": 0,
  379. "_isTrimmedMode": true,
  380. "_state": 0,
  381. "_atlas": null,
  382. "_id": ""
  383. },
  384. {
  385. "__type__": "cc.PrefabInfo",
  386. "root": {
  387. "__id__": 1
  388. },
  389. "asset": {
  390. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  391. },
  392. "fileId": "fcfi3C94dGQascZlJVIzKV",
  393. "sync": false
  394. },
  395. {
  396. "__type__": "cc.Node",
  397. "_name": "item6",
  398. "_objFlags": 0,
  399. "_parent": {
  400. "__id__": 6
  401. },
  402. "_children": [
  403. {
  404. "__id__": 11
  405. },
  406. {
  407. "__id__": 14
  408. }
  409. ],
  410. "_active": true,
  411. "_level": 3,
  412. "_components": [],
  413. "_prefab": {
  414. "__id__": 17
  415. },
  416. "_opacity": 255,
  417. "_color": {
  418. "__type__": "cc.Color",
  419. "r": 255,
  420. "g": 255,
  421. "b": 255,
  422. "a": 255
  423. },
  424. "_contentSize": {
  425. "__type__": "cc.Size",
  426. "width": 200,
  427. "height": 200
  428. },
  429. "_anchorPoint": {
  430. "__type__": "cc.Vec2",
  431. "x": 0.5,
  432. "y": 0.5
  433. },
  434. "_position": {
  435. "__type__": "cc.Vec3",
  436. "x": -187,
  437. "y": 74,
  438. "z": 0
  439. },
  440. "_scale": {
  441. "__type__": "cc.Vec3",
  442. "x": 1,
  443. "y": 1,
  444. "z": 1
  445. },
  446. "_rotationX": 292.5,
  447. "_rotationY": 292.5,
  448. "_quat": {
  449. "__type__": "cc.Quat",
  450. "x": 0,
  451. "y": 0,
  452. "z": -0.5555702330196022,
  453. "w": -0.8314696123025453
  454. },
  455. "_skewX": 0,
  456. "_skewY": 0,
  457. "_zIndex": 0,
  458. "groupIndex": 0,
  459. "_id": ""
  460. },
  461. {
  462. "__type__": "cc.Node",
  463. "_name": "draw_red",
  464. "_objFlags": 0,
  465. "_parent": {
  466. "__id__": 10
  467. },
  468. "_children": [],
  469. "_active": true,
  470. "_level": 4,
  471. "_components": [
  472. {
  473. "__id__": 12
  474. }
  475. ],
  476. "_prefab": {
  477. "__id__": 13
  478. },
  479. "_opacity": 255,
  480. "_color": {
  481. "__type__": "cc.Color",
  482. "r": 255,
  483. "g": 255,
  484. "b": 255,
  485. "a": 255
  486. },
  487. "_contentSize": {
  488. "__type__": "cc.Size",
  489. "width": 55,
  490. "height": 69
  491. },
  492. "_anchorPoint": {
  493. "__type__": "cc.Vec2",
  494. "x": 0.5,
  495. "y": 0.5
  496. },
  497. "_position": {
  498. "__type__": "cc.Vec3",
  499. "x": 0,
  500. "y": 22,
  501. "z": 0
  502. },
  503. "_scale": {
  504. "__type__": "cc.Vec3",
  505. "x": 1,
  506. "y": 1,
  507. "z": 1
  508. },
  509. "_rotationX": 0,
  510. "_rotationY": 0,
  511. "_quat": {
  512. "__type__": "cc.Quat",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0,
  516. "w": 1
  517. },
  518. "_skewX": 0,
  519. "_skewY": 0,
  520. "_zIndex": 0,
  521. "groupIndex": 0,
  522. "_id": ""
  523. },
  524. {
  525. "__type__": "cc.Sprite",
  526. "_name": "",
  527. "_objFlags": 0,
  528. "node": {
  529. "__id__": 11
  530. },
  531. "_enabled": true,
  532. "_srcBlendFactor": 770,
  533. "_dstBlendFactor": 771,
  534. "_spriteFrame": {
  535. "__uuid__": "a48000a2-8801-41c6-9779-7e01eeeec535"
  536. },
  537. "_type": 0,
  538. "_sizeMode": 1,
  539. "_fillType": 0,
  540. "_fillCenter": {
  541. "__type__": "cc.Vec2",
  542. "x": 0,
  543. "y": 0
  544. },
  545. "_fillStart": 0,
  546. "_fillRange": 0,
  547. "_isTrimmedMode": true,
  548. "_state": 0,
  549. "_atlas": null,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.PrefabInfo",
  554. "root": {
  555. "__id__": 1
  556. },
  557. "asset": {
  558. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  559. },
  560. "fileId": "30MkZywadDPqpH9NoG00Tf",
  561. "sync": false
  562. },
  563. {
  564. "__type__": "cc.Node",
  565. "_name": "richtext",
  566. "_objFlags": 0,
  567. "_parent": {
  568. "__id__": 10
  569. },
  570. "_children": [],
  571. "_active": true,
  572. "_level": 4,
  573. "_components": [
  574. {
  575. "__id__": 15
  576. }
  577. ],
  578. "_prefab": {
  579. "__id__": 16
  580. },
  581. "_opacity": 255,
  582. "_color": {
  583. "__type__": "cc.Color",
  584. "r": 255,
  585. "g": 255,
  586. "b": 255,
  587. "a": 255
  588. },
  589. "_contentSize": {
  590. "__type__": "cc.Size",
  591. "width": 88,
  592. "height": 22
  593. },
  594. "_anchorPoint": {
  595. "__type__": "cc.Vec2",
  596. "x": 0,
  597. "y": 1
  598. },
  599. "_position": {
  600. "__type__": "cc.Vec3",
  601. "x": -47,
  602. "y": -25,
  603. "z": 0
  604. },
  605. "_scale": {
  606. "__type__": "cc.Vec3",
  607. "x": 1,
  608. "y": 1,
  609. "z": 1
  610. },
  611. "_rotationX": 0,
  612. "_rotationY": 0,
  613. "_quat": {
  614. "__type__": "cc.Quat",
  615. "x": 0,
  616. "y": 0,
  617. "z": 0,
  618. "w": 1
  619. },
  620. "_skewX": 0,
  621. "_skewY": 0,
  622. "_zIndex": 0,
  623. "groupIndex": 0,
  624. "_id": ""
  625. },
  626. {
  627. "__type__": "cc.RichText",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "node": {
  631. "__id__": 14
  632. },
  633. "_enabled": true,
  634. "_N$string": "",
  635. "_N$horizontalAlign": 1,
  636. "_N$fontSize": 20,
  637. "_N$font": null,
  638. "_N$maxWidth": 88,
  639. "_N$lineHeight": 22,
  640. "_N$imageAtlas": null,
  641. "_N$handleTouchEvent": true,
  642. "_id": ""
  643. },
  644. {
  645. "__type__": "cc.PrefabInfo",
  646. "root": {
  647. "__id__": 1
  648. },
  649. "asset": {
  650. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  651. },
  652. "fileId": "06zIFadHdE0oitC/30iDZy",
  653. "sync": false
  654. },
  655. {
  656. "__type__": "cc.PrefabInfo",
  657. "root": {
  658. "__id__": 1
  659. },
  660. "asset": {
  661. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  662. },
  663. "fileId": "62OVBHIO5HHoh0kbWzqHjF",
  664. "sync": false
  665. },
  666. {
  667. "__type__": "cc.Node",
  668. "_name": "item0",
  669. "_objFlags": 0,
  670. "_parent": {
  671. "__id__": 6
  672. },
  673. "_children": [
  674. {
  675. "__id__": 19
  676. },
  677. {
  678. "__id__": 22
  679. }
  680. ],
  681. "_active": true,
  682. "_level": 3,
  683. "_components": [],
  684. "_prefab": {
  685. "__id__": 25
  686. },
  687. "_opacity": 255,
  688. "_color": {
  689. "__type__": "cc.Color",
  690. "r": 255,
  691. "g": 255,
  692. "b": 255,
  693. "a": 255
  694. },
  695. "_contentSize": {
  696. "__type__": "cc.Size",
  697. "width": 200,
  698. "height": 200
  699. },
  700. "_anchorPoint": {
  701. "__type__": "cc.Vec2",
  702. "x": 0.5,
  703. "y": 0.5
  704. },
  705. "_position": {
  706. "__type__": "cc.Vec3",
  707. "x": 83,
  708. "y": 189,
  709. "z": 0
  710. },
  711. "_scale": {
  712. "__type__": "cc.Vec3",
  713. "x": 1,
  714. "y": 1,
  715. "z": 1
  716. },
  717. "_rotationX": 22.5,
  718. "_rotationY": 22.5,
  719. "_quat": {
  720. "__type__": "cc.Quat",
  721. "x": 0,
  722. "y": 0,
  723. "z": -0.19509032201612825,
  724. "w": 0.9807852804032304
  725. },
  726. "_skewX": 0,
  727. "_skewY": 0,
  728. "_zIndex": 0,
  729. "groupIndex": 0,
  730. "_id": ""
  731. },
  732. {
  733. "__type__": "cc.Node",
  734. "_name": "draw_red",
  735. "_objFlags": 0,
  736. "_parent": {
  737. "__id__": 18
  738. },
  739. "_children": [],
  740. "_active": true,
  741. "_level": 4,
  742. "_components": [
  743. {
  744. "__id__": 20
  745. }
  746. ],
  747. "_prefab": {
  748. "__id__": 21
  749. },
  750. "_opacity": 255,
  751. "_color": {
  752. "__type__": "cc.Color",
  753. "r": 255,
  754. "g": 255,
  755. "b": 255,
  756. "a": 255
  757. },
  758. "_contentSize": {
  759. "__type__": "cc.Size",
  760. "width": 48,
  761. "height": 62
  762. },
  763. "_anchorPoint": {
  764. "__type__": "cc.Vec2",
  765. "x": 0.5,
  766. "y": 0.5
  767. },
  768. "_position": {
  769. "__type__": "cc.Vec3",
  770. "x": 0,
  771. "y": 22,
  772. "z": 0
  773. },
  774. "_scale": {
  775. "__type__": "cc.Vec3",
  776. "x": 1,
  777. "y": 1,
  778. "z": 1
  779. },
  780. "_rotationX": 0,
  781. "_rotationY": 0,
  782. "_quat": {
  783. "__type__": "cc.Quat",
  784. "x": 0,
  785. "y": 0,
  786. "z": 0,
  787. "w": 1
  788. },
  789. "_skewX": 0,
  790. "_skewY": 0,
  791. "_zIndex": 0,
  792. "groupIndex": 0,
  793. "_id": ""
  794. },
  795. {
  796. "__type__": "cc.Sprite",
  797. "_name": "",
  798. "_objFlags": 0,
  799. "node": {
  800. "__id__": 19
  801. },
  802. "_enabled": true,
  803. "_srcBlendFactor": 770,
  804. "_dstBlendFactor": 771,
  805. "_spriteFrame": {
  806. "__uuid__": "1f52c3b4-77c6-4e84-9085-24b1edfe7e5f"
  807. },
  808. "_type": 0,
  809. "_sizeMode": 1,
  810. "_fillType": 0,
  811. "_fillCenter": {
  812. "__type__": "cc.Vec2",
  813. "x": 0,
  814. "y": 0
  815. },
  816. "_fillStart": 0,
  817. "_fillRange": 0,
  818. "_isTrimmedMode": true,
  819. "_state": 0,
  820. "_atlas": null,
  821. "_id": ""
  822. },
  823. {
  824. "__type__": "cc.PrefabInfo",
  825. "root": {
  826. "__id__": 1
  827. },
  828. "asset": {
  829. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  830. },
  831. "fileId": "76ujDqb7tM6oFs47tj/Dl5",
  832. "sync": false
  833. },
  834. {
  835. "__type__": "cc.Node",
  836. "_name": "richtext",
  837. "_objFlags": 0,
  838. "_parent": {
  839. "__id__": 18
  840. },
  841. "_children": [],
  842. "_active": true,
  843. "_level": 4,
  844. "_components": [
  845. {
  846. "__id__": 23
  847. }
  848. ],
  849. "_prefab": {
  850. "__id__": 24
  851. },
  852. "_opacity": 255,
  853. "_color": {
  854. "__type__": "cc.Color",
  855. "r": 255,
  856. "g": 255,
  857. "b": 255,
  858. "a": 255
  859. },
  860. "_contentSize": {
  861. "__type__": "cc.Size",
  862. "width": 88,
  863. "height": 22
  864. },
  865. "_anchorPoint": {
  866. "__type__": "cc.Vec2",
  867. "x": 0,
  868. "y": 1
  869. },
  870. "_position": {
  871. "__type__": "cc.Vec3",
  872. "x": -45,
  873. "y": -24,
  874. "z": 0
  875. },
  876. "_scale": {
  877. "__type__": "cc.Vec3",
  878. "x": 1,
  879. "y": 1,
  880. "z": 1
  881. },
  882. "_rotationX": 0,
  883. "_rotationY": 0,
  884. "_quat": {
  885. "__type__": "cc.Quat",
  886. "x": 0,
  887. "y": 0,
  888. "z": 0,
  889. "w": 1
  890. },
  891. "_skewX": 0,
  892. "_skewY": 0,
  893. "_zIndex": 0,
  894. "groupIndex": 0,
  895. "_id": ""
  896. },
  897. {
  898. "__type__": "cc.RichText",
  899. "_name": "",
  900. "_objFlags": 0,
  901. "node": {
  902. "__id__": 22
  903. },
  904. "_enabled": true,
  905. "_N$string": "",
  906. "_N$horizontalAlign": 1,
  907. "_N$fontSize": 20,
  908. "_N$font": null,
  909. "_N$maxWidth": 88,
  910. "_N$lineHeight": 22,
  911. "_N$imageAtlas": null,
  912. "_N$handleTouchEvent": true,
  913. "_id": ""
  914. },
  915. {
  916. "__type__": "cc.PrefabInfo",
  917. "root": {
  918. "__id__": 1
  919. },
  920. "asset": {
  921. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  922. },
  923. "fileId": "37f7FsQR5F5pLLXB8AVS0t",
  924. "sync": false
  925. },
  926. {
  927. "__type__": "cc.PrefabInfo",
  928. "root": {
  929. "__id__": 1
  930. },
  931. "asset": {
  932. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  933. },
  934. "fileId": "07YDaN/RJPc5V0QvAvYO/6",
  935. "sync": false
  936. },
  937. {
  938. "__type__": "cc.Node",
  939. "_name": "item5",
  940. "_objFlags": 0,
  941. "_parent": {
  942. "__id__": 6
  943. },
  944. "_children": [
  945. {
  946. "__id__": 27
  947. },
  948. {
  949. "__id__": 30
  950. }
  951. ],
  952. "_active": true,
  953. "_level": 3,
  954. "_components": [],
  955. "_prefab": {
  956. "__id__": 33
  957. },
  958. "_opacity": 255,
  959. "_color": {
  960. "__type__": "cc.Color",
  961. "r": 255,
  962. "g": 255,
  963. "b": 255,
  964. "a": 255
  965. },
  966. "_contentSize": {
  967. "__type__": "cc.Size",
  968. "width": 200,
  969. "height": 200
  970. },
  971. "_anchorPoint": {
  972. "__type__": "cc.Vec2",
  973. "x": 0.5,
  974. "y": 0.5
  975. },
  976. "_position": {
  977. "__type__": "cc.Vec3",
  978. "x": -170,
  979. "y": -71,
  980. "z": 0
  981. },
  982. "_scale": {
  983. "__type__": "cc.Vec3",
  984. "x": 1,
  985. "y": 1,
  986. "z": 1
  987. },
  988. "_rotationX": 247.5,
  989. "_rotationY": 247.5,
  990. "_quat": {
  991. "__type__": "cc.Quat",
  992. "x": 0,
  993. "y": 0,
  994. "z": -0.8314696123025451,
  995. "w": -0.5555702330196023
  996. },
  997. "_skewX": 0,
  998. "_skewY": 0,
  999. "_zIndex": 0,
  1000. "groupIndex": 0,
  1001. "_id": ""
  1002. },
  1003. {
  1004. "__type__": "cc.Node",
  1005. "_name": "draw_red",
  1006. "_objFlags": 0,
  1007. "_parent": {
  1008. "__id__": 26
  1009. },
  1010. "_children": [],
  1011. "_active": true,
  1012. "_level": 4,
  1013. "_components": [
  1014. {
  1015. "__id__": 28
  1016. }
  1017. ],
  1018. "_prefab": {
  1019. "__id__": 29
  1020. },
  1021. "_opacity": 255,
  1022. "_color": {
  1023. "__type__": "cc.Color",
  1024. "r": 255,
  1025. "g": 255,
  1026. "b": 255,
  1027. "a": 255
  1028. },
  1029. "_contentSize": {
  1030. "__type__": "cc.Size",
  1031. "width": 64,
  1032. "height": 57
  1033. },
  1034. "_anchorPoint": {
  1035. "__type__": "cc.Vec2",
  1036. "x": 0.5,
  1037. "y": 0.5
  1038. },
  1039. "_position": {
  1040. "__type__": "cc.Vec3",
  1041. "x": 0,
  1042. "y": 22,
  1043. "z": 0
  1044. },
  1045. "_scale": {
  1046. "__type__": "cc.Vec3",
  1047. "x": 1,
  1048. "y": 1,
  1049. "z": 1
  1050. },
  1051. "_rotationX": 0,
  1052. "_rotationY": 0,
  1053. "_quat": {
  1054. "__type__": "cc.Quat",
  1055. "x": 0,
  1056. "y": 0,
  1057. "z": 0,
  1058. "w": 1
  1059. },
  1060. "_skewX": 0,
  1061. "_skewY": 0,
  1062. "_zIndex": 0,
  1063. "groupIndex": 0,
  1064. "_id": ""
  1065. },
  1066. {
  1067. "__type__": "cc.Sprite",
  1068. "_name": "",
  1069. "_objFlags": 0,
  1070. "node": {
  1071. "__id__": 27
  1072. },
  1073. "_enabled": true,
  1074. "_srcBlendFactor": 770,
  1075. "_dstBlendFactor": 771,
  1076. "_spriteFrame": {
  1077. "__uuid__": "e65e9ee1-913b-4591-b5a3-ec439ec94820"
  1078. },
  1079. "_type": 0,
  1080. "_sizeMode": 1,
  1081. "_fillType": 0,
  1082. "_fillCenter": {
  1083. "__type__": "cc.Vec2",
  1084. "x": 0,
  1085. "y": 0
  1086. },
  1087. "_fillStart": 0,
  1088. "_fillRange": 0,
  1089. "_isTrimmedMode": true,
  1090. "_state": 0,
  1091. "_atlas": null,
  1092. "_id": ""
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1101. },
  1102. "fileId": "a9nquUvfRJ/IXFfi9nQym5",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.Node",
  1107. "_name": "richtext",
  1108. "_objFlags": 0,
  1109. "_parent": {
  1110. "__id__": 26
  1111. },
  1112. "_children": [],
  1113. "_active": true,
  1114. "_level": 4,
  1115. "_components": [
  1116. {
  1117. "__id__": 31
  1118. }
  1119. ],
  1120. "_prefab": {
  1121. "__id__": 32
  1122. },
  1123. "_opacity": 255,
  1124. "_color": {
  1125. "__type__": "cc.Color",
  1126. "r": 255,
  1127. "g": 255,
  1128. "b": 255,
  1129. "a": 255
  1130. },
  1131. "_contentSize": {
  1132. "__type__": "cc.Size",
  1133. "width": 88,
  1134. "height": 22
  1135. },
  1136. "_anchorPoint": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0,
  1139. "y": 1
  1140. },
  1141. "_position": {
  1142. "__type__": "cc.Vec3",
  1143. "x": -53,
  1144. "y": -24,
  1145. "z": 0
  1146. },
  1147. "_scale": {
  1148. "__type__": "cc.Vec3",
  1149. "x": 1,
  1150. "y": 1,
  1151. "z": 1
  1152. },
  1153. "_rotationX": 0,
  1154. "_rotationY": 0,
  1155. "_quat": {
  1156. "__type__": "cc.Quat",
  1157. "x": 0,
  1158. "y": 0,
  1159. "z": 0,
  1160. "w": 1
  1161. },
  1162. "_skewX": 0,
  1163. "_skewY": 0,
  1164. "_zIndex": 0,
  1165. "groupIndex": 0,
  1166. "_id": ""
  1167. },
  1168. {
  1169. "__type__": "cc.RichText",
  1170. "_name": "",
  1171. "_objFlags": 0,
  1172. "node": {
  1173. "__id__": 30
  1174. },
  1175. "_enabled": true,
  1176. "_N$string": "",
  1177. "_N$horizontalAlign": 1,
  1178. "_N$fontSize": 20,
  1179. "_N$font": null,
  1180. "_N$maxWidth": 88,
  1181. "_N$lineHeight": 22,
  1182. "_N$imageAtlas": null,
  1183. "_N$handleTouchEvent": true,
  1184. "_id": ""
  1185. },
  1186. {
  1187. "__type__": "cc.PrefabInfo",
  1188. "root": {
  1189. "__id__": 1
  1190. },
  1191. "asset": {
  1192. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1193. },
  1194. "fileId": "82EjJ7PcpDc5T4AYJd8mdI",
  1195. "sync": false
  1196. },
  1197. {
  1198. "__type__": "cc.PrefabInfo",
  1199. "root": {
  1200. "__id__": 1
  1201. },
  1202. "asset": {
  1203. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1204. },
  1205. "fileId": "6ciHcKuzNHJK40OnBKftFr",
  1206. "sync": false
  1207. },
  1208. {
  1209. "__type__": "cc.Node",
  1210. "_name": "item4",
  1211. "_objFlags": 0,
  1212. "_parent": {
  1213. "__id__": 6
  1214. },
  1215. "_children": [
  1216. {
  1217. "__id__": 35
  1218. },
  1219. {
  1220. "__id__": 38
  1221. }
  1222. ],
  1223. "_active": true,
  1224. "_level": 3,
  1225. "_components": [],
  1226. "_prefab": {
  1227. "__id__": 41
  1228. },
  1229. "_opacity": 255,
  1230. "_color": {
  1231. "__type__": "cc.Color",
  1232. "r": 255,
  1233. "g": 255,
  1234. "b": 255,
  1235. "a": 255
  1236. },
  1237. "_contentSize": {
  1238. "__type__": "cc.Size",
  1239. "width": 200,
  1240. "height": 200
  1241. },
  1242. "_anchorPoint": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0.5,
  1245. "y": 0.5
  1246. },
  1247. "_position": {
  1248. "__type__": "cc.Vec3",
  1249. "x": -72,
  1250. "y": -178,
  1251. "z": 0
  1252. },
  1253. "_scale": {
  1254. "__type__": "cc.Vec3",
  1255. "x": 1,
  1256. "y": 1,
  1257. "z": 1
  1258. },
  1259. "_rotationX": 202.5,
  1260. "_rotationY": 202.5,
  1261. "_quat": {
  1262. "__type__": "cc.Quat",
  1263. "x": 0,
  1264. "y": 0,
  1265. "z": -0.9807852804032304,
  1266. "w": -0.1950903220161282
  1267. },
  1268. "_skewX": 0,
  1269. "_skewY": 0,
  1270. "_zIndex": 0,
  1271. "groupIndex": 0,
  1272. "_id": ""
  1273. },
  1274. {
  1275. "__type__": "cc.Node",
  1276. "_name": "draw_red",
  1277. "_objFlags": 0,
  1278. "_parent": {
  1279. "__id__": 34
  1280. },
  1281. "_children": [],
  1282. "_active": true,
  1283. "_level": 4,
  1284. "_components": [
  1285. {
  1286. "__id__": 36
  1287. }
  1288. ],
  1289. "_prefab": {
  1290. "__id__": 37
  1291. },
  1292. "_opacity": 255,
  1293. "_color": {
  1294. "__type__": "cc.Color",
  1295. "r": 255,
  1296. "g": 255,
  1297. "b": 255,
  1298. "a": 255
  1299. },
  1300. "_contentSize": {
  1301. "__type__": "cc.Size",
  1302. "width": 55,
  1303. "height": 69
  1304. },
  1305. "_anchorPoint": {
  1306. "__type__": "cc.Vec2",
  1307. "x": 0.5,
  1308. "y": 0.5
  1309. },
  1310. "_position": {
  1311. "__type__": "cc.Vec3",
  1312. "x": 0,
  1313. "y": 22,
  1314. "z": 0
  1315. },
  1316. "_scale": {
  1317. "__type__": "cc.Vec3",
  1318. "x": 1,
  1319. "y": 1,
  1320. "z": 1
  1321. },
  1322. "_rotationX": 0,
  1323. "_rotationY": 0,
  1324. "_quat": {
  1325. "__type__": "cc.Quat",
  1326. "x": 0,
  1327. "y": 0,
  1328. "z": 0,
  1329. "w": 1
  1330. },
  1331. "_skewX": 0,
  1332. "_skewY": 0,
  1333. "_zIndex": 0,
  1334. "groupIndex": 0,
  1335. "_id": ""
  1336. },
  1337. {
  1338. "__type__": "cc.Sprite",
  1339. "_name": "",
  1340. "_objFlags": 0,
  1341. "node": {
  1342. "__id__": 35
  1343. },
  1344. "_enabled": true,
  1345. "_srcBlendFactor": 770,
  1346. "_dstBlendFactor": 771,
  1347. "_spriteFrame": {
  1348. "__uuid__": "a48000a2-8801-41c6-9779-7e01eeeec535"
  1349. },
  1350. "_type": 0,
  1351. "_sizeMode": 1,
  1352. "_fillType": 0,
  1353. "_fillCenter": {
  1354. "__type__": "cc.Vec2",
  1355. "x": 0,
  1356. "y": 0
  1357. },
  1358. "_fillStart": 0,
  1359. "_fillRange": 0,
  1360. "_isTrimmedMode": true,
  1361. "_state": 0,
  1362. "_atlas": null,
  1363. "_id": ""
  1364. },
  1365. {
  1366. "__type__": "cc.PrefabInfo",
  1367. "root": {
  1368. "__id__": 1
  1369. },
  1370. "asset": {
  1371. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1372. },
  1373. "fileId": "2aupBZnJJDILCQEsDEBYl5",
  1374. "sync": false
  1375. },
  1376. {
  1377. "__type__": "cc.Node",
  1378. "_name": "richtext",
  1379. "_objFlags": 0,
  1380. "_parent": {
  1381. "__id__": 34
  1382. },
  1383. "_children": [],
  1384. "_active": true,
  1385. "_level": 4,
  1386. "_components": [
  1387. {
  1388. "__id__": 39
  1389. }
  1390. ],
  1391. "_prefab": {
  1392. "__id__": 40
  1393. },
  1394. "_opacity": 255,
  1395. "_color": {
  1396. "__type__": "cc.Color",
  1397. "r": 255,
  1398. "g": 255,
  1399. "b": 255,
  1400. "a": 255
  1401. },
  1402. "_contentSize": {
  1403. "__type__": "cc.Size",
  1404. "width": 88,
  1405. "height": 22
  1406. },
  1407. "_anchorPoint": {
  1408. "__type__": "cc.Vec2",
  1409. "x": 0,
  1410. "y": 1
  1411. },
  1412. "_position": {
  1413. "__type__": "cc.Vec3",
  1414. "x": -42,
  1415. "y": -24,
  1416. "z": 0
  1417. },
  1418. "_scale": {
  1419. "__type__": "cc.Vec3",
  1420. "x": 1,
  1421. "y": 1,
  1422. "z": 1
  1423. },
  1424. "_rotationX": 0,
  1425. "_rotationY": 0,
  1426. "_quat": {
  1427. "__type__": "cc.Quat",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0,
  1431. "w": 1
  1432. },
  1433. "_skewX": 0,
  1434. "_skewY": 0,
  1435. "_zIndex": 0,
  1436. "groupIndex": 0,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.RichText",
  1441. "_name": "",
  1442. "_objFlags": 0,
  1443. "node": {
  1444. "__id__": 38
  1445. },
  1446. "_enabled": true,
  1447. "_N$string": "",
  1448. "_N$horizontalAlign": 1,
  1449. "_N$fontSize": 20,
  1450. "_N$font": null,
  1451. "_N$maxWidth": 88,
  1452. "_N$lineHeight": 22,
  1453. "_N$imageAtlas": null,
  1454. "_N$handleTouchEvent": true,
  1455. "_id": ""
  1456. },
  1457. {
  1458. "__type__": "cc.PrefabInfo",
  1459. "root": {
  1460. "__id__": 1
  1461. },
  1462. "asset": {
  1463. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1464. },
  1465. "fileId": "29oxF+eitPXYB+DAeAuO85",
  1466. "sync": false
  1467. },
  1468. {
  1469. "__type__": "cc.PrefabInfo",
  1470. "root": {
  1471. "__id__": 1
  1472. },
  1473. "asset": {
  1474. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1475. },
  1476. "fileId": "23n347/QJIfKZMr7EyxXKf",
  1477. "sync": false
  1478. },
  1479. {
  1480. "__type__": "cc.Node",
  1481. "_name": "item3",
  1482. "_objFlags": 0,
  1483. "_parent": {
  1484. "__id__": 6
  1485. },
  1486. "_children": [
  1487. {
  1488. "__id__": 43
  1489. },
  1490. {
  1491. "__id__": 46
  1492. }
  1493. ],
  1494. "_active": true,
  1495. "_level": 3,
  1496. "_components": [],
  1497. "_prefab": {
  1498. "__id__": 49
  1499. },
  1500. "_opacity": 255,
  1501. "_color": {
  1502. "__type__": "cc.Color",
  1503. "r": 255,
  1504. "g": 255,
  1505. "b": 255,
  1506. "a": 255
  1507. },
  1508. "_contentSize": {
  1509. "__type__": "cc.Size",
  1510. "width": 200,
  1511. "height": 200
  1512. },
  1513. "_anchorPoint": {
  1514. "__type__": "cc.Vec2",
  1515. "x": 0.5,
  1516. "y": 0.5
  1517. },
  1518. "_position": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 73,
  1521. "y": -176,
  1522. "z": 0
  1523. },
  1524. "_scale": {
  1525. "__type__": "cc.Vec3",
  1526. "x": 1,
  1527. "y": 1,
  1528. "z": 1
  1529. },
  1530. "_rotationX": 157.5,
  1531. "_rotationY": 157.5,
  1532. "_quat": {
  1533. "__type__": "cc.Quat",
  1534. "x": 0,
  1535. "y": 0,
  1536. "z": -0.9807852804032304,
  1537. "w": 0.19509032201612833
  1538. },
  1539. "_skewX": 0,
  1540. "_skewY": 0,
  1541. "_zIndex": 0,
  1542. "groupIndex": 0,
  1543. "_id": ""
  1544. },
  1545. {
  1546. "__type__": "cc.Node",
  1547. "_name": "draw_red",
  1548. "_objFlags": 0,
  1549. "_parent": {
  1550. "__id__": 42
  1551. },
  1552. "_children": [],
  1553. "_active": true,
  1554. "_level": 4,
  1555. "_components": [
  1556. {
  1557. "__id__": 44
  1558. }
  1559. ],
  1560. "_prefab": {
  1561. "__id__": 45
  1562. },
  1563. "_opacity": 255,
  1564. "_color": {
  1565. "__type__": "cc.Color",
  1566. "r": 255,
  1567. "g": 255,
  1568. "b": 255,
  1569. "a": 255
  1570. },
  1571. "_contentSize": {
  1572. "__type__": "cc.Size",
  1573. "width": 54,
  1574. "height": 66
  1575. },
  1576. "_anchorPoint": {
  1577. "__type__": "cc.Vec2",
  1578. "x": 0.5,
  1579. "y": 0.5
  1580. },
  1581. "_position": {
  1582. "__type__": "cc.Vec3",
  1583. "x": 0,
  1584. "y": 22,
  1585. "z": 0
  1586. },
  1587. "_scale": {
  1588. "__type__": "cc.Vec3",
  1589. "x": 1,
  1590. "y": 1,
  1591. "z": 1
  1592. },
  1593. "_rotationX": 0,
  1594. "_rotationY": 0,
  1595. "_quat": {
  1596. "__type__": "cc.Quat",
  1597. "x": 0,
  1598. "y": 0,
  1599. "z": 0,
  1600. "w": 1
  1601. },
  1602. "_skewX": 0,
  1603. "_skewY": 0,
  1604. "_zIndex": 0,
  1605. "groupIndex": 0,
  1606. "_id": ""
  1607. },
  1608. {
  1609. "__type__": "cc.Sprite",
  1610. "_name": "",
  1611. "_objFlags": 0,
  1612. "node": {
  1613. "__id__": 43
  1614. },
  1615. "_enabled": true,
  1616. "_srcBlendFactor": 770,
  1617. "_dstBlendFactor": 771,
  1618. "_spriteFrame": {
  1619. "__uuid__": "45ae3a06-fd93-41b2-abd7-694a89c24627"
  1620. },
  1621. "_type": 0,
  1622. "_sizeMode": 1,
  1623. "_fillType": 0,
  1624. "_fillCenter": {
  1625. "__type__": "cc.Vec2",
  1626. "x": 0,
  1627. "y": 0
  1628. },
  1629. "_fillStart": 0,
  1630. "_fillRange": 0,
  1631. "_isTrimmedMode": true,
  1632. "_state": 0,
  1633. "_atlas": null,
  1634. "_id": ""
  1635. },
  1636. {
  1637. "__type__": "cc.PrefabInfo",
  1638. "root": {
  1639. "__id__": 1
  1640. },
  1641. "asset": {
  1642. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1643. },
  1644. "fileId": "91PwUuf/1Ix7l33+r2MUhW",
  1645. "sync": false
  1646. },
  1647. {
  1648. "__type__": "cc.Node",
  1649. "_name": "richtext",
  1650. "_objFlags": 0,
  1651. "_parent": {
  1652. "__id__": 42
  1653. },
  1654. "_children": [],
  1655. "_active": true,
  1656. "_level": 4,
  1657. "_components": [
  1658. {
  1659. "__id__": 47
  1660. }
  1661. ],
  1662. "_prefab": {
  1663. "__id__": 48
  1664. },
  1665. "_opacity": 255,
  1666. "_color": {
  1667. "__type__": "cc.Color",
  1668. "r": 255,
  1669. "g": 255,
  1670. "b": 255,
  1671. "a": 255
  1672. },
  1673. "_contentSize": {
  1674. "__type__": "cc.Size",
  1675. "width": 88,
  1676. "height": 22
  1677. },
  1678. "_anchorPoint": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0,
  1681. "y": 1
  1682. },
  1683. "_position": {
  1684. "__type__": "cc.Vec3",
  1685. "x": -42,
  1686. "y": -24,
  1687. "z": 0
  1688. },
  1689. "_scale": {
  1690. "__type__": "cc.Vec3",
  1691. "x": 1,
  1692. "y": 1,
  1693. "z": 1
  1694. },
  1695. "_rotationX": 0,
  1696. "_rotationY": 0,
  1697. "_quat": {
  1698. "__type__": "cc.Quat",
  1699. "x": 0,
  1700. "y": 0,
  1701. "z": 0,
  1702. "w": 1
  1703. },
  1704. "_skewX": 0,
  1705. "_skewY": 0,
  1706. "_zIndex": 0,
  1707. "groupIndex": 0,
  1708. "_id": ""
  1709. },
  1710. {
  1711. "__type__": "cc.RichText",
  1712. "_name": "",
  1713. "_objFlags": 0,
  1714. "node": {
  1715. "__id__": 46
  1716. },
  1717. "_enabled": true,
  1718. "_N$string": "",
  1719. "_N$horizontalAlign": 1,
  1720. "_N$fontSize": 20,
  1721. "_N$font": null,
  1722. "_N$maxWidth": 88,
  1723. "_N$lineHeight": 22,
  1724. "_N$imageAtlas": null,
  1725. "_N$handleTouchEvent": true,
  1726. "_id": ""
  1727. },
  1728. {
  1729. "__type__": "cc.PrefabInfo",
  1730. "root": {
  1731. "__id__": 1
  1732. },
  1733. "asset": {
  1734. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1735. },
  1736. "fileId": "16Ka1mKsNJUKuh16V06pC0",
  1737. "sync": false
  1738. },
  1739. {
  1740. "__type__": "cc.PrefabInfo",
  1741. "root": {
  1742. "__id__": 1
  1743. },
  1744. "asset": {
  1745. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1746. },
  1747. "fileId": "b6aFdPiTZL7LMasgBke4+7",
  1748. "sync": false
  1749. },
  1750. {
  1751. "__type__": "cc.Node",
  1752. "_name": "item2",
  1753. "_objFlags": 0,
  1754. "_parent": {
  1755. "__id__": 6
  1756. },
  1757. "_children": [
  1758. {
  1759. "__id__": 51
  1760. },
  1761. {
  1762. "__id__": 54
  1763. }
  1764. ],
  1765. "_active": true,
  1766. "_level": 3,
  1767. "_components": [],
  1768. "_prefab": {
  1769. "__id__": 57
  1770. },
  1771. "_opacity": 255,
  1772. "_color": {
  1773. "__type__": "cc.Color",
  1774. "r": 255,
  1775. "g": 255,
  1776. "b": 255,
  1777. "a": 255
  1778. },
  1779. "_contentSize": {
  1780. "__type__": "cc.Size",
  1781. "width": 200,
  1782. "height": 200
  1783. },
  1784. "_anchorPoint": {
  1785. "__type__": "cc.Vec2",
  1786. "x": 0.5,
  1787. "y": 0.5
  1788. },
  1789. "_position": {
  1790. "__type__": "cc.Vec3",
  1791. "x": 182,
  1792. "y": -76,
  1793. "z": 0
  1794. },
  1795. "_scale": {
  1796. "__type__": "cc.Vec3",
  1797. "x": 1,
  1798. "y": 1,
  1799. "z": 1
  1800. },
  1801. "_rotationX": 112.5,
  1802. "_rotationY": 112.5,
  1803. "_quat": {
  1804. "__type__": "cc.Quat",
  1805. "x": 0,
  1806. "y": 0,
  1807. "z": -0.8314696123025452,
  1808. "w": 0.5555702330196023
  1809. },
  1810. "_skewX": 0,
  1811. "_skewY": 0,
  1812. "_zIndex": 0,
  1813. "groupIndex": 0,
  1814. "_id": ""
  1815. },
  1816. {
  1817. "__type__": "cc.Node",
  1818. "_name": "draw_red",
  1819. "_objFlags": 0,
  1820. "_parent": {
  1821. "__id__": 50
  1822. },
  1823. "_children": [],
  1824. "_active": true,
  1825. "_level": 4,
  1826. "_components": [
  1827. {
  1828. "__id__": 52
  1829. }
  1830. ],
  1831. "_prefab": {
  1832. "__id__": 53
  1833. },
  1834. "_opacity": 255,
  1835. "_color": {
  1836. "__type__": "cc.Color",
  1837. "r": 255,
  1838. "g": 255,
  1839. "b": 255,
  1840. "a": 255
  1841. },
  1842. "_contentSize": {
  1843. "__type__": "cc.Size",
  1844. "width": 55,
  1845. "height": 69
  1846. },
  1847. "_anchorPoint": {
  1848. "__type__": "cc.Vec2",
  1849. "x": 0.5,
  1850. "y": 0.5
  1851. },
  1852. "_position": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 0,
  1855. "y": 22,
  1856. "z": 0
  1857. },
  1858. "_scale": {
  1859. "__type__": "cc.Vec3",
  1860. "x": 1,
  1861. "y": 1,
  1862. "z": 1
  1863. },
  1864. "_rotationX": 0,
  1865. "_rotationY": 0,
  1866. "_quat": {
  1867. "__type__": "cc.Quat",
  1868. "x": 0,
  1869. "y": 0,
  1870. "z": 0,
  1871. "w": 1
  1872. },
  1873. "_skewX": 0,
  1874. "_skewY": 0,
  1875. "_zIndex": 0,
  1876. "groupIndex": 0,
  1877. "_id": ""
  1878. },
  1879. {
  1880. "__type__": "cc.Sprite",
  1881. "_name": "",
  1882. "_objFlags": 0,
  1883. "node": {
  1884. "__id__": 51
  1885. },
  1886. "_enabled": true,
  1887. "_srcBlendFactor": 770,
  1888. "_dstBlendFactor": 771,
  1889. "_spriteFrame": {
  1890. "__uuid__": "a48000a2-8801-41c6-9779-7e01eeeec535"
  1891. },
  1892. "_type": 0,
  1893. "_sizeMode": 1,
  1894. "_fillType": 0,
  1895. "_fillCenter": {
  1896. "__type__": "cc.Vec2",
  1897. "x": 0,
  1898. "y": 0
  1899. },
  1900. "_fillStart": 0,
  1901. "_fillRange": 0,
  1902. "_isTrimmedMode": true,
  1903. "_state": 0,
  1904. "_atlas": null,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.PrefabInfo",
  1909. "root": {
  1910. "__id__": 1
  1911. },
  1912. "asset": {
  1913. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  1914. },
  1915. "fileId": "34KHem0a9GOZmzwv9rjtpY",
  1916. "sync": false
  1917. },
  1918. {
  1919. "__type__": "cc.Node",
  1920. "_name": "richtext",
  1921. "_objFlags": 0,
  1922. "_parent": {
  1923. "__id__": 50
  1924. },
  1925. "_children": [],
  1926. "_active": true,
  1927. "_level": 4,
  1928. "_components": [
  1929. {
  1930. "__id__": 55
  1931. }
  1932. ],
  1933. "_prefab": {
  1934. "__id__": 56
  1935. },
  1936. "_opacity": 255,
  1937. "_color": {
  1938. "__type__": "cc.Color",
  1939. "r": 255,
  1940. "g": 255,
  1941. "b": 255,
  1942. "a": 255
  1943. },
  1944. "_contentSize": {
  1945. "__type__": "cc.Size",
  1946. "width": 88,
  1947. "height": 22
  1948. },
  1949. "_anchorPoint": {
  1950. "__type__": "cc.Vec2",
  1951. "x": 0,
  1952. "y": 1
  1953. },
  1954. "_position": {
  1955. "__type__": "cc.Vec3",
  1956. "x": -42,
  1957. "y": -24,
  1958. "z": 0
  1959. },
  1960. "_scale": {
  1961. "__type__": "cc.Vec3",
  1962. "x": 1,
  1963. "y": 1,
  1964. "z": 1
  1965. },
  1966. "_rotationX": 0,
  1967. "_rotationY": 0,
  1968. "_quat": {
  1969. "__type__": "cc.Quat",
  1970. "x": 0,
  1971. "y": 0,
  1972. "z": 0,
  1973. "w": 1
  1974. },
  1975. "_skewX": 0,
  1976. "_skewY": 0,
  1977. "_zIndex": 0,
  1978. "groupIndex": 0,
  1979. "_id": ""
  1980. },
  1981. {
  1982. "__type__": "cc.RichText",
  1983. "_name": "",
  1984. "_objFlags": 0,
  1985. "node": {
  1986. "__id__": 54
  1987. },
  1988. "_enabled": true,
  1989. "_N$string": "",
  1990. "_N$horizontalAlign": 1,
  1991. "_N$fontSize": 20,
  1992. "_N$font": null,
  1993. "_N$maxWidth": 88,
  1994. "_N$lineHeight": 22,
  1995. "_N$imageAtlas": null,
  1996. "_N$handleTouchEvent": true,
  1997. "_id": ""
  1998. },
  1999. {
  2000. "__type__": "cc.PrefabInfo",
  2001. "root": {
  2002. "__id__": 1
  2003. },
  2004. "asset": {
  2005. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2006. },
  2007. "fileId": "2dV88jOD9F+ZokvMYU9Gop",
  2008. "sync": false
  2009. },
  2010. {
  2011. "__type__": "cc.PrefabInfo",
  2012. "root": {
  2013. "__id__": 1
  2014. },
  2015. "asset": {
  2016. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2017. },
  2018. "fileId": "375855aKJPNIq0hi/1LTER",
  2019. "sync": false
  2020. },
  2021. {
  2022. "__type__": "cc.Node",
  2023. "_name": "item1",
  2024. "_objFlags": 0,
  2025. "_parent": {
  2026. "__id__": 6
  2027. },
  2028. "_children": [
  2029. {
  2030. "__id__": 59
  2031. },
  2032. {
  2033. "__id__": 62
  2034. }
  2035. ],
  2036. "_active": true,
  2037. "_level": 3,
  2038. "_components": [],
  2039. "_prefab": {
  2040. "__id__": 65
  2041. },
  2042. "_opacity": 255,
  2043. "_color": {
  2044. "__type__": "cc.Color",
  2045. "r": 255,
  2046. "g": 255,
  2047. "b": 255,
  2048. "a": 255
  2049. },
  2050. "_contentSize": {
  2051. "__type__": "cc.Size",
  2052. "width": 200,
  2053. "height": 200
  2054. },
  2055. "_anchorPoint": {
  2056. "__type__": "cc.Vec2",
  2057. "x": 0.5,
  2058. "y": 0.5
  2059. },
  2060. "_position": {
  2061. "__type__": "cc.Vec3",
  2062. "x": 185,
  2063. "y": 76,
  2064. "z": 0
  2065. },
  2066. "_scale": {
  2067. "__type__": "cc.Vec3",
  2068. "x": 1,
  2069. "y": 1,
  2070. "z": 1
  2071. },
  2072. "_rotationX": 67.5,
  2073. "_rotationY": 67.5,
  2074. "_quat": {
  2075. "__type__": "cc.Quat",
  2076. "x": 0,
  2077. "y": 0,
  2078. "z": -0.5555702330196022,
  2079. "w": 0.8314696123025452
  2080. },
  2081. "_skewX": 0,
  2082. "_skewY": 0,
  2083. "_zIndex": 0,
  2084. "groupIndex": 0,
  2085. "_id": ""
  2086. },
  2087. {
  2088. "__type__": "cc.Node",
  2089. "_name": "draw_red",
  2090. "_objFlags": 0,
  2091. "_parent": {
  2092. "__id__": 58
  2093. },
  2094. "_children": [],
  2095. "_active": true,
  2096. "_level": 4,
  2097. "_components": [
  2098. {
  2099. "__id__": 60
  2100. }
  2101. ],
  2102. "_prefab": {
  2103. "__id__": 61
  2104. },
  2105. "_opacity": 255,
  2106. "_color": {
  2107. "__type__": "cc.Color",
  2108. "r": 255,
  2109. "g": 255,
  2110. "b": 255,
  2111. "a": 255
  2112. },
  2113. "_contentSize": {
  2114. "__type__": "cc.Size",
  2115. "width": 64,
  2116. "height": 57
  2117. },
  2118. "_anchorPoint": {
  2119. "__type__": "cc.Vec2",
  2120. "x": 0.5,
  2121. "y": 0.5
  2122. },
  2123. "_position": {
  2124. "__type__": "cc.Vec3",
  2125. "x": 0,
  2126. "y": 22,
  2127. "z": 0
  2128. },
  2129. "_scale": {
  2130. "__type__": "cc.Vec3",
  2131. "x": 1,
  2132. "y": 1,
  2133. "z": 1
  2134. },
  2135. "_rotationX": 0,
  2136. "_rotationY": 0,
  2137. "_quat": {
  2138. "__type__": "cc.Quat",
  2139. "x": 0,
  2140. "y": 0,
  2141. "z": 0,
  2142. "w": 1
  2143. },
  2144. "_skewX": 0,
  2145. "_skewY": 0,
  2146. "_zIndex": 0,
  2147. "groupIndex": 0,
  2148. "_id": ""
  2149. },
  2150. {
  2151. "__type__": "cc.Sprite",
  2152. "_name": "",
  2153. "_objFlags": 0,
  2154. "node": {
  2155. "__id__": 59
  2156. },
  2157. "_enabled": true,
  2158. "_srcBlendFactor": 770,
  2159. "_dstBlendFactor": 771,
  2160. "_spriteFrame": {
  2161. "__uuid__": "e65e9ee1-913b-4591-b5a3-ec439ec94820"
  2162. },
  2163. "_type": 0,
  2164. "_sizeMode": 1,
  2165. "_fillType": 0,
  2166. "_fillCenter": {
  2167. "__type__": "cc.Vec2",
  2168. "x": 0,
  2169. "y": 0
  2170. },
  2171. "_fillStart": 0,
  2172. "_fillRange": 0,
  2173. "_isTrimmedMode": true,
  2174. "_state": 0,
  2175. "_atlas": null,
  2176. "_id": ""
  2177. },
  2178. {
  2179. "__type__": "cc.PrefabInfo",
  2180. "root": {
  2181. "__id__": 1
  2182. },
  2183. "asset": {
  2184. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2185. },
  2186. "fileId": "c2NWlqxhVFBb1p2lyn5cRH",
  2187. "sync": false
  2188. },
  2189. {
  2190. "__type__": "cc.Node",
  2191. "_name": "richtext",
  2192. "_objFlags": 0,
  2193. "_parent": {
  2194. "__id__": 58
  2195. },
  2196. "_children": [],
  2197. "_active": true,
  2198. "_level": 4,
  2199. "_components": [
  2200. {
  2201. "__id__": 63
  2202. }
  2203. ],
  2204. "_prefab": {
  2205. "__id__": 64
  2206. },
  2207. "_opacity": 255,
  2208. "_color": {
  2209. "__type__": "cc.Color",
  2210. "r": 255,
  2211. "g": 255,
  2212. "b": 255,
  2213. "a": 255
  2214. },
  2215. "_contentSize": {
  2216. "__type__": "cc.Size",
  2217. "width": 88,
  2218. "height": 22
  2219. },
  2220. "_anchorPoint": {
  2221. "__type__": "cc.Vec2",
  2222. "x": 0,
  2223. "y": 1
  2224. },
  2225. "_position": {
  2226. "__type__": "cc.Vec3",
  2227. "x": -42,
  2228. "y": -24,
  2229. "z": 0
  2230. },
  2231. "_scale": {
  2232. "__type__": "cc.Vec3",
  2233. "x": 1,
  2234. "y": 1,
  2235. "z": 1
  2236. },
  2237. "_rotationX": 0,
  2238. "_rotationY": 0,
  2239. "_quat": {
  2240. "__type__": "cc.Quat",
  2241. "x": 0,
  2242. "y": 0,
  2243. "z": 0,
  2244. "w": 1
  2245. },
  2246. "_skewX": 0,
  2247. "_skewY": 0,
  2248. "_zIndex": 0,
  2249. "groupIndex": 0,
  2250. "_id": ""
  2251. },
  2252. {
  2253. "__type__": "cc.RichText",
  2254. "_name": "",
  2255. "_objFlags": 0,
  2256. "node": {
  2257. "__id__": 62
  2258. },
  2259. "_enabled": true,
  2260. "_N$string": "",
  2261. "_N$horizontalAlign": 1,
  2262. "_N$fontSize": 20,
  2263. "_N$font": null,
  2264. "_N$maxWidth": 88,
  2265. "_N$lineHeight": 22,
  2266. "_N$imageAtlas": null,
  2267. "_N$handleTouchEvent": true,
  2268. "_id": ""
  2269. },
  2270. {
  2271. "__type__": "cc.PrefabInfo",
  2272. "root": {
  2273. "__id__": 1
  2274. },
  2275. "asset": {
  2276. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2277. },
  2278. "fileId": "5aqpwWPSRGno6iOe7T6erT",
  2279. "sync": false
  2280. },
  2281. {
  2282. "__type__": "cc.PrefabInfo",
  2283. "root": {
  2284. "__id__": 1
  2285. },
  2286. "asset": {
  2287. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2288. },
  2289. "fileId": "2acubrtARInadA9AgG6gwx",
  2290. "sync": false
  2291. },
  2292. {
  2293. "__type__": "cc.Node",
  2294. "_name": "item7",
  2295. "_objFlags": 0,
  2296. "_parent": {
  2297. "__id__": 6
  2298. },
  2299. "_children": [
  2300. {
  2301. "__id__": 67
  2302. },
  2303. {
  2304. "__id__": 70
  2305. }
  2306. ],
  2307. "_active": true,
  2308. "_level": 3,
  2309. "_components": [],
  2310. "_prefab": {
  2311. "__id__": 73
  2312. },
  2313. "_opacity": 255,
  2314. "_color": {
  2315. "__type__": "cc.Color",
  2316. "r": 255,
  2317. "g": 255,
  2318. "b": 255,
  2319. "a": 255
  2320. },
  2321. "_contentSize": {
  2322. "__type__": "cc.Size",
  2323. "width": 200,
  2324. "height": 200
  2325. },
  2326. "_anchorPoint": {
  2327. "__type__": "cc.Vec2",
  2328. "x": 0.5,
  2329. "y": 0.5
  2330. },
  2331. "_position": {
  2332. "__type__": "cc.Vec3",
  2333. "x": -75,
  2334. "y": 175,
  2335. "z": 0
  2336. },
  2337. "_scale": {
  2338. "__type__": "cc.Vec3",
  2339. "x": 1,
  2340. "y": 1,
  2341. "z": 1
  2342. },
  2343. "_rotationX": 337.5,
  2344. "_rotationY": 337.5,
  2345. "_quat": {
  2346. "__type__": "cc.Quat",
  2347. "x": 0,
  2348. "y": 0,
  2349. "z": -0.19509032201612816,
  2350. "w": -0.9807852804032304
  2351. },
  2352. "_skewX": 0,
  2353. "_skewY": 0,
  2354. "_zIndex": 0,
  2355. "groupIndex": 0,
  2356. "_id": ""
  2357. },
  2358. {
  2359. "__type__": "cc.Node",
  2360. "_name": "draw_red",
  2361. "_objFlags": 0,
  2362. "_parent": {
  2363. "__id__": 66
  2364. },
  2365. "_children": [],
  2366. "_active": true,
  2367. "_level": 4,
  2368. "_components": [
  2369. {
  2370. "__id__": 68
  2371. }
  2372. ],
  2373. "_prefab": {
  2374. "__id__": 69
  2375. },
  2376. "_opacity": 255,
  2377. "_color": {
  2378. "__type__": "cc.Color",
  2379. "r": 255,
  2380. "g": 255,
  2381. "b": 255,
  2382. "a": 255
  2383. },
  2384. "_contentSize": {
  2385. "__type__": "cc.Size",
  2386. "width": 64,
  2387. "height": 57
  2388. },
  2389. "_anchorPoint": {
  2390. "__type__": "cc.Vec2",
  2391. "x": 0.5,
  2392. "y": 0.5
  2393. },
  2394. "_position": {
  2395. "__type__": "cc.Vec3",
  2396. "x": 0,
  2397. "y": 22,
  2398. "z": 0
  2399. },
  2400. "_scale": {
  2401. "__type__": "cc.Vec3",
  2402. "x": 1,
  2403. "y": 1,
  2404. "z": 1
  2405. },
  2406. "_rotationX": 0,
  2407. "_rotationY": 0,
  2408. "_quat": {
  2409. "__type__": "cc.Quat",
  2410. "x": 0,
  2411. "y": 0,
  2412. "z": 0,
  2413. "w": 1
  2414. },
  2415. "_skewX": 0,
  2416. "_skewY": 0,
  2417. "_zIndex": 0,
  2418. "groupIndex": 0,
  2419. "_id": ""
  2420. },
  2421. {
  2422. "__type__": "cc.Sprite",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 67
  2427. },
  2428. "_enabled": true,
  2429. "_srcBlendFactor": 770,
  2430. "_dstBlendFactor": 771,
  2431. "_spriteFrame": {
  2432. "__uuid__": "e65e9ee1-913b-4591-b5a3-ec439ec94820"
  2433. },
  2434. "_type": 0,
  2435. "_sizeMode": 1,
  2436. "_fillType": 0,
  2437. "_fillCenter": {
  2438. "__type__": "cc.Vec2",
  2439. "x": 0,
  2440. "y": 0
  2441. },
  2442. "_fillStart": 0,
  2443. "_fillRange": 0,
  2444. "_isTrimmedMode": true,
  2445. "_state": 0,
  2446. "_atlas": null,
  2447. "_id": ""
  2448. },
  2449. {
  2450. "__type__": "cc.PrefabInfo",
  2451. "root": {
  2452. "__id__": 1
  2453. },
  2454. "asset": {
  2455. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2456. },
  2457. "fileId": "896AwPf5NO2IodGav7QMMJ",
  2458. "sync": false
  2459. },
  2460. {
  2461. "__type__": "cc.Node",
  2462. "_name": "richtext",
  2463. "_objFlags": 0,
  2464. "_parent": {
  2465. "__id__": 66
  2466. },
  2467. "_children": [],
  2468. "_active": true,
  2469. "_level": 4,
  2470. "_components": [
  2471. {
  2472. "__id__": 71
  2473. }
  2474. ],
  2475. "_prefab": {
  2476. "__id__": 72
  2477. },
  2478. "_opacity": 255,
  2479. "_color": {
  2480. "__type__": "cc.Color",
  2481. "r": 255,
  2482. "g": 255,
  2483. "b": 255,
  2484. "a": 255
  2485. },
  2486. "_contentSize": {
  2487. "__type__": "cc.Size",
  2488. "width": 88,
  2489. "height": 22
  2490. },
  2491. "_anchorPoint": {
  2492. "__type__": "cc.Vec2",
  2493. "x": 0,
  2494. "y": 1
  2495. },
  2496. "_position": {
  2497. "__type__": "cc.Vec3",
  2498. "x": -41.999999995272674,
  2499. "y": -23.999999959090133,
  2500. "z": 0
  2501. },
  2502. "_scale": {
  2503. "__type__": "cc.Vec3",
  2504. "x": 1,
  2505. "y": 1,
  2506. "z": 1
  2507. },
  2508. "_rotationX": 0,
  2509. "_rotationY": 0,
  2510. "_quat": {
  2511. "__type__": "cc.Quat",
  2512. "x": 0,
  2513. "y": 0,
  2514. "z": 0,
  2515. "w": 1
  2516. },
  2517. "_skewX": 0,
  2518. "_skewY": 0,
  2519. "_zIndex": 0,
  2520. "groupIndex": 0,
  2521. "_id": ""
  2522. },
  2523. {
  2524. "__type__": "cc.RichText",
  2525. "_name": "",
  2526. "_objFlags": 0,
  2527. "node": {
  2528. "__id__": 70
  2529. },
  2530. "_enabled": true,
  2531. "_N$string": "",
  2532. "_N$horizontalAlign": 1,
  2533. "_N$fontSize": 20,
  2534. "_N$font": null,
  2535. "_N$maxWidth": 88,
  2536. "_N$lineHeight": 22,
  2537. "_N$imageAtlas": null,
  2538. "_N$handleTouchEvent": true,
  2539. "_id": ""
  2540. },
  2541. {
  2542. "__type__": "cc.PrefabInfo",
  2543. "root": {
  2544. "__id__": 1
  2545. },
  2546. "asset": {
  2547. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2548. },
  2549. "fileId": "08XL4fJZhFeb+BDA/VWxau",
  2550. "sync": false
  2551. },
  2552. {
  2553. "__type__": "cc.PrefabInfo",
  2554. "root": {
  2555. "__id__": 1
  2556. },
  2557. "asset": {
  2558. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2559. },
  2560. "fileId": "787ZP+fNZBzaD6tmyji5SO",
  2561. "sync": false
  2562. },
  2563. {
  2564. "__type__": "cc.BlockInputEvents",
  2565. "_name": "",
  2566. "_objFlags": 0,
  2567. "node": {
  2568. "__id__": 6
  2569. },
  2570. "_enabled": true,
  2571. "_id": ""
  2572. },
  2573. {
  2574. "__type__": "cc.PrefabInfo",
  2575. "root": {
  2576. "__id__": 1
  2577. },
  2578. "asset": {
  2579. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2580. },
  2581. "fileId": "07QNsLhoBCLKIYkiEwKJ+t",
  2582. "sync": false
  2583. },
  2584. {
  2585. "__type__": "cc.Node",
  2586. "_name": "button",
  2587. "_objFlags": 0,
  2588. "_parent": {
  2589. "__id__": 1
  2590. },
  2591. "_children": [
  2592. {
  2593. "__id__": 77
  2594. },
  2595. {
  2596. "__id__": 80
  2597. }
  2598. ],
  2599. "_active": true,
  2600. "_level": 2,
  2601. "_components": [
  2602. {
  2603. "__id__": 86
  2604. }
  2605. ],
  2606. "_prefab": {
  2607. "__id__": 88
  2608. },
  2609. "_opacity": 255,
  2610. "_color": {
  2611. "__type__": "cc.Color",
  2612. "r": 255,
  2613. "g": 255,
  2614. "b": 255,
  2615. "a": 255
  2616. },
  2617. "_contentSize": {
  2618. "__type__": "cc.Size",
  2619. "width": 340,
  2620. "height": 80
  2621. },
  2622. "_anchorPoint": {
  2623. "__type__": "cc.Vec2",
  2624. "x": 0.5,
  2625. "y": 0.5
  2626. },
  2627. "_position": {
  2628. "__type__": "cc.Vec3",
  2629. "x": 0,
  2630. "y": -410,
  2631. "z": 0
  2632. },
  2633. "_scale": {
  2634. "__type__": "cc.Vec3",
  2635. "x": 1,
  2636. "y": 1,
  2637. "z": 1
  2638. },
  2639. "_rotationX": 0,
  2640. "_rotationY": 0,
  2641. "_quat": {
  2642. "__type__": "cc.Quat",
  2643. "x": 0,
  2644. "y": 0,
  2645. "z": 0,
  2646. "w": 1
  2647. },
  2648. "_skewX": 0,
  2649. "_skewY": 0,
  2650. "_zIndex": 0,
  2651. "groupIndex": 0,
  2652. "_id": ""
  2653. },
  2654. {
  2655. "__type__": "cc.Node",
  2656. "_name": "draw_yellow_btn",
  2657. "_objFlags": 0,
  2658. "_parent": {
  2659. "__id__": 76
  2660. },
  2661. "_children": [],
  2662. "_active": true,
  2663. "_level": 3,
  2664. "_components": [
  2665. {
  2666. "__id__": 78
  2667. }
  2668. ],
  2669. "_prefab": {
  2670. "__id__": 79
  2671. },
  2672. "_opacity": 255,
  2673. "_color": {
  2674. "__type__": "cc.Color",
  2675. "r": 255,
  2676. "g": 255,
  2677. "b": 255,
  2678. "a": 255
  2679. },
  2680. "_contentSize": {
  2681. "__type__": "cc.Size",
  2682. "width": 340,
  2683. "height": 80
  2684. },
  2685. "_anchorPoint": {
  2686. "__type__": "cc.Vec2",
  2687. "x": 0.5,
  2688. "y": 0.5
  2689. },
  2690. "_position": {
  2691. "__type__": "cc.Vec3",
  2692. "x": 0,
  2693. "y": 0,
  2694. "z": 0
  2695. },
  2696. "_scale": {
  2697. "__type__": "cc.Vec3",
  2698. "x": 1,
  2699. "y": 1,
  2700. "z": 1
  2701. },
  2702. "_rotationX": 0,
  2703. "_rotationY": 0,
  2704. "_quat": {
  2705. "__type__": "cc.Quat",
  2706. "x": 0,
  2707. "y": 0,
  2708. "z": 0,
  2709. "w": 1
  2710. },
  2711. "_skewX": 0,
  2712. "_skewY": 0,
  2713. "_zIndex": 0,
  2714. "groupIndex": 0,
  2715. "_id": ""
  2716. },
  2717. {
  2718. "__type__": "cc.Sprite",
  2719. "_name": "",
  2720. "_objFlags": 0,
  2721. "node": {
  2722. "__id__": 77
  2723. },
  2724. "_enabled": true,
  2725. "_srcBlendFactor": 770,
  2726. "_dstBlendFactor": 771,
  2727. "_spriteFrame": {
  2728. "__uuid__": "09b602fc-c65e-43c9-83fd-bb7de85866f2"
  2729. },
  2730. "_type": 0,
  2731. "_sizeMode": 1,
  2732. "_fillType": 0,
  2733. "_fillCenter": {
  2734. "__type__": "cc.Vec2",
  2735. "x": 0,
  2736. "y": 0
  2737. },
  2738. "_fillStart": 0,
  2739. "_fillRange": 0,
  2740. "_isTrimmedMode": true,
  2741. "_state": 0,
  2742. "_atlas": null,
  2743. "_id": ""
  2744. },
  2745. {
  2746. "__type__": "cc.PrefabInfo",
  2747. "root": {
  2748. "__id__": 1
  2749. },
  2750. "asset": {
  2751. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2752. },
  2753. "fileId": "d16x41k6RFt6rOlKEA90FH",
  2754. "sync": false
  2755. },
  2756. {
  2757. "__type__": "cc.Node",
  2758. "_name": "richtext",
  2759. "_objFlags": 0,
  2760. "_parent": {
  2761. "__id__": 76
  2762. },
  2763. "_children": [
  2764. {
  2765. "__id__": 81
  2766. }
  2767. ],
  2768. "_active": true,
  2769. "_level": 3,
  2770. "_components": [
  2771. {
  2772. "__id__": 84
  2773. }
  2774. ],
  2775. "_prefab": {
  2776. "__id__": 85
  2777. },
  2778. "_opacity": 255,
  2779. "_color": {
  2780. "__type__": "cc.Color",
  2781. "r": 255,
  2782. "g": 255,
  2783. "b": 255,
  2784. "a": 255
  2785. },
  2786. "_contentSize": {
  2787. "__type__": "cc.Size",
  2788. "width": 120,
  2789. "height": 32
  2790. },
  2791. "_anchorPoint": {
  2792. "__type__": "cc.Vec2",
  2793. "x": 0.5,
  2794. "y": 0.5
  2795. },
  2796. "_position": {
  2797. "__type__": "cc.Vec3",
  2798. "x": 0,
  2799. "y": 0,
  2800. "z": 0
  2801. },
  2802. "_scale": {
  2803. "__type__": "cc.Vec3",
  2804. "x": 1,
  2805. "y": 1,
  2806. "z": 1
  2807. },
  2808. "_rotationX": 0,
  2809. "_rotationY": 0,
  2810. "_quat": {
  2811. "__type__": "cc.Quat",
  2812. "x": 0,
  2813. "y": 0,
  2814. "z": 0,
  2815. "w": 1
  2816. },
  2817. "_skewX": 0,
  2818. "_skewY": 0,
  2819. "_zIndex": 0,
  2820. "groupIndex": 0,
  2821. "_id": ""
  2822. },
  2823. {
  2824. "__type__": "cc.PrivateNode",
  2825. "_name": "RICHTEXT_CHILD",
  2826. "_objFlags": 0,
  2827. "_parent": {
  2828. "__id__": 80
  2829. },
  2830. "_children": [],
  2831. "_active": true,
  2832. "_level": 4,
  2833. "_components": [
  2834. {
  2835. "__id__": 82
  2836. }
  2837. ],
  2838. "_prefab": {
  2839. "__id__": 83
  2840. },
  2841. "_opacity": 255,
  2842. "_color": {
  2843. "__type__": "cc.Color",
  2844. "r": 255,
  2845. "g": 255,
  2846. "b": 255,
  2847. "a": 255
  2848. },
  2849. "_contentSize": {
  2850. "__type__": "cc.Size",
  2851. "width": 120,
  2852. "height": 32
  2853. },
  2854. "_anchorPoint": {
  2855. "__type__": "cc.Vec2",
  2856. "x": 0,
  2857. "y": 0
  2858. },
  2859. "_position": {
  2860. "__type__": "cc.Vec3",
  2861. "x": -60,
  2862. "y": -16,
  2863. "z": 0
  2864. },
  2865. "_scale": {
  2866. "__type__": "cc.Vec3",
  2867. "x": 1,
  2868. "y": 1,
  2869. "z": 1
  2870. },
  2871. "_rotationX": 0,
  2872. "_rotationY": 0,
  2873. "_quat": {
  2874. "__type__": "cc.Quat",
  2875. "x": 0,
  2876. "y": 0,
  2877. "z": 0,
  2878. "w": 1
  2879. },
  2880. "_skewX": 0,
  2881. "_skewY": 0,
  2882. "_zIndex": -32768,
  2883. "groupIndex": 0,
  2884. "_id": ""
  2885. },
  2886. {
  2887. "__type__": "cc.Label",
  2888. "_name": "",
  2889. "_objFlags": 0,
  2890. "node": {
  2891. "__id__": 81
  2892. },
  2893. "_enabled": true,
  2894. "_srcBlendFactor": 1,
  2895. "_dstBlendFactor": 771,
  2896. "_useOriginalSize": true,
  2897. "_string": "开始抽奖",
  2898. "_N$string": "开始抽奖",
  2899. "_fontSize": 30,
  2900. "_lineHeight": 32,
  2901. "_enableWrapText": true,
  2902. "_N$file": null,
  2903. "_isSystemFontUsed": true,
  2904. "_spacingX": 0,
  2905. "_N$horizontalAlign": 0,
  2906. "_N$verticalAlign": 1,
  2907. "_N$fontFamily": "Arial",
  2908. "_N$overflow": 0,
  2909. "_id": ""
  2910. },
  2911. {
  2912. "__type__": "cc.PrefabInfo",
  2913. "root": {
  2914. "__id__": 1
  2915. },
  2916. "asset": {
  2917. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2918. },
  2919. "fileId": "07nxelN+hGy62fmX6yPM/k",
  2920. "sync": false
  2921. },
  2922. {
  2923. "__type__": "cc.RichText",
  2924. "_name": "",
  2925. "_objFlags": 0,
  2926. "node": {
  2927. "__id__": 80
  2928. },
  2929. "_enabled": true,
  2930. "_N$string": "<b<color=#ffffff>开始抽奖</c></b>",
  2931. "_N$horizontalAlign": 1,
  2932. "_N$fontSize": 30,
  2933. "_N$font": null,
  2934. "_N$maxWidth": 0,
  2935. "_N$lineHeight": 32,
  2936. "_N$imageAtlas": null,
  2937. "_N$handleTouchEvent": true,
  2938. "_id": ""
  2939. },
  2940. {
  2941. "__type__": "cc.PrefabInfo",
  2942. "root": {
  2943. "__id__": 1
  2944. },
  2945. "asset": {
  2946. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  2947. },
  2948. "fileId": "depLaomrFNH5Uae54/M3eI",
  2949. "sync": false
  2950. },
  2951. {
  2952. "__type__": "cc.Button",
  2953. "_name": "",
  2954. "_objFlags": 0,
  2955. "node": {
  2956. "__id__": 76
  2957. },
  2958. "_enabled": true,
  2959. "transition": 1,
  2960. "pressedColor": {
  2961. "__type__": "cc.Color",
  2962. "r": 120,
  2963. "g": 120,
  2964. "b": 120,
  2965. "a": 255
  2966. },
  2967. "hoverColor": {
  2968. "__type__": "cc.Color",
  2969. "r": 255,
  2970. "g": 255,
  2971. "b": 255,
  2972. "a": 255
  2973. },
  2974. "duration": 0.1,
  2975. "zoomScale": 1.2,
  2976. "clickEvents": [
  2977. {
  2978. "__id__": 87
  2979. }
  2980. ],
  2981. "_N$interactable": true,
  2982. "_N$enableAutoGrayEffect": false,
  2983. "_N$normalColor": {
  2984. "__type__": "cc.Color",
  2985. "r": 255,
  2986. "g": 255,
  2987. "b": 255,
  2988. "a": 255
  2989. },
  2990. "_N$disabledColor": {
  2991. "__type__": "cc.Color",
  2992. "r": 255,
  2993. "g": 255,
  2994. "b": 255,
  2995. "a": 255
  2996. },
  2997. "_N$normalSprite": {
  2998. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2999. },
  3000. "_N$pressedSprite": {
  3001. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3002. },
  3003. "pressedSprite": {
  3004. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3005. },
  3006. "_N$hoverSprite": {
  3007. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3008. },
  3009. "hoverSprite": {
  3010. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3011. },
  3012. "_N$disabledSprite": {
  3013. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3014. },
  3015. "_N$target": {
  3016. "__id__": 77
  3017. },
  3018. "_id": ""
  3019. },
  3020. {
  3021. "__type__": "cc.ClickEvent",
  3022. "target": {
  3023. "__id__": 1
  3024. },
  3025. "component": "DrawCycleScroll",
  3026. "handler": "startDraw",
  3027. "customEventData": ""
  3028. },
  3029. {
  3030. "__type__": "cc.PrefabInfo",
  3031. "root": {
  3032. "__id__": 1
  3033. },
  3034. "asset": {
  3035. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  3036. },
  3037. "fileId": "77lqQ5F5hNgKymcuAsgx3P",
  3038. "sync": false
  3039. },
  3040. {
  3041. "__type__": "cc.Node",
  3042. "_name": "draw_point_1",
  3043. "_objFlags": 0,
  3044. "_parent": {
  3045. "__id__": 1
  3046. },
  3047. "_children": [],
  3048. "_active": true,
  3049. "_level": 2,
  3050. "_components": [
  3051. {
  3052. "__id__": 90
  3053. }
  3054. ],
  3055. "_prefab": {
  3056. "__id__": 91
  3057. },
  3058. "_opacity": 255,
  3059. "_color": {
  3060. "__type__": "cc.Color",
  3061. "r": 255,
  3062. "g": 255,
  3063. "b": 255,
  3064. "a": 255
  3065. },
  3066. "_contentSize": {
  3067. "__type__": "cc.Size",
  3068. "width": 55,
  3069. "height": 94
  3070. },
  3071. "_anchorPoint": {
  3072. "__type__": "cc.Vec2",
  3073. "x": 0.5,
  3074. "y": 0.6
  3075. },
  3076. "_position": {
  3077. "__type__": "cc.Vec3",
  3078. "x": 0,
  3079. "y": 307,
  3080. "z": 0
  3081. },
  3082. "_scale": {
  3083. "__type__": "cc.Vec3",
  3084. "x": 1,
  3085. "y": 1,
  3086. "z": 1
  3087. },
  3088. "_rotationX": 0,
  3089. "_rotationY": 0,
  3090. "_quat": {
  3091. "__type__": "cc.Quat",
  3092. "x": 0,
  3093. "y": 0,
  3094. "z": 0,
  3095. "w": 1
  3096. },
  3097. "_skewX": 0,
  3098. "_skewY": 0,
  3099. "_zIndex": 0,
  3100. "groupIndex": 0,
  3101. "_id": ""
  3102. },
  3103. {
  3104. "__type__": "cc.Sprite",
  3105. "_name": "",
  3106. "_objFlags": 0,
  3107. "node": {
  3108. "__id__": 89
  3109. },
  3110. "_enabled": true,
  3111. "_srcBlendFactor": 770,
  3112. "_dstBlendFactor": 771,
  3113. "_spriteFrame": {
  3114. "__uuid__": "05e21c74-9c38-47b5-a2b5-10c091d42b7e"
  3115. },
  3116. "_type": 0,
  3117. "_sizeMode": 1,
  3118. "_fillType": 0,
  3119. "_fillCenter": {
  3120. "__type__": "cc.Vec2",
  3121. "x": 0,
  3122. "y": 0
  3123. },
  3124. "_fillStart": 0,
  3125. "_fillRange": 0,
  3126. "_isTrimmedMode": true,
  3127. "_state": 0,
  3128. "_atlas": null,
  3129. "_id": ""
  3130. },
  3131. {
  3132. "__type__": "cc.PrefabInfo",
  3133. "root": {
  3134. "__id__": 1
  3135. },
  3136. "asset": {
  3137. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  3138. },
  3139. "fileId": "3dhCYWAj1BL7y+M5xctZTB",
  3140. "sync": false
  3141. },
  3142. {
  3143. "__type__": "b4192Du4I9LzqgChyvDgZbx",
  3144. "_name": "",
  3145. "_objFlags": 0,
  3146. "node": {
  3147. "__id__": 1
  3148. },
  3149. "_enabled": true,
  3150. "richTextArr": [
  3151. {
  3152. "__id__": 23
  3153. },
  3154. {
  3155. "__id__": 63
  3156. },
  3157. {
  3158. "__id__": 55
  3159. },
  3160. {
  3161. "__id__": 47
  3162. },
  3163. {
  3164. "__id__": 39
  3165. },
  3166. {
  3167. "__id__": 31
  3168. },
  3169. {
  3170. "__id__": 15
  3171. },
  3172. {
  3173. "__id__": 71
  3174. }
  3175. ],
  3176. "iconSpriteArr": [
  3177. {
  3178. "__id__": 20
  3179. },
  3180. {
  3181. "__id__": 60
  3182. },
  3183. {
  3184. "__id__": 52
  3185. },
  3186. {
  3187. "__id__": 44
  3188. },
  3189. {
  3190. "__id__": 36
  3191. },
  3192. {
  3193. "__id__": 28
  3194. },
  3195. {
  3196. "__id__": 12
  3197. },
  3198. {
  3199. "__id__": 68
  3200. }
  3201. ],
  3202. "contentNode": {
  3203. "__id__": 6
  3204. },
  3205. "maskNode": {
  3206. "__id__": 2
  3207. },
  3208. "drawSpriteFrame": [
  3209. {
  3210. "__uuid__": "e65e9ee1-913b-4591-b5a3-ec439ec94820"
  3211. },
  3212. {
  3213. "__uuid__": "a48000a2-8801-41c6-9779-7e01eeeec535"
  3214. },
  3215. {
  3216. "__uuid__": "45ae3a06-fd93-41b2-abd7-694a89c24627"
  3217. },
  3218. {
  3219. "__uuid__": "1f52c3b4-77c6-4e84-9085-24b1edfe7e5f"
  3220. }
  3221. ],
  3222. "drawBgSprite": {
  3223. "__id__": 8
  3224. },
  3225. "drawPointSprite": {
  3226. "__id__": 90
  3227. },
  3228. "drawStartButton": {
  3229. "__id__": 86
  3230. },
  3231. "pointNode": {
  3232. "__id__": 89
  3233. },
  3234. "_rounds": 4,
  3235. "_cycleTime": 3,
  3236. "_pointUp": false,
  3237. "_isUp": false,
  3238. "_timeTotal": 0,
  3239. "_id": ""
  3240. },
  3241. {
  3242. "__type__": "cc.PrefabInfo",
  3243. "root": {
  3244. "__id__": 1
  3245. },
  3246. "asset": {
  3247. "__uuid__": "6db3da1a-bc16-4808-b9af-ad3d0a83d742"
  3248. },
  3249. "fileId": "91rgMueUJCgo1NUIltMcwZ",
  3250. "sync": false
  3251. }
  3252. ]