NativeAdAwardNode.prefab 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865
  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": "NativeADAwardNode",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 77
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 78
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 750,
  47. "height": 1334
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_trs": {
  55. "__type__": "TypedArray",
  56. "ctor": "Float64Array",
  57. "array": [
  58. 0,
  59. 0,
  60. 0,
  61. 0,
  62. 0,
  63. 0,
  64. 1,
  65. 1,
  66. 1,
  67. 1
  68. ]
  69. },
  70. "_eulerAngles": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_skewX": 0,
  77. "_skewY": 0,
  78. "_is3DNode": false,
  79. "_groupIndex": 0,
  80. "groupIndex": 0,
  81. "_id": ""
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "New Sprite(Splash)",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [],
  91. "_active": true,
  92. "_components": [
  93. {
  94. "__id__": 3
  95. },
  96. {
  97. "__id__": 4
  98. }
  99. ],
  100. "_prefab": {
  101. "__id__": 5
  102. },
  103. "_opacity": 178,
  104. "_color": {
  105. "__type__": "cc.Color",
  106. "r": 0,
  107. "g": 0,
  108. "b": 0,
  109. "a": 255
  110. },
  111. "_contentSize": {
  112. "__type__": "cc.Size",
  113. "width": 750,
  114. "height": 2000
  115. },
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_trs": {
  122. "__type__": "TypedArray",
  123. "ctor": "Float64Array",
  124. "array": [
  125. 0,
  126. 0,
  127. 0,
  128. 0,
  129. 0,
  130. 0,
  131. 1,
  132. 1,
  133. 1,
  134. 1
  135. ]
  136. },
  137. "_eulerAngles": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_skewX": 0,
  144. "_skewY": 0,
  145. "_is3DNode": false,
  146. "_groupIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Sprite",
  152. "_name": "New Sprite(Splash)<Sprite>",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_materials": [
  159. {
  160. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  161. }
  162. ],
  163. "_srcBlendFactor": 770,
  164. "_dstBlendFactor": 771,
  165. "_spriteFrame": {
  166. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  167. },
  168. "_type": 0,
  169. "_sizeMode": 0,
  170. "_fillType": 0,
  171. "_fillCenter": {
  172. "__type__": "cc.Vec2",
  173. "x": 0,
  174. "y": 0
  175. },
  176. "_fillStart": 0,
  177. "_fillRange": 0,
  178. "_isTrimmedMode": true,
  179. "_atlas": null,
  180. "_id": ""
  181. },
  182. {
  183. "__type__": "cc.BlockInputEvents",
  184. "_name": "",
  185. "_objFlags": 0,
  186. "node": {
  187. "__id__": 2
  188. },
  189. "_enabled": true,
  190. "_id": ""
  191. },
  192. {
  193. "__type__": "cc.PrefabInfo",
  194. "root": {
  195. "__id__": 1
  196. },
  197. "asset": {
  198. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  199. },
  200. "fileId": "26YYgEL/pGdIfg8G4nEP8e",
  201. "sync": false
  202. },
  203. {
  204. "__type__": "cc.Node",
  205. "_name": "Par",
  206. "_objFlags": 0,
  207. "_parent": {
  208. "__id__": 1
  209. },
  210. "_children": [
  211. {
  212. "__id__": 7
  213. },
  214. {
  215. "__id__": 28
  216. },
  217. {
  218. "__id__": 34
  219. },
  220. {
  221. "__id__": 37
  222. },
  223. {
  224. "__id__": 45
  225. },
  226. {
  227. "__id__": 48
  228. },
  229. {
  230. "__id__": 60
  231. },
  232. {
  233. "__id__": 70
  234. }
  235. ],
  236. "_active": true,
  237. "_components": [
  238. {
  239. "__id__": 75
  240. }
  241. ],
  242. "_prefab": {
  243. "__id__": 76
  244. },
  245. "_opacity": 255,
  246. "_color": {
  247. "__type__": "cc.Color",
  248. "r": 255,
  249. "g": 255,
  250. "b": 255,
  251. "a": 255
  252. },
  253. "_contentSize": {
  254. "__type__": "cc.Size",
  255. "width": 0,
  256. "height": 0
  257. },
  258. "_anchorPoint": {
  259. "__type__": "cc.Vec2",
  260. "x": 0.5,
  261. "y": 0.5
  262. },
  263. "_trs": {
  264. "__type__": "TypedArray",
  265. "ctor": "Float64Array",
  266. "array": [
  267. 0,
  268. 0,
  269. 0,
  270. 0,
  271. 0,
  272. 0,
  273. 1,
  274. 1,
  275. 1,
  276. 1
  277. ]
  278. },
  279. "_eulerAngles": {
  280. "__type__": "cc.Vec3",
  281. "x": 0,
  282. "y": 0,
  283. "z": 0
  284. },
  285. "_skewX": 0,
  286. "_skewY": 0,
  287. "_is3DNode": false,
  288. "_groupIndex": 0,
  289. "groupIndex": 0,
  290. "_id": ""
  291. },
  292. {
  293. "__type__": "cc.Node",
  294. "_name": "giftbg",
  295. "_objFlags": 0,
  296. "_parent": {
  297. "__id__": 6
  298. },
  299. "_children": [
  300. {
  301. "__id__": 8
  302. },
  303. {
  304. "__id__": 11
  305. },
  306. {
  307. "__id__": 14
  308. }
  309. ],
  310. "_active": true,
  311. "_components": [
  312. {
  313. "__id__": 25
  314. },
  315. {
  316. "__id__": 26
  317. }
  318. ],
  319. "_prefab": {
  320. "__id__": 27
  321. },
  322. "_opacity": 255,
  323. "_color": {
  324. "__type__": "cc.Color",
  325. "r": 255,
  326. "g": 255,
  327. "b": 255,
  328. "a": 255
  329. },
  330. "_contentSize": {
  331. "__type__": "cc.Size",
  332. "width": 745,
  333. "height": 1172
  334. },
  335. "_anchorPoint": {
  336. "__type__": "cc.Vec2",
  337. "x": 0.5,
  338. "y": 0.5
  339. },
  340. "_trs": {
  341. "__type__": "TypedArray",
  342. "ctor": "Float64Array",
  343. "array": [
  344. -4,
  345. 17,
  346. 0,
  347. 0,
  348. 0,
  349. 0,
  350. 1,
  351. 1,
  352. 1,
  353. 1
  354. ]
  355. },
  356. "_eulerAngles": {
  357. "__type__": "cc.Vec3",
  358. "x": 0,
  359. "y": 0,
  360. "z": 0
  361. },
  362. "_skewX": 0,
  363. "_skewY": 0,
  364. "_is3DNode": false,
  365. "_groupIndex": 0,
  366. "groupIndex": 0,
  367. "_id": ""
  368. },
  369. {
  370. "__type__": "cc.Node",
  371. "_name": "common_bg_bgtitle",
  372. "_objFlags": 0,
  373. "_parent": {
  374. "__id__": 7
  375. },
  376. "_children": [],
  377. "_active": true,
  378. "_components": [
  379. {
  380. "__id__": 9
  381. }
  382. ],
  383. "_prefab": {
  384. "__id__": 10
  385. },
  386. "_opacity": 255,
  387. "_color": {
  388. "__type__": "cc.Color",
  389. "r": 255,
  390. "g": 255,
  391. "b": 255,
  392. "a": 255
  393. },
  394. "_contentSize": {
  395. "__type__": "cc.Size",
  396. "width": 315,
  397. "height": 72
  398. },
  399. "_anchorPoint": {
  400. "__type__": "cc.Vec2",
  401. "x": 0.5,
  402. "y": 0.5
  403. },
  404. "_trs": {
  405. "__type__": "TypedArray",
  406. "ctor": "Float64Array",
  407. "array": [
  408. 0,
  409. 557.189,
  410. 0,
  411. 0,
  412. 0,
  413. 0,
  414. 1,
  415. 1,
  416. 1,
  417. 1
  418. ]
  419. },
  420. "_eulerAngles": {
  421. "__type__": "cc.Vec3",
  422. "x": 0,
  423. "y": 0,
  424. "z": 0
  425. },
  426. "_skewX": 0,
  427. "_skewY": 0,
  428. "_is3DNode": false,
  429. "_groupIndex": 0,
  430. "groupIndex": 0,
  431. "_id": ""
  432. },
  433. {
  434. "__type__": "cc.Sprite",
  435. "_name": "",
  436. "_objFlags": 0,
  437. "node": {
  438. "__id__": 8
  439. },
  440. "_enabled": true,
  441. "_materials": [
  442. {
  443. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  444. }
  445. ],
  446. "_srcBlendFactor": 770,
  447. "_dstBlendFactor": 771,
  448. "_spriteFrame": {
  449. "__uuid__": "e5a25066-b953-4b6b-89cd-bcd27b33c943"
  450. },
  451. "_type": 0,
  452. "_sizeMode": 1,
  453. "_fillType": 0,
  454. "_fillCenter": {
  455. "__type__": "cc.Vec2",
  456. "x": 0,
  457. "y": 0
  458. },
  459. "_fillStart": 0,
  460. "_fillRange": 0,
  461. "_isTrimmedMode": true,
  462. "_atlas": null,
  463. "_id": ""
  464. },
  465. {
  466. "__type__": "cc.PrefabInfo",
  467. "root": {
  468. "__id__": 1
  469. },
  470. "asset": {
  471. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  472. },
  473. "fileId": "60uf6JM/pODa0slpA8mYKt",
  474. "sync": false
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "native_txt_ggfl",
  479. "_objFlags": 0,
  480. "_parent": {
  481. "__id__": 7
  482. },
  483. "_children": [],
  484. "_active": true,
  485. "_components": [
  486. {
  487. "__id__": 12
  488. }
  489. ],
  490. "_prefab": {
  491. "__id__": 13
  492. },
  493. "_opacity": 255,
  494. "_color": {
  495. "__type__": "cc.Color",
  496. "r": 255,
  497. "g": 255,
  498. "b": 255,
  499. "a": 255
  500. },
  501. "_contentSize": {
  502. "__type__": "cc.Size",
  503. "width": 150,
  504. "height": 44
  505. },
  506. "_anchorPoint": {
  507. "__type__": "cc.Vec2",
  508. "x": 0.5,
  509. "y": 0.5
  510. },
  511. "_trs": {
  512. "__type__": "TypedArray",
  513. "ctor": "Float64Array",
  514. "array": [
  515. 0,
  516. 559.657,
  517. 0,
  518. 0,
  519. 0,
  520. 0,
  521. 1,
  522. 1,
  523. 1,
  524. 1
  525. ]
  526. },
  527. "_eulerAngles": {
  528. "__type__": "cc.Vec3",
  529. "x": 0,
  530. "y": 0,
  531. "z": 0
  532. },
  533. "_skewX": 0,
  534. "_skewY": 0,
  535. "_is3DNode": false,
  536. "_groupIndex": 0,
  537. "groupIndex": 0,
  538. "_id": ""
  539. },
  540. {
  541. "__type__": "cc.Sprite",
  542. "_name": "native_txt_ggfl<Sprite>",
  543. "_objFlags": 0,
  544. "node": {
  545. "__id__": 11
  546. },
  547. "_enabled": true,
  548. "_materials": [
  549. {
  550. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  551. }
  552. ],
  553. "_srcBlendFactor": 770,
  554. "_dstBlendFactor": 771,
  555. "_spriteFrame": {
  556. "__uuid__": "ea7abfdc-8247-4b7e-a5a5-c04c0ac26993"
  557. },
  558. "_type": 0,
  559. "_sizeMode": 1,
  560. "_fillType": 0,
  561. "_fillCenter": {
  562. "__type__": "cc.Vec2",
  563. "x": 0,
  564. "y": 0
  565. },
  566. "_fillStart": 0,
  567. "_fillRange": 0,
  568. "_isTrimmedMode": true,
  569. "_atlas": null,
  570. "_id": ""
  571. },
  572. {
  573. "__type__": "cc.PrefabInfo",
  574. "root": {
  575. "__id__": 1
  576. },
  577. "asset": {
  578. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  579. },
  580. "fileId": "13EGcmO+dJtoG5sKPqCVDp",
  581. "sync": false
  582. },
  583. {
  584. "__type__": "cc.Node",
  585. "_name": "btnClose",
  586. "_objFlags": 0,
  587. "_parent": {
  588. "__id__": 7
  589. },
  590. "_children": [
  591. {
  592. "__id__": 15
  593. }
  594. ],
  595. "_active": true,
  596. "_components": [
  597. {
  598. "__id__": 22
  599. }
  600. ],
  601. "_prefab": {
  602. "__id__": 24
  603. },
  604. "_opacity": 255,
  605. "_color": {
  606. "__type__": "cc.Color",
  607. "r": 255,
  608. "g": 255,
  609. "b": 255,
  610. "a": 255
  611. },
  612. "_contentSize": {
  613. "__type__": "cc.Size",
  614. "width": 100,
  615. "height": 100
  616. },
  617. "_anchorPoint": {
  618. "__type__": "cc.Vec2",
  619. "x": 0.5,
  620. "y": 0.5
  621. },
  622. "_trs": {
  623. "__type__": "TypedArray",
  624. "ctor": "Float64Array",
  625. "array": [
  626. 334.76,
  627. 516.096,
  628. 0,
  629. 0,
  630. 0,
  631. 0,
  632. 1,
  633. 1,
  634. 1,
  635. 1
  636. ]
  637. },
  638. "_eulerAngles": {
  639. "__type__": "cc.Vec3",
  640. "x": 0,
  641. "y": 0,
  642. "z": 0
  643. },
  644. "_skewX": 0,
  645. "_skewY": 0,
  646. "_is3DNode": false,
  647. "_groupIndex": 0,
  648. "groupIndex": 0,
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.Node",
  653. "_name": "Background",
  654. "_objFlags": 512,
  655. "_parent": {
  656. "__id__": 14
  657. },
  658. "_children": [
  659. {
  660. "__id__": 16
  661. }
  662. ],
  663. "_active": true,
  664. "_components": [
  665. {
  666. "__id__": 19
  667. },
  668. {
  669. "__id__": 20
  670. }
  671. ],
  672. "_prefab": {
  673. "__id__": 21
  674. },
  675. "_opacity": 255,
  676. "_color": {
  677. "__type__": "cc.Color",
  678. "r": 255,
  679. "g": 255,
  680. "b": 255,
  681. "a": 255
  682. },
  683. "_contentSize": {
  684. "__type__": "cc.Size",
  685. "width": 82,
  686. "height": 127
  687. },
  688. "_anchorPoint": {
  689. "__type__": "cc.Vec2",
  690. "x": 0.5,
  691. "y": 0.5
  692. },
  693. "_trs": {
  694. "__type__": "TypedArray",
  695. "ctor": "Float64Array",
  696. "array": [
  697. 0,
  698. 0,
  699. 0,
  700. 0,
  701. 0,
  702. 0,
  703. 1,
  704. 1,
  705. 1,
  706. 1
  707. ]
  708. },
  709. "_eulerAngles": {
  710. "__type__": "cc.Vec3",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0
  714. },
  715. "_skewX": 0,
  716. "_skewY": 0,
  717. "_is3DNode": false,
  718. "_groupIndex": 0,
  719. "groupIndex": 0,
  720. "_id": ""
  721. },
  722. {
  723. "__type__": "cc.Node",
  724. "_name": "Label",
  725. "_objFlags": 512,
  726. "_parent": {
  727. "__id__": 15
  728. },
  729. "_children": [],
  730. "_active": false,
  731. "_components": [
  732. {
  733. "__id__": 17
  734. }
  735. ],
  736. "_prefab": {
  737. "__id__": 18
  738. },
  739. "_opacity": 255,
  740. "_color": {
  741. "__type__": "cc.Color",
  742. "r": 0,
  743. "g": 0,
  744. "b": 0,
  745. "a": 255
  746. },
  747. "_contentSize": {
  748. "__type__": "cc.Size",
  749. "width": 100,
  750. "height": 40
  751. },
  752. "_anchorPoint": {
  753. "__type__": "cc.Vec2",
  754. "x": 0.5,
  755. "y": 0.5
  756. },
  757. "_trs": {
  758. "__type__": "TypedArray",
  759. "ctor": "Float64Array",
  760. "array": [
  761. 0,
  762. 0,
  763. 0,
  764. 0,
  765. 0,
  766. 0,
  767. 1,
  768. 1,
  769. 1,
  770. 1
  771. ]
  772. },
  773. "_eulerAngles": {
  774. "__type__": "cc.Vec3",
  775. "x": 0,
  776. "y": 0,
  777. "z": 0
  778. },
  779. "_skewX": 0,
  780. "_skewY": 0,
  781. "_is3DNode": false,
  782. "_groupIndex": 0,
  783. "groupIndex": 0,
  784. "_id": ""
  785. },
  786. {
  787. "__type__": "cc.Label",
  788. "_name": "Label<Label>",
  789. "_objFlags": 0,
  790. "node": {
  791. "__id__": 16
  792. },
  793. "_enabled": true,
  794. "_materials": [
  795. {
  796. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  797. }
  798. ],
  799. "_useOriginalSize": false,
  800. "_string": "button",
  801. "_N$string": "button",
  802. "_fontSize": 20,
  803. "_lineHeight": 40,
  804. "_enableWrapText": false,
  805. "_N$file": null,
  806. "_isSystemFontUsed": true,
  807. "_spacingX": 0,
  808. "_batchAsBitmap": false,
  809. "_styleFlags": 0,
  810. "_underlineHeight": 0,
  811. "_N$horizontalAlign": 1,
  812. "_N$verticalAlign": 1,
  813. "_N$fontFamily": "Arial",
  814. "_N$overflow": 1,
  815. "_N$cacheMode": 1,
  816. "_id": ""
  817. },
  818. {
  819. "__type__": "cc.PrefabInfo",
  820. "root": {
  821. "__id__": 1
  822. },
  823. "asset": {
  824. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  825. },
  826. "fileId": "e9Uu9qKCtFt6rJbmnJclTy",
  827. "sync": false
  828. },
  829. {
  830. "__type__": "cc.Sprite",
  831. "_name": "Background<Sprite>",
  832. "_objFlags": 0,
  833. "node": {
  834. "__id__": 15
  835. },
  836. "_enabled": true,
  837. "_materials": [
  838. {
  839. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  840. }
  841. ],
  842. "_srcBlendFactor": 770,
  843. "_dstBlendFactor": 771,
  844. "_spriteFrame": {
  845. "__uuid__": "ca6b0d14-9d7e-42c2-adb0-07269c5df201"
  846. },
  847. "_type": 0,
  848. "_sizeMode": 1,
  849. "_fillType": 0,
  850. "_fillCenter": {
  851. "__type__": "cc.Vec2",
  852. "x": 0,
  853. "y": 0
  854. },
  855. "_fillStart": 0,
  856. "_fillRange": 0,
  857. "_isTrimmedMode": true,
  858. "_atlas": null,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Widget",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 15
  867. },
  868. "_enabled": true,
  869. "alignMode": 0,
  870. "_target": null,
  871. "_alignFlags": 45,
  872. "_left": 9,
  873. "_right": 9,
  874. "_top": -13.5,
  875. "_bottom": -13.5,
  876. "_verticalCenter": 0,
  877. "_horizontalCenter": 0,
  878. "_isAbsLeft": true,
  879. "_isAbsRight": true,
  880. "_isAbsTop": true,
  881. "_isAbsBottom": true,
  882. "_isAbsHorizontalCenter": true,
  883. "_isAbsVerticalCenter": true,
  884. "_originalWidth": 100,
  885. "_originalHeight": 40,
  886. "_id": ""
  887. },
  888. {
  889. "__type__": "cc.PrefabInfo",
  890. "root": {
  891. "__id__": 1
  892. },
  893. "asset": {
  894. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  895. },
  896. "fileId": "5f42/115hBGYEOldaIWkRw",
  897. "sync": false
  898. },
  899. {
  900. "__type__": "cc.Button",
  901. "_name": "",
  902. "_objFlags": 0,
  903. "node": {
  904. "__id__": 14
  905. },
  906. "_enabled": true,
  907. "_normalMaterial": {
  908. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  909. },
  910. "_grayMaterial": null,
  911. "duration": 0.1,
  912. "zoomScale": 0.8,
  913. "clickEvents": [
  914. {
  915. "__id__": 23
  916. }
  917. ],
  918. "_N$interactable": true,
  919. "_N$enableAutoGrayEffect": false,
  920. "_N$transition": 0,
  921. "transition": 0,
  922. "_N$normalColor": {
  923. "__type__": "cc.Color",
  924. "r": 230,
  925. "g": 230,
  926. "b": 230,
  927. "a": 255
  928. },
  929. "_N$pressedColor": {
  930. "__type__": "cc.Color",
  931. "r": 200,
  932. "g": 200,
  933. "b": 200,
  934. "a": 255
  935. },
  936. "pressedColor": {
  937. "__type__": "cc.Color",
  938. "r": 200,
  939. "g": 200,
  940. "b": 200,
  941. "a": 255
  942. },
  943. "_N$hoverColor": {
  944. "__type__": "cc.Color",
  945. "r": 255,
  946. "g": 255,
  947. "b": 255,
  948. "a": 255
  949. },
  950. "hoverColor": {
  951. "__type__": "cc.Color",
  952. "r": 255,
  953. "g": 255,
  954. "b": 255,
  955. "a": 255
  956. },
  957. "_N$disabledColor": {
  958. "__type__": "cc.Color",
  959. "r": 120,
  960. "g": 120,
  961. "b": 120,
  962. "a": 200
  963. },
  964. "_N$normalSprite": {
  965. "__uuid__": "c532e90f-bf60-436c-9c3e-84d95d058a4f"
  966. },
  967. "_N$pressedSprite": {
  968. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  969. },
  970. "pressedSprite": {
  971. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  972. },
  973. "_N$hoverSprite": {
  974. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  975. },
  976. "hoverSprite": {
  977. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  978. },
  979. "_N$disabledSprite": {
  980. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  981. },
  982. "_N$target": {
  983. "__id__": 14
  984. },
  985. "_id": ""
  986. },
  987. {
  988. "__type__": "cc.ClickEvent",
  989. "target": {
  990. "__id__": 1
  991. },
  992. "component": "",
  993. "_componentId": "9bce8jvdclNYqL0CTuynSkw",
  994. "handler": "clickClose",
  995. "customEventData": ""
  996. },
  997. {
  998. "__type__": "cc.PrefabInfo",
  999. "root": {
  1000. "__id__": 1
  1001. },
  1002. "asset": {
  1003. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1004. },
  1005. "fileId": "c5jrEzIUtG+4gUPUkpVs63",
  1006. "sync": false
  1007. },
  1008. {
  1009. "__type__": "cc.Sprite",
  1010. "_name": "giftbg<Sprite>",
  1011. "_objFlags": 0,
  1012. "node": {
  1013. "__id__": 7
  1014. },
  1015. "_enabled": true,
  1016. "_materials": [
  1017. {
  1018. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1019. }
  1020. ],
  1021. "_srcBlendFactor": 770,
  1022. "_dstBlendFactor": 771,
  1023. "_spriteFrame": {
  1024. "__uuid__": "98d360ff-6d97-4321-b89d-e61c7635baec"
  1025. },
  1026. "_type": 1,
  1027. "_sizeMode": 0,
  1028. "_fillType": 0,
  1029. "_fillCenter": {
  1030. "__type__": "cc.Vec2",
  1031. "x": 0,
  1032. "y": 0
  1033. },
  1034. "_fillStart": 0,
  1035. "_fillRange": 0,
  1036. "_isTrimmedMode": true,
  1037. "_atlas": null,
  1038. "_id": ""
  1039. },
  1040. {
  1041. "__type__": "cc.BlockInputEvents",
  1042. "_name": "",
  1043. "_objFlags": 0,
  1044. "node": {
  1045. "__id__": 7
  1046. },
  1047. "_enabled": true,
  1048. "_id": ""
  1049. },
  1050. {
  1051. "__type__": "cc.PrefabInfo",
  1052. "root": {
  1053. "__id__": 1
  1054. },
  1055. "asset": {
  1056. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1057. },
  1058. "fileId": "0dxH1wEfFN7b25vApLqG3R",
  1059. "sync": false
  1060. },
  1061. {
  1062. "__type__": "cc.Node",
  1063. "_name": "handPar",
  1064. "_objFlags": 0,
  1065. "_parent": {
  1066. "__id__": 6
  1067. },
  1068. "_children": [
  1069. {
  1070. "__id__": 29
  1071. }
  1072. ],
  1073. "_active": true,
  1074. "_components": [],
  1075. "_prefab": {
  1076. "__id__": 33
  1077. },
  1078. "_opacity": 255,
  1079. "_color": {
  1080. "__type__": "cc.Color",
  1081. "r": 255,
  1082. "g": 255,
  1083. "b": 255,
  1084. "a": 255
  1085. },
  1086. "_contentSize": {
  1087. "__type__": "cc.Size",
  1088. "width": 0,
  1089. "height": 0
  1090. },
  1091. "_anchorPoint": {
  1092. "__type__": "cc.Vec2",
  1093. "x": 0.5,
  1094. "y": 0.5
  1095. },
  1096. "_trs": {
  1097. "__type__": "TypedArray",
  1098. "ctor": "Float64Array",
  1099. "array": [
  1100. 0,
  1101. 64.379,
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 0,
  1106. 1,
  1107. 1,
  1108. 1,
  1109. 1
  1110. ]
  1111. },
  1112. "_eulerAngles": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 0,
  1115. "y": 0,
  1116. "z": 0
  1117. },
  1118. "_skewX": 0,
  1119. "_skewY": 0,
  1120. "_is3DNode": false,
  1121. "_groupIndex": 0,
  1122. "groupIndex": 0,
  1123. "_id": ""
  1124. },
  1125. {
  1126. "__type__": "cc.Node",
  1127. "_name": "hand",
  1128. "_objFlags": 0,
  1129. "_parent": {
  1130. "__id__": 28
  1131. },
  1132. "_children": [],
  1133. "_active": true,
  1134. "_components": [
  1135. {
  1136. "__id__": 30
  1137. },
  1138. {
  1139. "__id__": 31
  1140. }
  1141. ],
  1142. "_prefab": {
  1143. "__id__": 32
  1144. },
  1145. "_opacity": 255,
  1146. "_color": {
  1147. "__type__": "cc.Color",
  1148. "r": 255,
  1149. "g": 255,
  1150. "b": 255,
  1151. "a": 255
  1152. },
  1153. "_contentSize": {
  1154. "__type__": "cc.Size",
  1155. "width": 94,
  1156. "height": 124
  1157. },
  1158. "_anchorPoint": {
  1159. "__type__": "cc.Vec2",
  1160. "x": 0.5,
  1161. "y": 0.5
  1162. },
  1163. "_trs": {
  1164. "__type__": "TypedArray",
  1165. "ctor": "Float64Array",
  1166. "array": [
  1167. 0,
  1168. -170,
  1169. 0,
  1170. 0,
  1171. 0,
  1172. 0,
  1173. 1,
  1174. 1,
  1175. 1,
  1176. 1
  1177. ]
  1178. },
  1179. "_eulerAngles": {
  1180. "__type__": "cc.Vec3",
  1181. "x": 0,
  1182. "y": 0,
  1183. "z": 0
  1184. },
  1185. "_skewX": 0,
  1186. "_skewY": 0,
  1187. "_is3DNode": false,
  1188. "_groupIndex": 0,
  1189. "groupIndex": 0,
  1190. "_id": ""
  1191. },
  1192. {
  1193. "__type__": "cc.Sprite",
  1194. "_name": "hand<Sprite>",
  1195. "_objFlags": 0,
  1196. "node": {
  1197. "__id__": 29
  1198. },
  1199. "_enabled": true,
  1200. "_materials": [
  1201. {
  1202. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1203. }
  1204. ],
  1205. "_srcBlendFactor": 770,
  1206. "_dstBlendFactor": 771,
  1207. "_spriteFrame": {
  1208. "__uuid__": "cd129dc3-1855-46fc-870d-282077575cc6"
  1209. },
  1210. "_type": 0,
  1211. "_sizeMode": 1,
  1212. "_fillType": 0,
  1213. "_fillCenter": {
  1214. "__type__": "cc.Vec2",
  1215. "x": 0,
  1216. "y": 0
  1217. },
  1218. "_fillStart": 0,
  1219. "_fillRange": 0,
  1220. "_isTrimmedMode": true,
  1221. "_atlas": null,
  1222. "_id": ""
  1223. },
  1224. {
  1225. "__type__": "cc.Animation",
  1226. "_name": "",
  1227. "_objFlags": 0,
  1228. "node": {
  1229. "__id__": 29
  1230. },
  1231. "_enabled": true,
  1232. "_defaultClip": {
  1233. "__uuid__": "ef34e143-af7a-49aa-b2c3-efb18131bf2f"
  1234. },
  1235. "_clips": [
  1236. {
  1237. "__uuid__": "ef34e143-af7a-49aa-b2c3-efb18131bf2f"
  1238. }
  1239. ],
  1240. "playOnLoad": true,
  1241. "_id": ""
  1242. },
  1243. {
  1244. "__type__": "cc.PrefabInfo",
  1245. "root": {
  1246. "__id__": 1
  1247. },
  1248. "asset": {
  1249. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1250. },
  1251. "fileId": "52YIn1MnhFL5dRaUHv3ufe",
  1252. "sync": false
  1253. },
  1254. {
  1255. "__type__": "cc.PrefabInfo",
  1256. "root": {
  1257. "__id__": 1
  1258. },
  1259. "asset": {
  1260. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1261. },
  1262. "fileId": "f0YGMz2pVPtLEDpEGJTNyV",
  1263. "sync": false
  1264. },
  1265. {
  1266. "__type__": "cc.Node",
  1267. "_name": "labDes",
  1268. "_objFlags": 0,
  1269. "_parent": {
  1270. "__id__": 6
  1271. },
  1272. "_children": [],
  1273. "_active": true,
  1274. "_components": [
  1275. {
  1276. "__id__": 35
  1277. }
  1278. ],
  1279. "_prefab": {
  1280. "__id__": 36
  1281. },
  1282. "_opacity": 255,
  1283. "_color": {
  1284. "__type__": "cc.Color",
  1285. "r": 255,
  1286. "g": 0,
  1287. "b": 0,
  1288. "a": 255
  1289. },
  1290. "_contentSize": {
  1291. "__type__": "cc.Size",
  1292. "width": 360,
  1293. "height": 75.6
  1294. },
  1295. "_anchorPoint": {
  1296. "__type__": "cc.Vec2",
  1297. "x": 0.5,
  1298. "y": 0.5
  1299. },
  1300. "_trs": {
  1301. "__type__": "TypedArray",
  1302. "ctor": "Float64Array",
  1303. "array": [
  1304. 0,
  1305. -235.763,
  1306. 0,
  1307. 0,
  1308. 0,
  1309. 0,
  1310. 1,
  1311. 1,
  1312. 1,
  1313. 1
  1314. ]
  1315. },
  1316. "_eulerAngles": {
  1317. "__type__": "cc.Vec3",
  1318. "x": 0,
  1319. "y": 0,
  1320. "z": 0
  1321. },
  1322. "_skewX": 0,
  1323. "_skewY": 0,
  1324. "_is3DNode": false,
  1325. "_groupIndex": 0,
  1326. "groupIndex": 0,
  1327. "_id": ""
  1328. },
  1329. {
  1330. "__type__": "cc.Label",
  1331. "_name": "labDes<Label>",
  1332. "_objFlags": 0,
  1333. "node": {
  1334. "__id__": 34
  1335. },
  1336. "_enabled": true,
  1337. "_materials": [
  1338. {
  1339. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1340. }
  1341. ],
  1342. "_useOriginalSize": false,
  1343. "_string": "点击上方广告",
  1344. "_N$string": "点击上方广告",
  1345. "_fontSize": 60,
  1346. "_lineHeight": 60,
  1347. "_enableWrapText": true,
  1348. "_N$file": null,
  1349. "_isSystemFontUsed": true,
  1350. "_spacingX": 0,
  1351. "_batchAsBitmap": false,
  1352. "_styleFlags": 1,
  1353. "_underlineHeight": 0,
  1354. "_N$horizontalAlign": 1,
  1355. "_N$verticalAlign": 1,
  1356. "_N$fontFamily": "Arial",
  1357. "_N$overflow": 0,
  1358. "_N$cacheMode": 0,
  1359. "_id": ""
  1360. },
  1361. {
  1362. "__type__": "cc.PrefabInfo",
  1363. "root": {
  1364. "__id__": 1
  1365. },
  1366. "asset": {
  1367. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1368. },
  1369. "fileId": "90CIu8l6lOYbyNd7tdPKoU",
  1370. "sync": false
  1371. },
  1372. {
  1373. "__type__": "cc.Node",
  1374. "_name": "btnBanner",
  1375. "_objFlags": 0,
  1376. "_parent": {
  1377. "__id__": 6
  1378. },
  1379. "_children": [
  1380. {
  1381. "__id__": 38
  1382. }
  1383. ],
  1384. "_active": true,
  1385. "_components": [
  1386. {
  1387. "__id__": 41
  1388. },
  1389. {
  1390. "__id__": 42
  1391. }
  1392. ],
  1393. "_prefab": {
  1394. "__id__": 44
  1395. },
  1396. "_opacity": 255,
  1397. "_color": {
  1398. "__type__": "cc.Color",
  1399. "r": 255,
  1400. "g": 255,
  1401. "b": 255,
  1402. "a": 255
  1403. },
  1404. "_contentSize": {
  1405. "__type__": "cc.Size",
  1406. "width": 620,
  1407. "height": 382
  1408. },
  1409. "_anchorPoint": {
  1410. "__type__": "cc.Vec2",
  1411. "x": 0.5,
  1412. "y": 0.5
  1413. },
  1414. "_trs": {
  1415. "__type__": "TypedArray",
  1416. "ctor": "Float64Array",
  1417. "array": [
  1418. 0,
  1419. 213.585,
  1420. 0,
  1421. 0,
  1422. 0,
  1423. 0,
  1424. 1,
  1425. 1,
  1426. 1,
  1427. 1
  1428. ]
  1429. },
  1430. "_eulerAngles": {
  1431. "__type__": "cc.Vec3",
  1432. "x": 0,
  1433. "y": 0,
  1434. "z": 0
  1435. },
  1436. "_skewX": 0,
  1437. "_skewY": 0,
  1438. "_is3DNode": false,
  1439. "_groupIndex": 0,
  1440. "groupIndex": 0,
  1441. "_id": ""
  1442. },
  1443. {
  1444. "__type__": "cc.Node",
  1445. "_name": "moreGame_btn_bannerClose",
  1446. "_objFlags": 0,
  1447. "_parent": {
  1448. "__id__": 37
  1449. },
  1450. "_children": [],
  1451. "_active": true,
  1452. "_components": [
  1453. {
  1454. "__id__": 39
  1455. }
  1456. ],
  1457. "_prefab": {
  1458. "__id__": 40
  1459. },
  1460. "_opacity": 255,
  1461. "_color": {
  1462. "__type__": "cc.Color",
  1463. "r": 255,
  1464. "g": 255,
  1465. "b": 255,
  1466. "a": 255
  1467. },
  1468. "_contentSize": {
  1469. "__type__": "cc.Size",
  1470. "width": 38,
  1471. "height": 38
  1472. },
  1473. "_anchorPoint": {
  1474. "__type__": "cc.Vec2",
  1475. "x": 0.5,
  1476. "y": 0.5
  1477. },
  1478. "_trs": {
  1479. "__type__": "TypedArray",
  1480. "ctor": "Float64Array",
  1481. "array": [
  1482. 278,
  1483. 160,
  1484. 0,
  1485. 0,
  1486. 0,
  1487. 0,
  1488. 1,
  1489. 1,
  1490. 1,
  1491. 1
  1492. ]
  1493. },
  1494. "_eulerAngles": {
  1495. "__type__": "cc.Vec3",
  1496. "x": 0,
  1497. "y": 0,
  1498. "z": 0
  1499. },
  1500. "_skewX": 0,
  1501. "_skewY": 0,
  1502. "_is3DNode": false,
  1503. "_groupIndex": 0,
  1504. "groupIndex": 0,
  1505. "_id": ""
  1506. },
  1507. {
  1508. "__type__": "cc.Sprite",
  1509. "_name": "",
  1510. "_objFlags": 0,
  1511. "node": {
  1512. "__id__": 38
  1513. },
  1514. "_enabled": true,
  1515. "_materials": [
  1516. {
  1517. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1518. }
  1519. ],
  1520. "_srcBlendFactor": 770,
  1521. "_dstBlendFactor": 771,
  1522. "_spriteFrame": {
  1523. "__uuid__": "c6176b1a-4695-4273-913e-d4f6638ed050"
  1524. },
  1525. "_type": 0,
  1526. "_sizeMode": 1,
  1527. "_fillType": 0,
  1528. "_fillCenter": {
  1529. "__type__": "cc.Vec2",
  1530. "x": 0,
  1531. "y": 0
  1532. },
  1533. "_fillStart": 0,
  1534. "_fillRange": 0,
  1535. "_isTrimmedMode": true,
  1536. "_atlas": null,
  1537. "_id": ""
  1538. },
  1539. {
  1540. "__type__": "cc.PrefabInfo",
  1541. "root": {
  1542. "__id__": 1
  1543. },
  1544. "asset": {
  1545. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1546. },
  1547. "fileId": "7ae7orlTpElZe2wYK3YU2e",
  1548. "sync": false
  1549. },
  1550. {
  1551. "__type__": "cc.Sprite",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "node": {
  1555. "__id__": 37
  1556. },
  1557. "_enabled": true,
  1558. "_materials": [
  1559. {
  1560. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1561. }
  1562. ],
  1563. "_srcBlendFactor": 770,
  1564. "_dstBlendFactor": 771,
  1565. "_spriteFrame": null,
  1566. "_type": 0,
  1567. "_sizeMode": 0,
  1568. "_fillType": 0,
  1569. "_fillCenter": {
  1570. "__type__": "cc.Vec2",
  1571. "x": 0,
  1572. "y": 0
  1573. },
  1574. "_fillStart": 0,
  1575. "_fillRange": 0,
  1576. "_isTrimmedMode": true,
  1577. "_atlas": null,
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.Button",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "node": {
  1585. "__id__": 37
  1586. },
  1587. "_enabled": true,
  1588. "_normalMaterial": null,
  1589. "_grayMaterial": null,
  1590. "duration": 0.1,
  1591. "zoomScale": 1.2,
  1592. "clickEvents": [
  1593. {
  1594. "__id__": 43
  1595. }
  1596. ],
  1597. "_N$interactable": true,
  1598. "_N$enableAutoGrayEffect": false,
  1599. "_N$transition": 0,
  1600. "transition": 0,
  1601. "_N$normalColor": {
  1602. "__type__": "cc.Color",
  1603. "r": 255,
  1604. "g": 255,
  1605. "b": 255,
  1606. "a": 255
  1607. },
  1608. "_N$pressedColor": {
  1609. "__type__": "cc.Color",
  1610. "r": 211,
  1611. "g": 211,
  1612. "b": 211,
  1613. "a": 255
  1614. },
  1615. "pressedColor": {
  1616. "__type__": "cc.Color",
  1617. "r": 211,
  1618. "g": 211,
  1619. "b": 211,
  1620. "a": 255
  1621. },
  1622. "_N$hoverColor": {
  1623. "__type__": "cc.Color",
  1624. "r": 255,
  1625. "g": 255,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "hoverColor": {
  1630. "__type__": "cc.Color",
  1631. "r": 255,
  1632. "g": 255,
  1633. "b": 255,
  1634. "a": 255
  1635. },
  1636. "_N$disabledColor": {
  1637. "__type__": "cc.Color",
  1638. "r": 124,
  1639. "g": 124,
  1640. "b": 124,
  1641. "a": 255
  1642. },
  1643. "_N$normalSprite": null,
  1644. "_N$pressedSprite": null,
  1645. "pressedSprite": null,
  1646. "_N$hoverSprite": null,
  1647. "hoverSprite": null,
  1648. "_N$disabledSprite": null,
  1649. "_N$target": {
  1650. "__id__": 37
  1651. },
  1652. "_id": ""
  1653. },
  1654. {
  1655. "__type__": "cc.ClickEvent",
  1656. "target": {
  1657. "__id__": 1
  1658. },
  1659. "component": "",
  1660. "_componentId": "9bce8jvdclNYqL0CTuynSkw",
  1661. "handler": "clickBanner",
  1662. "customEventData": ""
  1663. },
  1664. {
  1665. "__type__": "cc.PrefabInfo",
  1666. "root": {
  1667. "__id__": 1
  1668. },
  1669. "asset": {
  1670. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1671. },
  1672. "fileId": "889mwvzSNFEKOdQkSTr9+g",
  1673. "sync": false
  1674. },
  1675. {
  1676. "__type__": "cc.Node",
  1677. "_name": "labAward",
  1678. "_objFlags": 0,
  1679. "_parent": {
  1680. "__id__": 6
  1681. },
  1682. "_children": [],
  1683. "_active": true,
  1684. "_components": [
  1685. {
  1686. "__id__": 46
  1687. }
  1688. ],
  1689. "_prefab": {
  1690. "__id__": 47
  1691. },
  1692. "_opacity": 255,
  1693. "_color": {
  1694. "__type__": "cc.Color",
  1695. "r": 0,
  1696. "g": 0,
  1697. "b": 0,
  1698. "a": 255
  1699. },
  1700. "_contentSize": {
  1701. "__type__": "cc.Size",
  1702. "width": 240,
  1703. "height": 50.4
  1704. },
  1705. "_anchorPoint": {
  1706. "__type__": "cc.Vec2",
  1707. "x": 0.5,
  1708. "y": 0.5
  1709. },
  1710. "_trs": {
  1711. "__type__": "TypedArray",
  1712. "ctor": "Float64Array",
  1713. "array": [
  1714. 0,
  1715. -314.594,
  1716. 0,
  1717. 0,
  1718. 0,
  1719. 0,
  1720. 1,
  1721. 1,
  1722. 1,
  1723. 1
  1724. ]
  1725. },
  1726. "_eulerAngles": {
  1727. "__type__": "cc.Vec3",
  1728. "x": 0,
  1729. "y": 0,
  1730. "z": 0
  1731. },
  1732. "_skewX": 0,
  1733. "_skewY": 0,
  1734. "_is3DNode": false,
  1735. "_groupIndex": 0,
  1736. "groupIndex": 0,
  1737. "_id": ""
  1738. },
  1739. {
  1740. "__type__": "cc.Label",
  1741. "_name": "labAward<Label>",
  1742. "_objFlags": 0,
  1743. "node": {
  1744. "__id__": 45
  1745. },
  1746. "_enabled": true,
  1747. "_materials": [
  1748. {
  1749. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1750. }
  1751. ],
  1752. "_useOriginalSize": false,
  1753. "_string": "冷却时间减半",
  1754. "_N$string": "冷却时间减半",
  1755. "_fontSize": 40,
  1756. "_lineHeight": 40,
  1757. "_enableWrapText": true,
  1758. "_N$file": null,
  1759. "_isSystemFontUsed": true,
  1760. "_spacingX": 0,
  1761. "_batchAsBitmap": false,
  1762. "_styleFlags": 0,
  1763. "_underlineHeight": 0,
  1764. "_N$horizontalAlign": 1,
  1765. "_N$verticalAlign": 1,
  1766. "_N$fontFamily": "Arial",
  1767. "_N$overflow": 0,
  1768. "_N$cacheMode": 0,
  1769. "_id": ""
  1770. },
  1771. {
  1772. "__type__": "cc.PrefabInfo",
  1773. "root": {
  1774. "__id__": 1
  1775. },
  1776. "asset": {
  1777. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  1778. },
  1779. "fileId": "b5Jc7fHiBGbqUHVeg96jPH",
  1780. "sync": false
  1781. },
  1782. {
  1783. "__type__": "cc.Node",
  1784. "_name": "btnGetAward",
  1785. "_objFlags": 0,
  1786. "_parent": {
  1787. "__id__": 6
  1788. },
  1789. "_children": [
  1790. {
  1791. "__id__": 49
  1792. }
  1793. ],
  1794. "_active": true,
  1795. "_components": [
  1796. {
  1797. "__id__": 56
  1798. },
  1799. {
  1800. "__id__": 58
  1801. }
  1802. ],
  1803. "_prefab": {
  1804. "__id__": 59
  1805. },
  1806. "_opacity": 255,
  1807. "_color": {
  1808. "__type__": "cc.Color",
  1809. "r": 255,
  1810. "g": 255,
  1811. "b": 255,
  1812. "a": 255
  1813. },
  1814. "_contentSize": {
  1815. "__type__": "cc.Size",
  1816. "width": 366,
  1817. "height": 127
  1818. },
  1819. "_anchorPoint": {
  1820. "__type__": "cc.Vec2",
  1821. "x": 0.5,
  1822. "y": 0.5
  1823. },
  1824. "_trs": {
  1825. "__type__": "TypedArray",
  1826. "ctor": "Float64Array",
  1827. "array": [
  1828. 0,
  1829. -448,
  1830. 0,
  1831. 0,
  1832. 0,
  1833. 0,
  1834. 1,
  1835. 1,
  1836. 1,
  1837. 1
  1838. ]
  1839. },
  1840. "_eulerAngles": {
  1841. "__type__": "cc.Vec3",
  1842. "x": 0,
  1843. "y": 0,
  1844. "z": 0
  1845. },
  1846. "_skewX": 0,
  1847. "_skewY": 0,
  1848. "_is3DNode": false,
  1849. "_groupIndex": 0,
  1850. "groupIndex": 0,
  1851. "_id": ""
  1852. },
  1853. {
  1854. "__type__": "cc.Node",
  1855. "_name": "jiasu_btn",
  1856. "_objFlags": 0,
  1857. "_parent": {
  1858. "__id__": 48
  1859. },
  1860. "_children": [
  1861. {
  1862. "__id__": 50
  1863. }
  1864. ],
  1865. "_active": true,
  1866. "_components": [
  1867. {
  1868. "__id__": 54
  1869. }
  1870. ],
  1871. "_prefab": {
  1872. "__id__": 55
  1873. },
  1874. "_opacity": 255,
  1875. "_color": {
  1876. "__type__": "cc.Color",
  1877. "r": 255,
  1878. "g": 255,
  1879. "b": 255,
  1880. "a": 255
  1881. },
  1882. "_contentSize": {
  1883. "__type__": "cc.Size",
  1884. "width": 324,
  1885. "height": 110
  1886. },
  1887. "_anchorPoint": {
  1888. "__type__": "cc.Vec2",
  1889. "x": 0.5,
  1890. "y": 0.5
  1891. },
  1892. "_trs": {
  1893. "__type__": "TypedArray",
  1894. "ctor": "Float64Array",
  1895. "array": [
  1896. 0,
  1897. 0,
  1898. 0,
  1899. 0,
  1900. 0,
  1901. 0,
  1902. 1,
  1903. 1,
  1904. 1,
  1905. 1
  1906. ]
  1907. },
  1908. "_eulerAngles": {
  1909. "__type__": "cc.Vec3",
  1910. "x": 0,
  1911. "y": 0,
  1912. "z": 0
  1913. },
  1914. "_skewX": 0,
  1915. "_skewY": 0,
  1916. "_is3DNode": false,
  1917. "_groupIndex": 0,
  1918. "groupIndex": 0,
  1919. "_id": ""
  1920. },
  1921. {
  1922. "__type__": "cc.Node",
  1923. "_name": "labGetAward",
  1924. "_objFlags": 0,
  1925. "_parent": {
  1926. "__id__": 49
  1927. },
  1928. "_children": [],
  1929. "_active": true,
  1930. "_components": [
  1931. {
  1932. "__id__": 51
  1933. },
  1934. {
  1935. "__id__": 52
  1936. }
  1937. ],
  1938. "_prefab": {
  1939. "__id__": 53
  1940. },
  1941. "_opacity": 255,
  1942. "_color": {
  1943. "__type__": "cc.Color",
  1944. "r": 255,
  1945. "g": 255,
  1946. "b": 255,
  1947. "a": 255
  1948. },
  1949. "_contentSize": {
  1950. "__type__": "cc.Size",
  1951. "width": 166,
  1952. "height": 56.4
  1953. },
  1954. "_anchorPoint": {
  1955. "__type__": "cc.Vec2",
  1956. "x": 0.5,
  1957. "y": 0.5
  1958. },
  1959. "_trs": {
  1960. "__type__": "TypedArray",
  1961. "ctor": "Float64Array",
  1962. "array": [
  1963. 0,
  1964. 5,
  1965. 0,
  1966. 0,
  1967. 0,
  1968. 0,
  1969. 1,
  1970. 1,
  1971. 1,
  1972. 1
  1973. ]
  1974. },
  1975. "_eulerAngles": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 0,
  1978. "y": 0,
  1979. "z": 0
  1980. },
  1981. "_skewX": 0,
  1982. "_skewY": 0,
  1983. "_is3DNode": false,
  1984. "_groupIndex": 0,
  1985. "groupIndex": 0,
  1986. "_id": ""
  1987. },
  1988. {
  1989. "__type__": "cc.Label",
  1990. "_name": "labGetAward<Label>",
  1991. "_objFlags": 0,
  1992. "node": {
  1993. "__id__": 50
  1994. },
  1995. "_enabled": true,
  1996. "_materials": [
  1997. {
  1998. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1999. }
  2000. ],
  2001. "_useOriginalSize": false,
  2002. "_string": "领取奖励",
  2003. "_N$string": "领取奖励",
  2004. "_fontSize": 40,
  2005. "_lineHeight": 40,
  2006. "_enableWrapText": true,
  2007. "_N$file": null,
  2008. "_isSystemFontUsed": true,
  2009. "_spacingX": 0,
  2010. "_batchAsBitmap": false,
  2011. "_styleFlags": 1,
  2012. "_underlineHeight": 0,
  2013. "_N$horizontalAlign": 1,
  2014. "_N$verticalAlign": 1,
  2015. "_N$fontFamily": "Arial",
  2016. "_N$overflow": 0,
  2017. "_N$cacheMode": 0,
  2018. "_id": ""
  2019. },
  2020. {
  2021. "__type__": "cc.LabelOutline",
  2022. "_name": "",
  2023. "_objFlags": 0,
  2024. "node": {
  2025. "__id__": 50
  2026. },
  2027. "_enabled": true,
  2028. "_color": {
  2029. "__type__": "cc.Color",
  2030. "r": 157,
  2031. "g": 104,
  2032. "b": 0,
  2033. "a": 255
  2034. },
  2035. "_width": 3,
  2036. "_id": ""
  2037. },
  2038. {
  2039. "__type__": "cc.PrefabInfo",
  2040. "root": {
  2041. "__id__": 1
  2042. },
  2043. "asset": {
  2044. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2045. },
  2046. "fileId": "cbgF/sL/JNLqD2KeRBBWTF",
  2047. "sync": false
  2048. },
  2049. {
  2050. "__type__": "cc.Sprite",
  2051. "_name": "jiasu_btn<Sprite>",
  2052. "_objFlags": 0,
  2053. "node": {
  2054. "__id__": 49
  2055. },
  2056. "_enabled": true,
  2057. "_materials": [
  2058. {
  2059. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2060. }
  2061. ],
  2062. "_srcBlendFactor": 770,
  2063. "_dstBlendFactor": 771,
  2064. "_spriteFrame": {
  2065. "__uuid__": "949fe4b0-57e1-4f82-9fac-d9e2bb2c41d1"
  2066. },
  2067. "_type": 0,
  2068. "_sizeMode": 1,
  2069. "_fillType": 0,
  2070. "_fillCenter": {
  2071. "__type__": "cc.Vec2",
  2072. "x": 0,
  2073. "y": 0
  2074. },
  2075. "_fillStart": 0,
  2076. "_fillRange": 0,
  2077. "_isTrimmedMode": true,
  2078. "_atlas": null,
  2079. "_id": ""
  2080. },
  2081. {
  2082. "__type__": "cc.PrefabInfo",
  2083. "root": {
  2084. "__id__": 1
  2085. },
  2086. "asset": {
  2087. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2088. },
  2089. "fileId": "88vXqBnfdJJ4R1DdOK+qKi",
  2090. "sync": false
  2091. },
  2092. {
  2093. "__type__": "cc.Button",
  2094. "_name": "",
  2095. "_objFlags": 0,
  2096. "node": {
  2097. "__id__": 48
  2098. },
  2099. "_enabled": true,
  2100. "_normalMaterial": {
  2101. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2102. },
  2103. "_grayMaterial": null,
  2104. "duration": 0.1,
  2105. "zoomScale": 0.8,
  2106. "clickEvents": [
  2107. {
  2108. "__id__": 57
  2109. }
  2110. ],
  2111. "_N$interactable": true,
  2112. "_N$enableAutoGrayEffect": false,
  2113. "_N$transition": 3,
  2114. "transition": 3,
  2115. "_N$normalColor": {
  2116. "__type__": "cc.Color",
  2117. "r": 230,
  2118. "g": 230,
  2119. "b": 230,
  2120. "a": 255
  2121. },
  2122. "_N$pressedColor": {
  2123. "__type__": "cc.Color",
  2124. "r": 200,
  2125. "g": 200,
  2126. "b": 200,
  2127. "a": 255
  2128. },
  2129. "pressedColor": {
  2130. "__type__": "cc.Color",
  2131. "r": 200,
  2132. "g": 200,
  2133. "b": 200,
  2134. "a": 255
  2135. },
  2136. "_N$hoverColor": {
  2137. "__type__": "cc.Color",
  2138. "r": 255,
  2139. "g": 255,
  2140. "b": 255,
  2141. "a": 255
  2142. },
  2143. "hoverColor": {
  2144. "__type__": "cc.Color",
  2145. "r": 255,
  2146. "g": 255,
  2147. "b": 255,
  2148. "a": 255
  2149. },
  2150. "_N$disabledColor": {
  2151. "__type__": "cc.Color",
  2152. "r": 120,
  2153. "g": 120,
  2154. "b": 120,
  2155. "a": 200
  2156. },
  2157. "_N$normalSprite": {
  2158. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2159. },
  2160. "_N$pressedSprite": {
  2161. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2162. },
  2163. "pressedSprite": {
  2164. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2165. },
  2166. "_N$hoverSprite": {
  2167. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2168. },
  2169. "hoverSprite": {
  2170. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2171. },
  2172. "_N$disabledSprite": {
  2173. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2174. },
  2175. "_N$target": {
  2176. "__id__": 49
  2177. },
  2178. "_id": ""
  2179. },
  2180. {
  2181. "__type__": "cc.ClickEvent",
  2182. "target": {
  2183. "__id__": 1
  2184. },
  2185. "component": "",
  2186. "_componentId": "9bce8jvdclNYqL0CTuynSkw",
  2187. "handler": "clickGetAward",
  2188. "customEventData": ""
  2189. },
  2190. {
  2191. "__type__": "cc.Animation",
  2192. "_name": "",
  2193. "_objFlags": 0,
  2194. "node": {
  2195. "__id__": 48
  2196. },
  2197. "_enabled": true,
  2198. "_defaultClip": {
  2199. "__uuid__": "23ef6147-2b59-46da-a6db-3859f2e055b0"
  2200. },
  2201. "_clips": [
  2202. {
  2203. "__uuid__": "23ef6147-2b59-46da-a6db-3859f2e055b0"
  2204. }
  2205. ],
  2206. "playOnLoad": true,
  2207. "_id": ""
  2208. },
  2209. {
  2210. "__type__": "cc.PrefabInfo",
  2211. "root": {
  2212. "__id__": 1
  2213. },
  2214. "asset": {
  2215. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2216. },
  2217. "fileId": "3cZhnwg+VFAal0BB1rYRIa",
  2218. "sync": false
  2219. },
  2220. {
  2221. "__type__": "cc.Node",
  2222. "_name": "btnGetNo",
  2223. "_objFlags": 0,
  2224. "_parent": {
  2225. "__id__": 6
  2226. },
  2227. "_children": [
  2228. {
  2229. "__id__": 61
  2230. }
  2231. ],
  2232. "_active": true,
  2233. "_components": [
  2234. {
  2235. "__id__": 67
  2236. }
  2237. ],
  2238. "_prefab": {
  2239. "__id__": 69
  2240. },
  2241. "_opacity": 255,
  2242. "_color": {
  2243. "__type__": "cc.Color",
  2244. "r": 255,
  2245. "g": 255,
  2246. "b": 255,
  2247. "a": 255
  2248. },
  2249. "_contentSize": {
  2250. "__type__": "cc.Size",
  2251. "width": 366,
  2252. "height": 127
  2253. },
  2254. "_anchorPoint": {
  2255. "__type__": "cc.Vec2",
  2256. "x": 0.5,
  2257. "y": 0.5
  2258. },
  2259. "_trs": {
  2260. "__type__": "TypedArray",
  2261. "ctor": "Float64Array",
  2262. "array": [
  2263. 0,
  2264. -448,
  2265. 0,
  2266. 0,
  2267. 0,
  2268. 0,
  2269. 1,
  2270. 1,
  2271. 1,
  2272. 1
  2273. ]
  2274. },
  2275. "_eulerAngles": {
  2276. "__type__": "cc.Vec3",
  2277. "x": 0,
  2278. "y": 0,
  2279. "z": 0
  2280. },
  2281. "_skewX": 0,
  2282. "_skewY": 0,
  2283. "_is3DNode": false,
  2284. "_groupIndex": 0,
  2285. "groupIndex": 0,
  2286. "_id": ""
  2287. },
  2288. {
  2289. "__type__": "cc.Node",
  2290. "_name": "jiasu_btn",
  2291. "_objFlags": 0,
  2292. "_parent": {
  2293. "__id__": 60
  2294. },
  2295. "_children": [
  2296. {
  2297. "__id__": 62
  2298. }
  2299. ],
  2300. "_active": true,
  2301. "_components": [
  2302. {
  2303. "__id__": 65
  2304. }
  2305. ],
  2306. "_prefab": {
  2307. "__id__": 66
  2308. },
  2309. "_opacity": 255,
  2310. "_color": {
  2311. "__type__": "cc.Color",
  2312. "r": 255,
  2313. "g": 255,
  2314. "b": 255,
  2315. "a": 255
  2316. },
  2317. "_contentSize": {
  2318. "__type__": "cc.Size",
  2319. "width": 362,
  2320. "height": 115
  2321. },
  2322. "_anchorPoint": {
  2323. "__type__": "cc.Vec2",
  2324. "x": 0.5,
  2325. "y": 0.5
  2326. },
  2327. "_trs": {
  2328. "__type__": "TypedArray",
  2329. "ctor": "Float64Array",
  2330. "array": [
  2331. 0,
  2332. 0,
  2333. 0,
  2334. 0,
  2335. 0,
  2336. 0,
  2337. 1,
  2338. 1,
  2339. 1,
  2340. 1
  2341. ]
  2342. },
  2343. "_eulerAngles": {
  2344. "__type__": "cc.Vec3",
  2345. "x": 0,
  2346. "y": 0,
  2347. "z": 0
  2348. },
  2349. "_skewX": 0,
  2350. "_skewY": 0,
  2351. "_is3DNode": false,
  2352. "_groupIndex": 0,
  2353. "groupIndex": 0,
  2354. "_id": ""
  2355. },
  2356. {
  2357. "__type__": "cc.Node",
  2358. "_name": "labGetAward",
  2359. "_objFlags": 0,
  2360. "_parent": {
  2361. "__id__": 61
  2362. },
  2363. "_children": [],
  2364. "_active": true,
  2365. "_components": [
  2366. {
  2367. "__id__": 63
  2368. }
  2369. ],
  2370. "_prefab": {
  2371. "__id__": 64
  2372. },
  2373. "_opacity": 255,
  2374. "_color": {
  2375. "__type__": "cc.Color",
  2376. "r": 104,
  2377. "g": 49,
  2378. "b": 11,
  2379. "a": 255
  2380. },
  2381. "_contentSize": {
  2382. "__type__": "cc.Size",
  2383. "width": 160,
  2384. "height": 50.4
  2385. },
  2386. "_anchorPoint": {
  2387. "__type__": "cc.Vec2",
  2388. "x": 0.5,
  2389. "y": 0.5
  2390. },
  2391. "_trs": {
  2392. "__type__": "TypedArray",
  2393. "ctor": "Float64Array",
  2394. "array": [
  2395. 0,
  2396. 5,
  2397. 0,
  2398. 0,
  2399. 0,
  2400. 0,
  2401. 1,
  2402. 1,
  2403. 1,
  2404. 1
  2405. ]
  2406. },
  2407. "_eulerAngles": {
  2408. "__type__": "cc.Vec3",
  2409. "x": 0,
  2410. "y": 0,
  2411. "z": 0
  2412. },
  2413. "_skewX": 0,
  2414. "_skewY": 0,
  2415. "_is3DNode": false,
  2416. "_groupIndex": 0,
  2417. "groupIndex": 0,
  2418. "_id": ""
  2419. },
  2420. {
  2421. "__type__": "cc.Label",
  2422. "_name": "labGetAward<Label>",
  2423. "_objFlags": 0,
  2424. "node": {
  2425. "__id__": 62
  2426. },
  2427. "_enabled": true,
  2428. "_materials": [
  2429. {
  2430. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2431. }
  2432. ],
  2433. "_useOriginalSize": false,
  2434. "_string": "领取奖励",
  2435. "_N$string": "领取奖励",
  2436. "_fontSize": 40,
  2437. "_lineHeight": 40,
  2438. "_enableWrapText": true,
  2439. "_N$file": null,
  2440. "_isSystemFontUsed": true,
  2441. "_spacingX": 0,
  2442. "_batchAsBitmap": false,
  2443. "_styleFlags": 1,
  2444. "_underlineHeight": 0,
  2445. "_N$horizontalAlign": 1,
  2446. "_N$verticalAlign": 1,
  2447. "_N$fontFamily": "Arial",
  2448. "_N$overflow": 0,
  2449. "_N$cacheMode": 0,
  2450. "_id": ""
  2451. },
  2452. {
  2453. "__type__": "cc.PrefabInfo",
  2454. "root": {
  2455. "__id__": 1
  2456. },
  2457. "asset": {
  2458. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2459. },
  2460. "fileId": "dcgE8FIXlD05zWU7wgVia3",
  2461. "sync": false
  2462. },
  2463. {
  2464. "__type__": "cc.Sprite",
  2465. "_name": "jiasu_btn<Sprite>",
  2466. "_objFlags": 0,
  2467. "node": {
  2468. "__id__": 61
  2469. },
  2470. "_enabled": true,
  2471. "_materials": [
  2472. {
  2473. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2474. }
  2475. ],
  2476. "_srcBlendFactor": 770,
  2477. "_dstBlendFactor": 771,
  2478. "_spriteFrame": {
  2479. "__uuid__": "e84a90b1-f2f4-41c3-a771-934a5faebd85"
  2480. },
  2481. "_type": 0,
  2482. "_sizeMode": 1,
  2483. "_fillType": 0,
  2484. "_fillCenter": {
  2485. "__type__": "cc.Vec2",
  2486. "x": 0,
  2487. "y": 0
  2488. },
  2489. "_fillStart": 0,
  2490. "_fillRange": 0,
  2491. "_isTrimmedMode": true,
  2492. "_atlas": null,
  2493. "_id": ""
  2494. },
  2495. {
  2496. "__type__": "cc.PrefabInfo",
  2497. "root": {
  2498. "__id__": 1
  2499. },
  2500. "asset": {
  2501. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2502. },
  2503. "fileId": "7boHZeBa9Ml5V6UNT26Dkk",
  2504. "sync": false
  2505. },
  2506. {
  2507. "__type__": "cc.Button",
  2508. "_name": "",
  2509. "_objFlags": 0,
  2510. "node": {
  2511. "__id__": 60
  2512. },
  2513. "_enabled": true,
  2514. "_normalMaterial": null,
  2515. "_grayMaterial": null,
  2516. "duration": 0.1,
  2517. "zoomScale": 1.2,
  2518. "clickEvents": [
  2519. {
  2520. "__id__": 68
  2521. }
  2522. ],
  2523. "_N$interactable": true,
  2524. "_N$enableAutoGrayEffect": false,
  2525. "_N$transition": 0,
  2526. "transition": 0,
  2527. "_N$normalColor": {
  2528. "__type__": "cc.Color",
  2529. "r": 255,
  2530. "g": 255,
  2531. "b": 255,
  2532. "a": 255
  2533. },
  2534. "_N$pressedColor": {
  2535. "__type__": "cc.Color",
  2536. "r": 211,
  2537. "g": 211,
  2538. "b": 211,
  2539. "a": 255
  2540. },
  2541. "pressedColor": {
  2542. "__type__": "cc.Color",
  2543. "r": 211,
  2544. "g": 211,
  2545. "b": 211,
  2546. "a": 255
  2547. },
  2548. "_N$hoverColor": {
  2549. "__type__": "cc.Color",
  2550. "r": 255,
  2551. "g": 255,
  2552. "b": 255,
  2553. "a": 255
  2554. },
  2555. "hoverColor": {
  2556. "__type__": "cc.Color",
  2557. "r": 255,
  2558. "g": 255,
  2559. "b": 255,
  2560. "a": 255
  2561. },
  2562. "_N$disabledColor": {
  2563. "__type__": "cc.Color",
  2564. "r": 124,
  2565. "g": 124,
  2566. "b": 124,
  2567. "a": 255
  2568. },
  2569. "_N$normalSprite": null,
  2570. "_N$pressedSprite": null,
  2571. "pressedSprite": null,
  2572. "_N$hoverSprite": null,
  2573. "hoverSprite": null,
  2574. "_N$disabledSprite": null,
  2575. "_N$target": {
  2576. "__id__": 60
  2577. },
  2578. "_id": ""
  2579. },
  2580. {
  2581. "__type__": "cc.ClickEvent",
  2582. "target": {
  2583. "__id__": 1
  2584. },
  2585. "component": "",
  2586. "_componentId": "9bce8jvdclNYqL0CTuynSkw",
  2587. "handler": "clickGetAwardNo",
  2588. "customEventData": ""
  2589. },
  2590. {
  2591. "__type__": "cc.PrefabInfo",
  2592. "root": {
  2593. "__id__": 1
  2594. },
  2595. "asset": {
  2596. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2597. },
  2598. "fileId": "41NL3HBrBL/YPrs32Y0Sh9",
  2599. "sync": false
  2600. },
  2601. {
  2602. "__type__": "cc.Node",
  2603. "_name": "btnNo",
  2604. "_objFlags": 0,
  2605. "_parent": {
  2606. "__id__": 6
  2607. },
  2608. "_children": [],
  2609. "_active": true,
  2610. "_components": [
  2611. {
  2612. "__id__": 71
  2613. },
  2614. {
  2615. "__id__": 72
  2616. }
  2617. ],
  2618. "_prefab": {
  2619. "__id__": 74
  2620. },
  2621. "_opacity": 255,
  2622. "_color": {
  2623. "__type__": "cc.Color",
  2624. "r": 255,
  2625. "g": 255,
  2626. "b": 255,
  2627. "a": 255
  2628. },
  2629. "_contentSize": {
  2630. "__type__": "cc.Size",
  2631. "width": 100,
  2632. "height": 75.6
  2633. },
  2634. "_anchorPoint": {
  2635. "__type__": "cc.Vec2",
  2636. "x": 0.5,
  2637. "y": 0.5
  2638. },
  2639. "_trs": {
  2640. "__type__": "TypedArray",
  2641. "ctor": "Float64Array",
  2642. "array": [
  2643. 0,
  2644. -596.081,
  2645. 0,
  2646. 0,
  2647. 0,
  2648. 0,
  2649. 1,
  2650. 1,
  2651. 1,
  2652. 1
  2653. ]
  2654. },
  2655. "_eulerAngles": {
  2656. "__type__": "cc.Vec3",
  2657. "x": 0,
  2658. "y": 0,
  2659. "z": 0
  2660. },
  2661. "_skewX": 0,
  2662. "_skewY": 0,
  2663. "_is3DNode": false,
  2664. "_groupIndex": 0,
  2665. "groupIndex": 0,
  2666. "_id": ""
  2667. },
  2668. {
  2669. "__type__": "cc.Label",
  2670. "_name": "",
  2671. "_objFlags": 0,
  2672. "node": {
  2673. "__id__": 70
  2674. },
  2675. "_enabled": true,
  2676. "_materials": [
  2677. {
  2678. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2679. }
  2680. ],
  2681. "_useOriginalSize": false,
  2682. "_string": "放弃",
  2683. "_N$string": "放弃",
  2684. "_fontSize": 50,
  2685. "_lineHeight": 60,
  2686. "_enableWrapText": true,
  2687. "_N$file": null,
  2688. "_isSystemFontUsed": true,
  2689. "_spacingX": 0,
  2690. "_batchAsBitmap": false,
  2691. "_styleFlags": 4,
  2692. "_underlineHeight": 0,
  2693. "_N$horizontalAlign": 1,
  2694. "_N$verticalAlign": 1,
  2695. "_N$fontFamily": "Arial",
  2696. "_N$overflow": 0,
  2697. "_N$cacheMode": 0,
  2698. "_id": ""
  2699. },
  2700. {
  2701. "__type__": "cc.Button",
  2702. "_name": "",
  2703. "_objFlags": 0,
  2704. "node": {
  2705. "__id__": 70
  2706. },
  2707. "_enabled": true,
  2708. "_normalMaterial": null,
  2709. "_grayMaterial": null,
  2710. "duration": 0.1,
  2711. "zoomScale": 1.2,
  2712. "clickEvents": [
  2713. {
  2714. "__id__": 73
  2715. }
  2716. ],
  2717. "_N$interactable": true,
  2718. "_N$enableAutoGrayEffect": false,
  2719. "_N$transition": 0,
  2720. "transition": 0,
  2721. "_N$normalColor": {
  2722. "__type__": "cc.Color",
  2723. "r": 255,
  2724. "g": 255,
  2725. "b": 255,
  2726. "a": 255
  2727. },
  2728. "_N$pressedColor": {
  2729. "__type__": "cc.Color",
  2730. "r": 211,
  2731. "g": 211,
  2732. "b": 211,
  2733. "a": 255
  2734. },
  2735. "pressedColor": {
  2736. "__type__": "cc.Color",
  2737. "r": 211,
  2738. "g": 211,
  2739. "b": 211,
  2740. "a": 255
  2741. },
  2742. "_N$hoverColor": {
  2743. "__type__": "cc.Color",
  2744. "r": 255,
  2745. "g": 255,
  2746. "b": 255,
  2747. "a": 255
  2748. },
  2749. "hoverColor": {
  2750. "__type__": "cc.Color",
  2751. "r": 255,
  2752. "g": 255,
  2753. "b": 255,
  2754. "a": 255
  2755. },
  2756. "_N$disabledColor": {
  2757. "__type__": "cc.Color",
  2758. "r": 124,
  2759. "g": 124,
  2760. "b": 124,
  2761. "a": 255
  2762. },
  2763. "_N$normalSprite": null,
  2764. "_N$pressedSprite": null,
  2765. "pressedSprite": null,
  2766. "_N$hoverSprite": null,
  2767. "hoverSprite": null,
  2768. "_N$disabledSprite": null,
  2769. "_N$target": {
  2770. "__id__": 1
  2771. },
  2772. "_id": ""
  2773. },
  2774. {
  2775. "__type__": "cc.ClickEvent",
  2776. "target": {
  2777. "__id__": 1
  2778. },
  2779. "component": "",
  2780. "_componentId": "9bce8jvdclNYqL0CTuynSkw",
  2781. "handler": "clickClose",
  2782. "customEventData": ""
  2783. },
  2784. {
  2785. "__type__": "cc.PrefabInfo",
  2786. "root": {
  2787. "__id__": 1
  2788. },
  2789. "asset": {
  2790. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2791. },
  2792. "fileId": "b53bmDeVxEx4iOvN4tfmIJ",
  2793. "sync": false
  2794. },
  2795. {
  2796. "__type__": "c303cMObORMP73Of1/g1ZVg",
  2797. "_name": "",
  2798. "_objFlags": 0,
  2799. "node": {
  2800. "__id__": 6
  2801. },
  2802. "_enabled": true,
  2803. "panelType": 0,
  2804. "_id": ""
  2805. },
  2806. {
  2807. "__type__": "cc.PrefabInfo",
  2808. "root": {
  2809. "__id__": 1
  2810. },
  2811. "asset": {
  2812. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2813. },
  2814. "fileId": "e4lVyaeUxNooh5VxmYgShs",
  2815. "sync": false
  2816. },
  2817. {
  2818. "__type__": "9bce8jvdclNYqL0CTuynSkw",
  2819. "_name": "",
  2820. "_objFlags": 0,
  2821. "node": {
  2822. "__id__": 1
  2823. },
  2824. "_enabled": true,
  2825. "labAward": {
  2826. "__id__": 46
  2827. },
  2828. "labGetAward": {
  2829. "__id__": 51
  2830. },
  2831. "btnGetAward": {
  2832. "__id__": 48
  2833. },
  2834. "btnGetNo": {
  2835. "__id__": 60
  2836. },
  2837. "labDesNode": {
  2838. "__id__": 34
  2839. },
  2840. "hand": {
  2841. "__id__": 29
  2842. },
  2843. "labDes": {
  2844. "__id__": 35
  2845. },
  2846. "btnNo": {
  2847. "__id__": 70
  2848. },
  2849. "btnBanner": {
  2850. "__id__": 41
  2851. },
  2852. "_id": ""
  2853. },
  2854. {
  2855. "__type__": "cc.PrefabInfo",
  2856. "root": {
  2857. "__id__": 1
  2858. },
  2859. "asset": {
  2860. "__uuid__": "b7f3d334-e117-4fdb-97c6-8de5a0159e6f"
  2861. },
  2862. "fileId": "f7SfzqsudFBYG9+XSFRiNC",
  2863. "sync": false
  2864. }
  2865. ]