Activity.prefab 62 KB

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