LuckView.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  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": "LuckView",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 31
  28. }
  29. ],
  30. "_active": true,
  31. "_level": 1,
  32. "_components": [
  33. {
  34. "__id__": 59
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 60
  39. },
  40. "_opacity": 255,
  41. "_color": {
  42. "__type__": "cc.Color",
  43. "r": 255,
  44. "g": 255,
  45. "b": 255,
  46. "a": 255
  47. },
  48. "_contentSize": {
  49. "__type__": "cc.Size",
  50. "width": 613,
  51. "height": 974
  52. },
  53. "_anchorPoint": {
  54. "__type__": "cc.Vec2",
  55. "x": 0.5,
  56. "y": 0.5
  57. },
  58. "_position": {
  59. "__type__": "cc.Vec3",
  60. "x": 360,
  61. "y": 640,
  62. "z": 0
  63. },
  64. "_scale": {
  65. "__type__": "cc.Vec3",
  66. "x": 0.88,
  67. "y": 0.88,
  68. "z": 1
  69. },
  70. "_skewX": 0,
  71. "_skewY": 0,
  72. "_zIndex": 0,
  73. "_is3DNode": false,
  74. "groupIndex": 0,
  75. "_id": "",
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. }
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "BlackBGShader",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [],
  91. "_active": true,
  92. "_level": 5,
  93. "_components": [
  94. {
  95. "__id__": 3
  96. },
  97. {
  98. "__id__": 4
  99. }
  100. ],
  101. "_prefab": {
  102. "__id__": 5
  103. },
  104. "_opacity": 255,
  105. "_color": {
  106. "__type__": "cc.Color",
  107. "r": 247,
  108. "g": 242,
  109. "b": 242,
  110. "a": 255
  111. },
  112. "_contentSize": {
  113. "__type__": "cc.Size",
  114. "width": 1500,
  115. "height": 1800
  116. },
  117. "_anchorPoint": {
  118. "__type__": "cc.Vec2",
  119. "x": 0.5,
  120. "y": 0.5
  121. },
  122. "_position": {
  123. "__type__": "cc.Vec3",
  124. "x": -2.9999999999998863,
  125. "y": -1,
  126. "z": 0
  127. },
  128. "_scale": {
  129. "__type__": "cc.Vec3",
  130. "x": 1,
  131. "y": 1,
  132. "z": 1
  133. },
  134. "_quat": {
  135. "__type__": "cc.Quat",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0,
  139. "w": 1
  140. },
  141. "_skewX": 0,
  142. "_skewY": 0,
  143. "_zIndex": 0,
  144. "_is3DNode": false,
  145. "groupIndex": 0,
  146. "_id": ""
  147. },
  148. {
  149. "__type__": "cc.Widget",
  150. "_name": "",
  151. "_objFlags": 0,
  152. "node": {
  153. "__id__": 2
  154. },
  155. "_enabled": true,
  156. "alignMode": 0,
  157. "_target": null,
  158. "_alignFlags": 18,
  159. "_left": 0,
  160. "_right": 0,
  161. "_top": 0,
  162. "_bottom": 0,
  163. "_verticalCenter": -1,
  164. "_horizontalCenter": -2.9999999999998863,
  165. "_isAbsLeft": true,
  166. "_isAbsRight": true,
  167. "_isAbsTop": true,
  168. "_isAbsBottom": true,
  169. "_isAbsHorizontalCenter": true,
  170. "_isAbsVerticalCenter": true,
  171. "_originalWidth": 0,
  172. "_originalHeight": 0,
  173. "_id": ""
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  192. },
  193. "fileId": "ddwsJENqJEDKet9sa5s1jw",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "Wheel",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 7
  206. },
  207. {
  208. "__id__": 10
  209. },
  210. {
  211. "__id__": 14
  212. },
  213. {
  214. "__id__": 17
  215. },
  216. {
  217. "__id__": 22
  218. },
  219. {
  220. "__id__": 25
  221. }
  222. ],
  223. "_active": true,
  224. "_level": 5,
  225. "_components": [
  226. {
  227. "__id__": 30
  228. }
  229. ],
  230. "_prefab": {
  231. "__id__": 58
  232. },
  233. "_opacity": 255,
  234. "_color": {
  235. "__type__": "cc.Color",
  236. "r": 255,
  237. "g": 255,
  238. "b": 255,
  239. "a": 255
  240. },
  241. "_contentSize": {
  242. "__type__": "cc.Size",
  243. "width": 0,
  244. "height": 0
  245. },
  246. "_anchorPoint": {
  247. "__type__": "cc.Vec2",
  248. "x": 0.5,
  249. "y": 0.5
  250. },
  251. "_position": {
  252. "__type__": "cc.Vec3",
  253. "x": 0,
  254. "y": 0,
  255. "z": 0
  256. },
  257. "_scale": {
  258. "__type__": "cc.Vec3",
  259. "x": 1,
  260. "y": 1,
  261. "z": 1
  262. },
  263. "_skewX": 0,
  264. "_skewY": 0,
  265. "_zIndex": 0,
  266. "_is3DNode": false,
  267. "groupIndex": 0,
  268. "_id": "",
  269. "_eulerAngles": {
  270. "__type__": "cc.Vec3",
  271. "x": 0,
  272. "y": 0,
  273. "z": 0
  274. }
  275. },
  276. {
  277. "__type__": "cc.Node",
  278. "_name": "turntable_bg_6",
  279. "_objFlags": 0,
  280. "_parent": {
  281. "__id__": 6
  282. },
  283. "_children": [],
  284. "_active": true,
  285. "_level": 6,
  286. "_components": [
  287. {
  288. "__id__": 8
  289. }
  290. ],
  291. "_prefab": {
  292. "__id__": 9
  293. },
  294. "_opacity": 255,
  295. "_color": {
  296. "__type__": "cc.Color",
  297. "r": 255,
  298. "g": 255,
  299. "b": 255,
  300. "a": 255
  301. },
  302. "_contentSize": {
  303. "__type__": "cc.Size",
  304. "width": 775,
  305. "height": 775
  306. },
  307. "_anchorPoint": {
  308. "__type__": "cc.Vec2",
  309. "x": 0.5,
  310. "y": 0.5
  311. },
  312. "_position": {
  313. "__type__": "cc.Vec3",
  314. "x": 0,
  315. "y": -97,
  316. "z": 0
  317. },
  318. "_scale": {
  319. "__type__": "cc.Vec3",
  320. "x": 1,
  321. "y": 1,
  322. "z": 1
  323. },
  324. "_skewX": 0,
  325. "_skewY": 0,
  326. "_zIndex": 0,
  327. "_is3DNode": false,
  328. "groupIndex": 0,
  329. "_id": "",
  330. "_eulerAngles": {
  331. "__type__": "cc.Vec3",
  332. "x": 0,
  333. "y": 0,
  334. "z": 0
  335. }
  336. },
  337. {
  338. "__type__": "cc.Sprite",
  339. "_name": "",
  340. "_objFlags": 0,
  341. "node": {
  342. "__id__": 7
  343. },
  344. "_enabled": true,
  345. "_srcBlendFactor": 770,
  346. "_dstBlendFactor": 771,
  347. "_spriteFrame": {
  348. "__uuid__": "17fef1e4-0349-41e6-92e4-1298c4f4ed35"
  349. },
  350. "_type": 0,
  351. "_sizeMode": 1,
  352. "_fillType": 0,
  353. "_fillCenter": {
  354. "__type__": "cc.Vec2",
  355. "x": 0,
  356. "y": 0
  357. },
  358. "_fillStart": 0,
  359. "_fillRange": 0,
  360. "_isTrimmedMode": true,
  361. "_state": 0,
  362. "_atlas": null,
  363. "_id": ""
  364. },
  365. {
  366. "__type__": "cc.PrefabInfo",
  367. "root": {
  368. "__id__": 1
  369. },
  370. "asset": {
  371. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  372. },
  373. "fileId": "27DMwbtjZP1ZCcLOpJwyjo",
  374. "sync": false
  375. },
  376. {
  377. "__type__": "cc.Node",
  378. "_name": "wheel",
  379. "_objFlags": 0,
  380. "_parent": {
  381. "__id__": 6
  382. },
  383. "_children": [],
  384. "_active": true,
  385. "_level": 3,
  386. "_components": [
  387. {
  388. "__id__": 11
  389. },
  390. {
  391. "__id__": 12
  392. }
  393. ],
  394. "_prefab": {
  395. "__id__": 13
  396. },
  397. "_opacity": 255,
  398. "_color": {
  399. "__type__": "cc.Color",
  400. "r": 255,
  401. "g": 255,
  402. "b": 255,
  403. "a": 255
  404. },
  405. "_contentSize": {
  406. "__type__": "cc.Size",
  407. "width": 649,
  408. "height": 651
  409. },
  410. "_anchorPoint": {
  411. "__type__": "cc.Vec2",
  412. "x": 0.5,
  413. "y": 0.5
  414. },
  415. "_position": {
  416. "__type__": "cc.Vec3",
  417. "x": 0,
  418. "y": -97,
  419. "z": 0
  420. },
  421. "_scale": {
  422. "__type__": "cc.Vec3",
  423. "x": 1,
  424. "y": 1,
  425. "z": 1
  426. },
  427. "_quat": {
  428. "__type__": "cc.Quat",
  429. "x": 0,
  430. "y": 0,
  431. "z": 0,
  432. "w": 1
  433. },
  434. "_skewX": 0,
  435. "_skewY": 0,
  436. "_zIndex": 0,
  437. "_is3DNode": false,
  438. "groupIndex": 0,
  439. "_id": ""
  440. },
  441. {
  442. "__type__": "cc.Sprite",
  443. "_name": "",
  444. "_objFlags": 0,
  445. "node": {
  446. "__id__": 10
  447. },
  448. "_enabled": true,
  449. "_srcBlendFactor": 770,
  450. "_dstBlendFactor": 771,
  451. "_spriteFrame": {
  452. "__uuid__": "0305f166-5b5d-4bae-b12e-4ad36967f9d2"
  453. },
  454. "_type": 0,
  455. "_sizeMode": 1,
  456. "_fillType": 0,
  457. "_fillCenter": {
  458. "__type__": "cc.Vec2",
  459. "x": 0,
  460. "y": 0
  461. },
  462. "_fillStart": 0,
  463. "_fillRange": 0,
  464. "_isTrimmedMode": true,
  465. "_state": 0,
  466. "_atlas": null,
  467. "_id": ""
  468. },
  469. {
  470. "__type__": "cc.Widget",
  471. "_name": "",
  472. "_objFlags": 0,
  473. "node": {
  474. "__id__": 10
  475. },
  476. "_enabled": true,
  477. "alignMode": 0,
  478. "_target": null,
  479. "_alignFlags": 18,
  480. "_left": 0,
  481. "_right": 62.25,
  482. "_top": 0,
  483. "_bottom": 0,
  484. "_verticalCenter": -97,
  485. "_horizontalCenter": 0,
  486. "_isAbsLeft": true,
  487. "_isAbsRight": true,
  488. "_isAbsTop": true,
  489. "_isAbsBottom": true,
  490. "_isAbsHorizontalCenter": true,
  491. "_isAbsVerticalCenter": true,
  492. "_originalWidth": 877,
  493. "_originalHeight": 0,
  494. "_id": ""
  495. },
  496. {
  497. "__type__": "cc.PrefabInfo",
  498. "root": {
  499. "__id__": 1
  500. },
  501. "asset": {
  502. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  503. },
  504. "fileId": "c9UcNMH1FA966S3a4EFO1M",
  505. "sync": false
  506. },
  507. {
  508. "__type__": "cc.Node",
  509. "_name": "Pointer",
  510. "_objFlags": 0,
  511. "_parent": {
  512. "__id__": 6
  513. },
  514. "_children": [],
  515. "_active": true,
  516. "_level": 3,
  517. "_components": [
  518. {
  519. "__id__": 15
  520. }
  521. ],
  522. "_prefab": {
  523. "__id__": 16
  524. },
  525. "_opacity": 255,
  526. "_color": {
  527. "__type__": "cc.Color",
  528. "r": 255,
  529. "g": 255,
  530. "b": 255,
  531. "a": 255
  532. },
  533. "_contentSize": {
  534. "__type__": "cc.Size",
  535. "width": 100,
  536. "height": 199
  537. },
  538. "_anchorPoint": {
  539. "__type__": "cc.Vec2",
  540. "x": 0.5,
  541. "y": 0.5
  542. },
  543. "_position": {
  544. "__type__": "cc.Vec3",
  545. "x": -3,
  546. "y": 230,
  547. "z": 0
  548. },
  549. "_scale": {
  550. "__type__": "cc.Vec3",
  551. "x": 1,
  552. "y": 1,
  553. "z": 1
  554. },
  555. "_skewX": 0,
  556. "_skewY": 0,
  557. "_zIndex": 0,
  558. "_is3DNode": false,
  559. "groupIndex": 0,
  560. "_id": "",
  561. "_eulerAngles": {
  562. "__type__": "cc.Vec3",
  563. "x": 0,
  564. "y": 0,
  565. "z": 0
  566. }
  567. },
  568. {
  569. "__type__": "cc.Sprite",
  570. "_name": "",
  571. "_objFlags": 0,
  572. "node": {
  573. "__id__": 14
  574. },
  575. "_enabled": true,
  576. "_srcBlendFactor": 770,
  577. "_dstBlendFactor": 771,
  578. "_spriteFrame": {
  579. "__uuid__": "63003d12-dff4-4b9e-adbf-275ad7e35ff9"
  580. },
  581. "_type": 0,
  582. "_sizeMode": 1,
  583. "_fillType": 0,
  584. "_fillCenter": {
  585. "__type__": "cc.Vec2",
  586. "x": 0,
  587. "y": 0
  588. },
  589. "_fillStart": 0,
  590. "_fillRange": 0,
  591. "_isTrimmedMode": true,
  592. "_state": 0,
  593. "_atlas": null,
  594. "_id": ""
  595. },
  596. {
  597. "__type__": "cc.PrefabInfo",
  598. "root": {
  599. "__id__": 1
  600. },
  601. "asset": {
  602. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  603. },
  604. "fileId": "6fvF7PAoxL5IC+xuw1fEoB",
  605. "sync": false
  606. },
  607. {
  608. "__type__": "cc.Node",
  609. "_name": "spin",
  610. "_objFlags": 0,
  611. "_parent": {
  612. "__id__": 6
  613. },
  614. "_children": [],
  615. "_active": true,
  616. "_level": 3,
  617. "_components": [
  618. {
  619. "__id__": 18
  620. },
  621. {
  622. "__id__": 19
  623. },
  624. {
  625. "__id__": 20
  626. }
  627. ],
  628. "_prefab": {
  629. "__id__": 21
  630. },
  631. "_opacity": 255,
  632. "_color": {
  633. "__type__": "cc.Color",
  634. "r": 255,
  635. "g": 255,
  636. "b": 255,
  637. "a": 255
  638. },
  639. "_contentSize": {
  640. "__type__": "cc.Size",
  641. "width": 282,
  642. "height": 282
  643. },
  644. "_anchorPoint": {
  645. "__type__": "cc.Vec2",
  646. "x": 0.5,
  647. "y": 0.5
  648. },
  649. "_position": {
  650. "__type__": "cc.Vec3",
  651. "x": -0.9999999999998863,
  652. "y": -95,
  653. "z": 0
  654. },
  655. "_scale": {
  656. "__type__": "cc.Vec3",
  657. "x": 1,
  658. "y": 1,
  659. "z": 1
  660. },
  661. "_quat": {
  662. "__type__": "cc.Quat",
  663. "x": 0,
  664. "y": 0,
  665. "z": 0,
  666. "w": 1
  667. },
  668. "_skewX": 0,
  669. "_skewY": 0,
  670. "_zIndex": 0,
  671. "_is3DNode": false,
  672. "groupIndex": 0,
  673. "_id": ""
  674. },
  675. {
  676. "__type__": "cc.Sprite",
  677. "_name": "",
  678. "_objFlags": 0,
  679. "node": {
  680. "__id__": 17
  681. },
  682. "_enabled": true,
  683. "_srcBlendFactor": 770,
  684. "_dstBlendFactor": 771,
  685. "_spriteFrame": {
  686. "__uuid__": "31e6e146-6d53-474a-ab44-57043a0ecaeb"
  687. },
  688. "_type": 1,
  689. "_sizeMode": 1,
  690. "_fillType": 0,
  691. "_fillCenter": {
  692. "__type__": "cc.Vec2",
  693. "x": 0,
  694. "y": 0
  695. },
  696. "_fillStart": 0,
  697. "_fillRange": 0,
  698. "_isTrimmedMode": true,
  699. "_state": 0,
  700. "_atlas": null,
  701. "_id": ""
  702. },
  703. {
  704. "__type__": "cc.Button",
  705. "_name": "",
  706. "_objFlags": 0,
  707. "node": {
  708. "__id__": 17
  709. },
  710. "_enabled": true,
  711. "duration": 0.1,
  712. "zoomScale": 1.2,
  713. "clickEvents": [],
  714. "_N$interactable": true,
  715. "_N$enableAutoGrayEffect": false,
  716. "_N$transition": 3,
  717. "transition": 3,
  718. "_N$normalColor": {
  719. "__type__": "cc.Color",
  720. "r": 255,
  721. "g": 255,
  722. "b": 255,
  723. "a": 255
  724. },
  725. "_N$pressedColor": {
  726. "__type__": "cc.Color",
  727. "r": 255,
  728. "g": 255,
  729. "b": 255,
  730. "a": 255
  731. },
  732. "pressedColor": {
  733. "__type__": "cc.Color",
  734. "r": 255,
  735. "g": 255,
  736. "b": 255,
  737. "a": 255
  738. },
  739. "_N$hoverColor": {
  740. "__type__": "cc.Color",
  741. "r": 255,
  742. "g": 255,
  743. "b": 255,
  744. "a": 255
  745. },
  746. "hoverColor": {
  747. "__type__": "cc.Color",
  748. "r": 255,
  749. "g": 255,
  750. "b": 255,
  751. "a": 255
  752. },
  753. "_N$disabledColor": {
  754. "__type__": "cc.Color",
  755. "r": 255,
  756. "g": 255,
  757. "b": 255,
  758. "a": 255
  759. },
  760. "_N$normalSprite": {
  761. "__uuid__": "9b70e9ee-69de-4303-b600-d19d2b96f4fe"
  762. },
  763. "_N$pressedSprite": null,
  764. "pressedSprite": null,
  765. "_N$hoverSprite": null,
  766. "hoverSprite": null,
  767. "_N$disabledSprite": null,
  768. "_N$target": {
  769. "__id__": 17
  770. },
  771. "_id": ""
  772. },
  773. {
  774. "__type__": "cc.Widget",
  775. "_name": "",
  776. "_objFlags": 0,
  777. "node": {
  778. "__id__": 17
  779. },
  780. "_enabled": true,
  781. "alignMode": 0,
  782. "_target": null,
  783. "_alignFlags": 18,
  784. "_left": 0,
  785. "_right": 0,
  786. "_top": 0,
  787. "_bottom": 0,
  788. "_verticalCenter": -95,
  789. "_horizontalCenter": -0.9999999999998863,
  790. "_isAbsLeft": true,
  791. "_isAbsRight": true,
  792. "_isAbsTop": true,
  793. "_isAbsBottom": true,
  794. "_isAbsHorizontalCenter": true,
  795. "_isAbsVerticalCenter": true,
  796. "_originalWidth": 0,
  797. "_originalHeight": 0,
  798. "_id": ""
  799. },
  800. {
  801. "__type__": "cc.PrefabInfo",
  802. "root": {
  803. "__id__": 1
  804. },
  805. "asset": {
  806. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  807. },
  808. "fileId": "89zFbYLzxB9YriIbOcN+8q",
  809. "sync": false
  810. },
  811. {
  812. "__type__": "cc.Node",
  813. "_name": "title",
  814. "_objFlags": 0,
  815. "_parent": {
  816. "__id__": 6
  817. },
  818. "_children": [],
  819. "_active": true,
  820. "_level": 6,
  821. "_components": [
  822. {
  823. "__id__": 23
  824. }
  825. ],
  826. "_prefab": {
  827. "__id__": 24
  828. },
  829. "_opacity": 255,
  830. "_color": {
  831. "__type__": "cc.Color",
  832. "r": 255,
  833. "g": 255,
  834. "b": 255,
  835. "a": 255
  836. },
  837. "_contentSize": {
  838. "__type__": "cc.Size",
  839. "width": 674,
  840. "height": 223
  841. },
  842. "_anchorPoint": {
  843. "__type__": "cc.Vec2",
  844. "x": 0.5,
  845. "y": 0.5
  846. },
  847. "_position": {
  848. "__type__": "cc.Vec3",
  849. "x": -3,
  850. "y": 384,
  851. "z": 0
  852. },
  853. "_scale": {
  854. "__type__": "cc.Vec3",
  855. "x": 1,
  856. "y": 1,
  857. "z": 1
  858. },
  859. "_skewX": 0,
  860. "_skewY": 0,
  861. "_zIndex": 0,
  862. "_is3DNode": false,
  863. "groupIndex": 0,
  864. "_id": "",
  865. "_eulerAngles": {
  866. "__type__": "cc.Vec3",
  867. "x": 0,
  868. "y": 0,
  869. "z": 0
  870. }
  871. },
  872. {
  873. "__type__": "cc.Sprite",
  874. "_name": "",
  875. "_objFlags": 0,
  876. "node": {
  877. "__id__": 22
  878. },
  879. "_enabled": true,
  880. "_srcBlendFactor": 770,
  881. "_dstBlendFactor": 771,
  882. "_spriteFrame": {
  883. "__uuid__": "fa196fc4-271d-488b-aedb-89644655bf50"
  884. },
  885. "_type": 0,
  886. "_sizeMode": 1,
  887. "_fillType": 0,
  888. "_fillCenter": {
  889. "__type__": "cc.Vec2",
  890. "x": 0,
  891. "y": 0
  892. },
  893. "_fillStart": 0,
  894. "_fillRange": 0,
  895. "_isTrimmedMode": true,
  896. "_state": 0,
  897. "_atlas": null,
  898. "_id": ""
  899. },
  900. {
  901. "__type__": "cc.PrefabInfo",
  902. "root": {
  903. "__id__": 1
  904. },
  905. "asset": {
  906. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  907. },
  908. "fileId": "a2pPbqDulPu7TkEL3LxOqd",
  909. "sync": false
  910. },
  911. {
  912. "__type__": "cc.Node",
  913. "_name": "PCloseButton",
  914. "_objFlags": 0,
  915. "_parent": {
  916. "__id__": 6
  917. },
  918. "_children": [],
  919. "_active": true,
  920. "_level": 6,
  921. "_components": [
  922. {
  923. "__id__": 26
  924. },
  925. {
  926. "__id__": 27
  927. },
  928. {
  929. "__id__": 28
  930. }
  931. ],
  932. "_prefab": {
  933. "__id__": 29
  934. },
  935. "_opacity": 255,
  936. "_color": {
  937. "__type__": "cc.Color",
  938. "r": 255,
  939. "g": 255,
  940. "b": 255,
  941. "a": 255
  942. },
  943. "_contentSize": {
  944. "__type__": "cc.Size",
  945. "width": 54,
  946. "height": 53
  947. },
  948. "_anchorPoint": {
  949. "__type__": "cc.Vec2",
  950. "x": 0.5,
  951. "y": 0.5
  952. },
  953. "_position": {
  954. "__type__": "cc.Vec3",
  955. "x": 287,
  956. "y": 240,
  957. "z": 0
  958. },
  959. "_scale": {
  960. "__type__": "cc.Vec3",
  961. "x": 1,
  962. "y": 1,
  963. "z": 1
  964. },
  965. "_quat": {
  966. "__type__": "cc.Quat",
  967. "x": 0,
  968. "y": 0,
  969. "z": 0,
  970. "w": 1
  971. },
  972. "_skewX": 0,
  973. "_skewY": 0,
  974. "_zIndex": 0,
  975. "_is3DNode": false,
  976. "groupIndex": 0,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.Sprite",
  981. "_name": "",
  982. "_objFlags": 0,
  983. "node": {
  984. "__id__": 25
  985. },
  986. "_enabled": true,
  987. "_srcBlendFactor": 770,
  988. "_dstBlendFactor": 771,
  989. "_spriteFrame": {
  990. "__uuid__": "eeb40e15-1216-4eda-8e33-7e1474c1ffbe"
  991. },
  992. "_type": 1,
  993. "_sizeMode": 0,
  994. "_fillType": 0,
  995. "_fillCenter": {
  996. "__type__": "cc.Vec2",
  997. "x": 0,
  998. "y": 0
  999. },
  1000. "_fillStart": 0,
  1001. "_fillRange": 0,
  1002. "_isTrimmedMode": true,
  1003. "_state": 0,
  1004. "_atlas": null,
  1005. "_id": ""
  1006. },
  1007. {
  1008. "__type__": "cc.Button",
  1009. "_name": "",
  1010. "_objFlags": 0,
  1011. "node": {
  1012. "__id__": 25
  1013. },
  1014. "_enabled": true,
  1015. "duration": 0.1,
  1016. "zoomScale": 1.2,
  1017. "clickEvents": [
  1018. null,
  1019. null
  1020. ],
  1021. "_N$interactable": true,
  1022. "_N$enableAutoGrayEffect": false,
  1023. "_N$transition": 3,
  1024. "transition": 3,
  1025. "_N$normalColor": {
  1026. "__type__": "cc.Color",
  1027. "r": 255,
  1028. "g": 255,
  1029. "b": 255,
  1030. "a": 255
  1031. },
  1032. "_N$pressedColor": {
  1033. "__type__": "cc.Color",
  1034. "r": 255,
  1035. "g": 255,
  1036. "b": 255,
  1037. "a": 255
  1038. },
  1039. "pressedColor": {
  1040. "__type__": "cc.Color",
  1041. "r": 255,
  1042. "g": 255,
  1043. "b": 255,
  1044. "a": 255
  1045. },
  1046. "_N$hoverColor": {
  1047. "__type__": "cc.Color",
  1048. "r": 255,
  1049. "g": 255,
  1050. "b": 255,
  1051. "a": 255
  1052. },
  1053. "hoverColor": {
  1054. "__type__": "cc.Color",
  1055. "r": 255,
  1056. "g": 255,
  1057. "b": 255,
  1058. "a": 255
  1059. },
  1060. "_N$disabledColor": {
  1061. "__type__": "cc.Color",
  1062. "r": 255,
  1063. "g": 255,
  1064. "b": 255,
  1065. "a": 255
  1066. },
  1067. "_N$normalSprite": {
  1068. "__uuid__": "e5780f65-f39c-4fe9-92a9-7cc6cc1f94e7"
  1069. },
  1070. "_N$pressedSprite": {
  1071. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1072. },
  1073. "pressedSprite": {
  1074. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1075. },
  1076. "_N$hoverSprite": {
  1077. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1078. },
  1079. "hoverSprite": {
  1080. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1081. },
  1082. "_N$disabledSprite": {
  1083. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1084. },
  1085. "_N$target": {
  1086. "__id__": 25
  1087. },
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.Widget",
  1092. "_name": "",
  1093. "_objFlags": 0,
  1094. "node": {
  1095. "__id__": 25
  1096. },
  1097. "_enabled": true,
  1098. "alignMode": 1,
  1099. "_target": {
  1100. "__id__": 1
  1101. },
  1102. "_alignFlags": 18,
  1103. "_left": 0,
  1104. "_right": 0,
  1105. "_top": 0,
  1106. "_bottom": 0,
  1107. "_verticalCenter": 240,
  1108. "_horizontalCenter": 287,
  1109. "_isAbsLeft": true,
  1110. "_isAbsRight": true,
  1111. "_isAbsTop": true,
  1112. "_isAbsBottom": true,
  1113. "_isAbsHorizontalCenter": true,
  1114. "_isAbsVerticalCenter": true,
  1115. "_originalWidth": 0,
  1116. "_originalHeight": 0,
  1117. "_id": ""
  1118. },
  1119. {
  1120. "__type__": "cc.PrefabInfo",
  1121. "root": {
  1122. "__id__": 1
  1123. },
  1124. "asset": {
  1125. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1126. },
  1127. "fileId": "c6gRfQnVJKYq4fkcFKZHgb",
  1128. "sync": false
  1129. },
  1130. {
  1131. "__type__": "5d90clO6ndGXpPKjeetlkbm",
  1132. "_name": "",
  1133. "_objFlags": 0,
  1134. "node": {
  1135. "__id__": 6
  1136. },
  1137. "_enabled": true,
  1138. "spinBtn": {
  1139. "__id__": 19
  1140. },
  1141. "wheelSp": {
  1142. "__id__": 11
  1143. },
  1144. "background": null,
  1145. "pointer": {
  1146. "__id__": 15
  1147. },
  1148. "title": {
  1149. "__id__": 23
  1150. },
  1151. "startbtn": {
  1152. "__id__": 18
  1153. },
  1154. "maxSpeed": 10,
  1155. "duration": 5,
  1156. "acc": 10,
  1157. "targetID": 0,
  1158. "springback": false,
  1159. "ShowRewards": {
  1160. "__id__": 31
  1161. },
  1162. "Rewards": {
  1163. "__id__": 48
  1164. },
  1165. "RewardDetail": [
  1166. "BusinessLicense",
  1167. "Golden10",
  1168. "Building",
  1169. "Golden50",
  1170. "LandDevelopmentCertificate",
  1171. "Golden10",
  1172. "Golden100",
  1173. "Golden10"
  1174. ],
  1175. "Businesslicense": {
  1176. "__uuid__": "3382907a-6840-488d-8582-e55bdeca3774"
  1177. },
  1178. "LandDevelopmentCertificate": {
  1179. "__uuid__": "50e75b29-d224-4326-9d11-b9966eda496b"
  1180. },
  1181. "Golden10": {
  1182. "__uuid__": "385a5983-c342-4230-b0fc-2b23b0040b2f"
  1183. },
  1184. "Golden50": {
  1185. "__uuid__": "412e93f1-652e-4ad8-8a7b-831b4a2477a7"
  1186. },
  1187. "Golden100": {
  1188. "__uuid__": "471d12e3-f5ce-41fd-aa2f-492da1763246"
  1189. },
  1190. "ManageUI": null,
  1191. "ManageMap": null,
  1192. "_id": ""
  1193. },
  1194. {
  1195. "__type__": "cc.Node",
  1196. "_name": "ShowRewards",
  1197. "_objFlags": 0,
  1198. "_parent": {
  1199. "__id__": 1
  1200. },
  1201. "_children": [
  1202. {
  1203. "__id__": 32
  1204. },
  1205. {
  1206. "__id__": 38
  1207. },
  1208. {
  1209. "__id__": 53
  1210. }
  1211. ],
  1212. "_active": false,
  1213. "_level": 5,
  1214. "_components": [],
  1215. "_prefab": {
  1216. "__id__": 57
  1217. },
  1218. "_opacity": 0,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_contentSize": {
  1227. "__type__": "cc.Size",
  1228. "width": 720,
  1229. "height": 1280
  1230. },
  1231. "_anchorPoint": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0.5,
  1234. "y": 0.5
  1235. },
  1236. "_position": {
  1237. "__type__": "cc.Vec3",
  1238. "x": 0,
  1239. "y": 0,
  1240. "z": 0
  1241. },
  1242. "_scale": {
  1243. "__type__": "cc.Vec3",
  1244. "x": 1,
  1245. "y": 1,
  1246. "z": 1
  1247. },
  1248. "_skewX": 0,
  1249. "_skewY": 0,
  1250. "_zIndex": 0,
  1251. "_is3DNode": false,
  1252. "groupIndex": 0,
  1253. "_id": "",
  1254. "_eulerAngles": {
  1255. "__type__": "cc.Vec3",
  1256. "x": 0,
  1257. "y": 0,
  1258. "z": 0
  1259. }
  1260. },
  1261. {
  1262. "__type__": "cc.Node",
  1263. "_name": "title",
  1264. "_objFlags": 0,
  1265. "_parent": {
  1266. "__id__": 31
  1267. },
  1268. "_children": [
  1269. {
  1270. "__id__": 33
  1271. }
  1272. ],
  1273. "_active": true,
  1274. "_level": 6,
  1275. "_components": [
  1276. {
  1277. "__id__": 36
  1278. }
  1279. ],
  1280. "_prefab": {
  1281. "__id__": 37
  1282. },
  1283. "_opacity": 255,
  1284. "_color": {
  1285. "__type__": "cc.Color",
  1286. "r": 255,
  1287. "g": 255,
  1288. "b": 255,
  1289. "a": 255
  1290. },
  1291. "_contentSize": {
  1292. "__type__": "cc.Size",
  1293. "width": 645,
  1294. "height": 223
  1295. },
  1296. "_anchorPoint": {
  1297. "__type__": "cc.Vec2",
  1298. "x": 0.5,
  1299. "y": 0.5
  1300. },
  1301. "_position": {
  1302. "__type__": "cc.Vec3",
  1303. "x": -33,
  1304. "y": 406,
  1305. "z": 0
  1306. },
  1307. "_scale": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 1,
  1310. "y": 1,
  1311. "z": 1
  1312. },
  1313. "_skewX": 0,
  1314. "_skewY": 0,
  1315. "_zIndex": 0,
  1316. "_is3DNode": false,
  1317. "groupIndex": 0,
  1318. "_id": "",
  1319. "_eulerAngles": {
  1320. "__type__": "cc.Vec3",
  1321. "x": 0,
  1322. "y": 0,
  1323. "z": 0
  1324. }
  1325. },
  1326. {
  1327. "__type__": "cc.Node",
  1328. "_name": "rewarded_0",
  1329. "_objFlags": 0,
  1330. "_parent": {
  1331. "__id__": 32
  1332. },
  1333. "_children": [],
  1334. "_active": true,
  1335. "_level": 7,
  1336. "_components": [
  1337. {
  1338. "__id__": 34
  1339. }
  1340. ],
  1341. "_prefab": {
  1342. "__id__": 35
  1343. },
  1344. "_opacity": 255,
  1345. "_color": {
  1346. "__type__": "cc.Color",
  1347. "r": 255,
  1348. "g": 255,
  1349. "b": 255,
  1350. "a": 255
  1351. },
  1352. "_contentSize": {
  1353. "__type__": "cc.Size",
  1354. "width": 552,
  1355. "height": 193
  1356. },
  1357. "_anchorPoint": {
  1358. "__type__": "cc.Vec2",
  1359. "x": 0.5,
  1360. "y": 0.5
  1361. },
  1362. "_position": {
  1363. "__type__": "cc.Vec3",
  1364. "x": 0,
  1365. "y": 0,
  1366. "z": 0
  1367. },
  1368. "_scale": {
  1369. "__type__": "cc.Vec3",
  1370. "x": 1,
  1371. "y": 1,
  1372. "z": 1
  1373. },
  1374. "_skewX": 0,
  1375. "_skewY": 0,
  1376. "_zIndex": 0,
  1377. "_is3DNode": false,
  1378. "groupIndex": 0,
  1379. "_id": "",
  1380. "_eulerAngles": {
  1381. "__type__": "cc.Vec3",
  1382. "x": 0,
  1383. "y": 0,
  1384. "z": 0
  1385. }
  1386. },
  1387. {
  1388. "__type__": "cc.Sprite",
  1389. "_name": "",
  1390. "_objFlags": 0,
  1391. "node": {
  1392. "__id__": 33
  1393. },
  1394. "_enabled": true,
  1395. "_srcBlendFactor": 770,
  1396. "_dstBlendFactor": 771,
  1397. "_spriteFrame": {
  1398. "__uuid__": "8dce890c-e6fe-4478-a8d8-4b608d043bac"
  1399. },
  1400. "_type": 0,
  1401. "_sizeMode": 1,
  1402. "_fillType": 0,
  1403. "_fillCenter": {
  1404. "__type__": "cc.Vec2",
  1405. "x": 0,
  1406. "y": 0
  1407. },
  1408. "_fillStart": 0,
  1409. "_fillRange": 0,
  1410. "_isTrimmedMode": true,
  1411. "_state": 0,
  1412. "_atlas": null,
  1413. "_id": ""
  1414. },
  1415. {
  1416. "__type__": "cc.PrefabInfo",
  1417. "root": {
  1418. "__id__": 1
  1419. },
  1420. "asset": {
  1421. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1422. },
  1423. "fileId": "a3BpGs+IBESZG+3n+6ictJ",
  1424. "sync": false
  1425. },
  1426. {
  1427. "__type__": "cc.Sprite",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "node": {
  1431. "__id__": 32
  1432. },
  1433. "_enabled": true,
  1434. "_srcBlendFactor": 770,
  1435. "_dstBlendFactor": 771,
  1436. "_spriteFrame": {
  1437. "__uuid__": "35434766-fe87-49db-aeaa-5c403b766b47"
  1438. },
  1439. "_type": 0,
  1440. "_sizeMode": 1,
  1441. "_fillType": 0,
  1442. "_fillCenter": {
  1443. "__type__": "cc.Vec2",
  1444. "x": 0,
  1445. "y": 0
  1446. },
  1447. "_fillStart": 0,
  1448. "_fillRange": 0,
  1449. "_isTrimmedMode": true,
  1450. "_state": 0,
  1451. "_atlas": null,
  1452. "_id": ""
  1453. },
  1454. {
  1455. "__type__": "cc.PrefabInfo",
  1456. "root": {
  1457. "__id__": 1
  1458. },
  1459. "asset": {
  1460. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1461. },
  1462. "fileId": "d2SDKwcgVKT6eeK+yLUmSO",
  1463. "sync": false
  1464. },
  1465. {
  1466. "__type__": "cc.Node",
  1467. "_name": "GivePrize",
  1468. "_objFlags": 0,
  1469. "_parent": {
  1470. "__id__": 31
  1471. },
  1472. "_children": [
  1473. {
  1474. "__id__": 39
  1475. },
  1476. {
  1477. "__id__": 45
  1478. },
  1479. {
  1480. "__id__": 48
  1481. }
  1482. ],
  1483. "_active": true,
  1484. "_level": 6,
  1485. "_components": [
  1486. {
  1487. "__id__": 51
  1488. }
  1489. ],
  1490. "_prefab": {
  1491. "__id__": 52
  1492. },
  1493. "_opacity": 255,
  1494. "_color": {
  1495. "__type__": "cc.Color",
  1496. "r": 255,
  1497. "g": 255,
  1498. "b": 255,
  1499. "a": 255
  1500. },
  1501. "_contentSize": {
  1502. "__type__": "cc.Size",
  1503. "width": 0,
  1504. "height": 0
  1505. },
  1506. "_anchorPoint": {
  1507. "__type__": "cc.Vec2",
  1508. "x": 0.5,
  1509. "y": 0.5
  1510. },
  1511. "_position": {
  1512. "__type__": "cc.Vec3",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": 0
  1516. },
  1517. "_scale": {
  1518. "__type__": "cc.Vec3",
  1519. "x": 1,
  1520. "y": 1,
  1521. "z": 1
  1522. },
  1523. "_skewX": 0,
  1524. "_skewY": 0,
  1525. "_zIndex": 0,
  1526. "_is3DNode": false,
  1527. "groupIndex": 0,
  1528. "_id": "",
  1529. "_eulerAngles": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. }
  1535. },
  1536. {
  1537. "__type__": "cc.Node",
  1538. "_name": "Sunshine",
  1539. "_objFlags": 0,
  1540. "_parent": {
  1541. "__id__": 38
  1542. },
  1543. "_children": [
  1544. {
  1545. "__id__": 40
  1546. }
  1547. ],
  1548. "_active": true,
  1549. "_level": 7,
  1550. "_components": [
  1551. {
  1552. "__id__": 43
  1553. }
  1554. ],
  1555. "_prefab": {
  1556. "__id__": 44
  1557. },
  1558. "_opacity": 255,
  1559. "_color": {
  1560. "__type__": "cc.Color",
  1561. "r": 255,
  1562. "g": 255,
  1563. "b": 255,
  1564. "a": 255
  1565. },
  1566. "_contentSize": {
  1567. "__type__": "cc.Size",
  1568. "width": 602,
  1569. "height": 622
  1570. },
  1571. "_anchorPoint": {
  1572. "__type__": "cc.Vec2",
  1573. "x": 0.5,
  1574. "y": 0.5
  1575. },
  1576. "_position": {
  1577. "__type__": "cc.Vec3",
  1578. "x": 0,
  1579. "y": 0,
  1580. "z": 0
  1581. },
  1582. "_scale": {
  1583. "__type__": "cc.Vec3",
  1584. "x": 1.09,
  1585. "y": 1.09,
  1586. "z": 1
  1587. },
  1588. "_skewX": 0,
  1589. "_skewY": 0,
  1590. "_zIndex": 0,
  1591. "_is3DNode": false,
  1592. "groupIndex": 0,
  1593. "_id": "",
  1594. "_eulerAngles": {
  1595. "__type__": "cc.Vec3",
  1596. "x": 0,
  1597. "y": 0,
  1598. "z": 0
  1599. }
  1600. },
  1601. {
  1602. "__type__": "cc.Node",
  1603. "_name": "Halo",
  1604. "_objFlags": 0,
  1605. "_parent": {
  1606. "__id__": 39
  1607. },
  1608. "_children": [],
  1609. "_active": true,
  1610. "_level": 8,
  1611. "_components": [
  1612. {
  1613. "__id__": 41
  1614. }
  1615. ],
  1616. "_prefab": {
  1617. "__id__": 42
  1618. },
  1619. "_opacity": 255,
  1620. "_color": {
  1621. "__type__": "cc.Color",
  1622. "r": 255,
  1623. "g": 255,
  1624. "b": 255,
  1625. "a": 255
  1626. },
  1627. "_contentSize": {
  1628. "__type__": "cc.Size",
  1629. "width": 459,
  1630. "height": 459
  1631. },
  1632. "_anchorPoint": {
  1633. "__type__": "cc.Vec2",
  1634. "x": 0.5,
  1635. "y": 0.5
  1636. },
  1637. "_position": {
  1638. "__type__": "cc.Vec3",
  1639. "x": 0,
  1640. "y": 0,
  1641. "z": 0
  1642. },
  1643. "_scale": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 1,
  1646. "y": 1,
  1647. "z": 1
  1648. },
  1649. "_skewX": 0,
  1650. "_skewY": 0,
  1651. "_zIndex": 0,
  1652. "_is3DNode": false,
  1653. "groupIndex": 0,
  1654. "_id": "",
  1655. "_eulerAngles": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. }
  1661. },
  1662. {
  1663. "__type__": "cc.Sprite",
  1664. "_name": "",
  1665. "_objFlags": 0,
  1666. "node": {
  1667. "__id__": 40
  1668. },
  1669. "_enabled": true,
  1670. "_srcBlendFactor": 770,
  1671. "_dstBlendFactor": 771,
  1672. "_spriteFrame": {
  1673. "__uuid__": "36671297-c7cd-404e-9e66-89ac57ada3bf"
  1674. },
  1675. "_type": 0,
  1676. "_sizeMode": 1,
  1677. "_fillType": 0,
  1678. "_fillCenter": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0,
  1681. "y": 0
  1682. },
  1683. "_fillStart": 0,
  1684. "_fillRange": 0,
  1685. "_isTrimmedMode": true,
  1686. "_state": 0,
  1687. "_atlas": null,
  1688. "_id": ""
  1689. },
  1690. {
  1691. "__type__": "cc.PrefabInfo",
  1692. "root": {
  1693. "__id__": 1
  1694. },
  1695. "asset": {
  1696. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1697. },
  1698. "fileId": "6e5S85fxtGSZg2FasyDyWl",
  1699. "sync": false
  1700. },
  1701. {
  1702. "__type__": "cc.Sprite",
  1703. "_name": "",
  1704. "_objFlags": 0,
  1705. "node": {
  1706. "__id__": 39
  1707. },
  1708. "_enabled": true,
  1709. "_srcBlendFactor": 770,
  1710. "_dstBlendFactor": 771,
  1711. "_spriteFrame": {
  1712. "__uuid__": "be53c86d-72e5-4f31-aff8-ffd779df75ef"
  1713. },
  1714. "_type": 0,
  1715. "_sizeMode": 1,
  1716. "_fillType": 0,
  1717. "_fillCenter": {
  1718. "__type__": "cc.Vec2",
  1719. "x": 0,
  1720. "y": 0
  1721. },
  1722. "_fillStart": 0,
  1723. "_fillRange": 0,
  1724. "_isTrimmedMode": true,
  1725. "_state": 0,
  1726. "_atlas": null,
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.PrefabInfo",
  1731. "root": {
  1732. "__id__": 1
  1733. },
  1734. "asset": {
  1735. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1736. },
  1737. "fileId": "abUwa/1wtPsb2+nIdTO83Q",
  1738. "sync": false
  1739. },
  1740. {
  1741. "__type__": "cc.Node",
  1742. "_name": "Particle",
  1743. "_objFlags": 0,
  1744. "_parent": {
  1745. "__id__": 38
  1746. },
  1747. "_children": [],
  1748. "_active": false,
  1749. "_level": 7,
  1750. "_components": [
  1751. {
  1752. "__id__": 46
  1753. }
  1754. ],
  1755. "_prefab": {
  1756. "__id__": 47
  1757. },
  1758. "_opacity": 255,
  1759. "_color": {
  1760. "__type__": "cc.Color",
  1761. "r": 255,
  1762. "g": 255,
  1763. "b": 255,
  1764. "a": 255
  1765. },
  1766. "_contentSize": {
  1767. "__type__": "cc.Size",
  1768. "width": 0,
  1769. "height": 0
  1770. },
  1771. "_anchorPoint": {
  1772. "__type__": "cc.Vec2",
  1773. "x": 0.5,
  1774. "y": 0.5
  1775. },
  1776. "_position": {
  1777. "__type__": "cc.Vec3",
  1778. "x": 0,
  1779. "y": 0,
  1780. "z": 0
  1781. },
  1782. "_scale": {
  1783. "__type__": "cc.Vec3",
  1784. "x": 1,
  1785. "y": 1,
  1786. "z": 1
  1787. },
  1788. "_skewX": 0,
  1789. "_skewY": 0,
  1790. "_zIndex": 0,
  1791. "_is3DNode": false,
  1792. "groupIndex": 0,
  1793. "_id": "",
  1794. "_eulerAngles": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 0,
  1797. "y": 0,
  1798. "z": 0
  1799. }
  1800. },
  1801. {
  1802. "__type__": "cc.ParticleSystem",
  1803. "_name": "",
  1804. "_objFlags": 0,
  1805. "node": {
  1806. "__id__": 45
  1807. },
  1808. "_enabled": true,
  1809. "_srcBlendFactor": 770,
  1810. "_dstBlendFactor": 771,
  1811. "_custom": true,
  1812. "_file": null,
  1813. "_spriteFrame": {
  1814. "__uuid__": "120975c1-766a-436c-8dd8-ed06bb603fe9"
  1815. },
  1816. "_stopped": true,
  1817. "playOnLoad": true,
  1818. "autoRemoveOnFinish": false,
  1819. "totalParticles": 11200,
  1820. "duration": 0.1,
  1821. "emissionRate": 7000,
  1822. "life": 1.6,
  1823. "lifeVar": 0.2,
  1824. "_startColor": {
  1825. "__type__": "cc.Color",
  1826. "r": 127,
  1827. "g": 127,
  1828. "b": 127,
  1829. "a": 255
  1830. },
  1831. "_startColorVar": {
  1832. "__type__": "cc.Color",
  1833. "r": 112,
  1834. "g": 112,
  1835. "b": 112,
  1836. "a": 0
  1837. },
  1838. "_endColor": {
  1839. "__type__": "cc.Color",
  1840. "r": 127,
  1841. "g": 127,
  1842. "b": 127,
  1843. "a": 127
  1844. },
  1845. "_endColorVar": {
  1846. "__type__": "cc.Color",
  1847. "r": 127,
  1848. "g": 127,
  1849. "b": 127,
  1850. "a": 255
  1851. },
  1852. "angle": 90,
  1853. "angleVar": 360,
  1854. "startSize": 10,
  1855. "startSizeVar": 21,
  1856. "endSize": -1,
  1857. "endSizeVar": 0,
  1858. "startSpin": 28,
  1859. "startSpinVar": 0,
  1860. "endSpin": 0,
  1861. "endSpinVar": 0,
  1862. "sourcePos": {
  1863. "__type__": "cc.Vec2",
  1864. "x": 0,
  1865. "y": 0
  1866. },
  1867. "posVar": {
  1868. "__type__": "cc.Vec2",
  1869. "x": 0,
  1870. "y": 0
  1871. },
  1872. "positionType": 1,
  1873. "emitterMode": 0,
  1874. "gravity": {
  1875. "__type__": "cc.Vec2",
  1876. "x": 0,
  1877. "y": 0
  1878. },
  1879. "speed": 82,
  1880. "speedVar": 271,
  1881. "tangentialAccel": 0,
  1882. "tangentialAccelVar": 0,
  1883. "radialAccel": 0,
  1884. "radialAccelVar": 0,
  1885. "rotationIsDir": false,
  1886. "startRadius": 0,
  1887. "startRadiusVar": 0,
  1888. "endRadius": 0,
  1889. "endRadiusVar": 0,
  1890. "rotatePerS": 0,
  1891. "rotatePerSVar": 0,
  1892. "_N$preview": true,
  1893. "_id": ""
  1894. },
  1895. {
  1896. "__type__": "cc.PrefabInfo",
  1897. "root": {
  1898. "__id__": 1
  1899. },
  1900. "asset": {
  1901. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1902. },
  1903. "fileId": "0eIjtvsJtPu5yDO8p+3ep7",
  1904. "sync": false
  1905. },
  1906. {
  1907. "__type__": "cc.Node",
  1908. "_name": "Rewards",
  1909. "_objFlags": 0,
  1910. "_parent": {
  1911. "__id__": 38
  1912. },
  1913. "_children": [],
  1914. "_active": true,
  1915. "_level": 7,
  1916. "_components": [
  1917. {
  1918. "__id__": 49
  1919. }
  1920. ],
  1921. "_prefab": {
  1922. "__id__": 50
  1923. },
  1924. "_opacity": 255,
  1925. "_color": {
  1926. "__type__": "cc.Color",
  1927. "r": 255,
  1928. "g": 255,
  1929. "b": 255,
  1930. "a": 255
  1931. },
  1932. "_contentSize": {
  1933. "__type__": "cc.Size",
  1934. "width": 459,
  1935. "height": 459
  1936. },
  1937. "_anchorPoint": {
  1938. "__type__": "cc.Vec2",
  1939. "x": 0.5,
  1940. "y": 0.5
  1941. },
  1942. "_position": {
  1943. "__type__": "cc.Vec3",
  1944. "x": 0,
  1945. "y": 0,
  1946. "z": 0
  1947. },
  1948. "_scale": {
  1949. "__type__": "cc.Vec3",
  1950. "x": 1,
  1951. "y": 1,
  1952. "z": 1
  1953. },
  1954. "_skewX": 0,
  1955. "_skewY": 0,
  1956. "_zIndex": 0,
  1957. "_is3DNode": false,
  1958. "groupIndex": 0,
  1959. "_id": "",
  1960. "_eulerAngles": {
  1961. "__type__": "cc.Vec3",
  1962. "x": 0,
  1963. "y": 0,
  1964. "z": 0
  1965. }
  1966. },
  1967. {
  1968. "__type__": "cc.Sprite",
  1969. "_name": "",
  1970. "_objFlags": 0,
  1971. "node": {
  1972. "__id__": 48
  1973. },
  1974. "_enabled": true,
  1975. "_srcBlendFactor": 770,
  1976. "_dstBlendFactor": 771,
  1977. "_spriteFrame": null,
  1978. "_type": 0,
  1979. "_sizeMode": 1,
  1980. "_fillType": 0,
  1981. "_fillCenter": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0
  1985. },
  1986. "_fillStart": 0,
  1987. "_fillRange": 0,
  1988. "_isTrimmedMode": true,
  1989. "_state": 0,
  1990. "_atlas": null,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.PrefabInfo",
  1995. "root": {
  1996. "__id__": 1
  1997. },
  1998. "asset": {
  1999. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2000. },
  2001. "fileId": "4dpxh63xNLXL6aXLn/W0mo",
  2002. "sync": false
  2003. },
  2004. {
  2005. "__type__": "cc.Animation",
  2006. "_name": "",
  2007. "_objFlags": 0,
  2008. "node": {
  2009. "__id__": 38
  2010. },
  2011. "_enabled": true,
  2012. "_defaultClip": null,
  2013. "_clips": [],
  2014. "playOnLoad": true,
  2015. "_id": ""
  2016. },
  2017. {
  2018. "__type__": "cc.PrefabInfo",
  2019. "root": {
  2020. "__id__": 1
  2021. },
  2022. "asset": {
  2023. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2024. },
  2025. "fileId": "b3fMs8AD9PvoUYH84T/ucZ",
  2026. "sync": false
  2027. },
  2028. {
  2029. "__type__": "cc.Node",
  2030. "_name": "GetGift",
  2031. "_objFlags": 0,
  2032. "_parent": {
  2033. "__id__": 31
  2034. },
  2035. "_children": [],
  2036. "_active": true,
  2037. "_level": 6,
  2038. "_components": [
  2039. {
  2040. "__id__": 54
  2041. },
  2042. {
  2043. "__id__": 55
  2044. }
  2045. ],
  2046. "_prefab": {
  2047. "__id__": 56
  2048. },
  2049. "_opacity": 255,
  2050. "_color": {
  2051. "__type__": "cc.Color",
  2052. "r": 255,
  2053. "g": 255,
  2054. "b": 255,
  2055. "a": 255
  2056. },
  2057. "_contentSize": {
  2058. "__type__": "cc.Size",
  2059. "width": 305,
  2060. "height": 108
  2061. },
  2062. "_anchorPoint": {
  2063. "__type__": "cc.Vec2",
  2064. "x": 0.5,
  2065. "y": 0.5
  2066. },
  2067. "_position": {
  2068. "__type__": "cc.Vec3",
  2069. "x": -5,
  2070. "y": -438,
  2071. "z": 0
  2072. },
  2073. "_scale": {
  2074. "__type__": "cc.Vec3",
  2075. "x": 1,
  2076. "y": 1,
  2077. "z": 1
  2078. },
  2079. "_skewX": 0,
  2080. "_skewY": 0,
  2081. "_zIndex": 0,
  2082. "_is3DNode": false,
  2083. "groupIndex": 0,
  2084. "_id": "",
  2085. "_eulerAngles": {
  2086. "__type__": "cc.Vec3",
  2087. "x": 0,
  2088. "y": 0,
  2089. "z": 0
  2090. }
  2091. },
  2092. {
  2093. "__type__": "cc.Button",
  2094. "_name": "",
  2095. "_objFlags": 0,
  2096. "node": {
  2097. "__id__": 53
  2098. },
  2099. "_enabled": true,
  2100. "duration": 0.1,
  2101. "zoomScale": 1.2,
  2102. "clickEvents": [
  2103. null,
  2104. null
  2105. ],
  2106. "_N$interactable": true,
  2107. "_N$enableAutoGrayEffect": false,
  2108. "_N$transition": 0,
  2109. "transition": 0,
  2110. "_N$normalColor": {
  2111. "__type__": "cc.Color",
  2112. "r": 214,
  2113. "g": 214,
  2114. "b": 214,
  2115. "a": 255
  2116. },
  2117. "_N$pressedColor": {
  2118. "__type__": "cc.Color",
  2119. "r": 211,
  2120. "g": 211,
  2121. "b": 211,
  2122. "a": 255
  2123. },
  2124. "pressedColor": {
  2125. "__type__": "cc.Color",
  2126. "r": 211,
  2127. "g": 211,
  2128. "b": 211,
  2129. "a": 255
  2130. },
  2131. "_N$hoverColor": {
  2132. "__type__": "cc.Color",
  2133. "r": 255,
  2134. "g": 255,
  2135. "b": 255,
  2136. "a": 255
  2137. },
  2138. "hoverColor": {
  2139. "__type__": "cc.Color",
  2140. "r": 255,
  2141. "g": 255,
  2142. "b": 255,
  2143. "a": 255
  2144. },
  2145. "_N$disabledColor": {
  2146. "__type__": "cc.Color",
  2147. "r": 124,
  2148. "g": 124,
  2149. "b": 124,
  2150. "a": 255
  2151. },
  2152. "_N$normalSprite": null,
  2153. "_N$pressedSprite": null,
  2154. "pressedSprite": null,
  2155. "_N$hoverSprite": null,
  2156. "hoverSprite": null,
  2157. "_N$disabledSprite": null,
  2158. "_N$target": {
  2159. "__id__": 53
  2160. },
  2161. "_id": ""
  2162. },
  2163. {
  2164. "__type__": "cc.Sprite",
  2165. "_name": "",
  2166. "_objFlags": 0,
  2167. "node": {
  2168. "__id__": 53
  2169. },
  2170. "_enabled": true,
  2171. "_srcBlendFactor": 770,
  2172. "_dstBlendFactor": 771,
  2173. "_spriteFrame": {
  2174. "__uuid__": "d7e02a44-547c-48e5-b21b-fdc631af496b"
  2175. },
  2176. "_type": 0,
  2177. "_sizeMode": 1,
  2178. "_fillType": 0,
  2179. "_fillCenter": {
  2180. "__type__": "cc.Vec2",
  2181. "x": 0,
  2182. "y": 0
  2183. },
  2184. "_fillStart": 0,
  2185. "_fillRange": 0,
  2186. "_isTrimmedMode": true,
  2187. "_state": 0,
  2188. "_atlas": null,
  2189. "_id": ""
  2190. },
  2191. {
  2192. "__type__": "cc.PrefabInfo",
  2193. "root": {
  2194. "__id__": 1
  2195. },
  2196. "asset": {
  2197. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2198. },
  2199. "fileId": "61+3w1iBNIKYGlLWTvUnAy",
  2200. "sync": false
  2201. },
  2202. {
  2203. "__type__": "cc.PrefabInfo",
  2204. "root": {
  2205. "__id__": 1
  2206. },
  2207. "asset": {
  2208. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2209. },
  2210. "fileId": "1d/KF5MF1Gn4l84KYGwIuu",
  2211. "sync": false
  2212. },
  2213. {
  2214. "__type__": "cc.PrefabInfo",
  2215. "root": {
  2216. "__id__": 1
  2217. },
  2218. "asset": {
  2219. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2220. },
  2221. "fileId": "aa1kI926lLM4V7/Q90+KgX",
  2222. "sync": false
  2223. },
  2224. {
  2225. "__type__": "cc.Widget",
  2226. "_name": "",
  2227. "_objFlags": 0,
  2228. "node": {
  2229. "__id__": 1
  2230. },
  2231. "_enabled": true,
  2232. "alignMode": 1,
  2233. "_target": null,
  2234. "_alignFlags": 18,
  2235. "_left": 0,
  2236. "_right": 0,
  2237. "_top": 0,
  2238. "_bottom": 0,
  2239. "_verticalCenter": 0,
  2240. "_horizontalCenter": 0,
  2241. "_isAbsLeft": true,
  2242. "_isAbsRight": true,
  2243. "_isAbsTop": true,
  2244. "_isAbsBottom": true,
  2245. "_isAbsHorizontalCenter": true,
  2246. "_isAbsVerticalCenter": true,
  2247. "_originalWidth": 0,
  2248. "_originalHeight": 0,
  2249. "_id": ""
  2250. },
  2251. {
  2252. "__type__": "cc.PrefabInfo",
  2253. "root": {
  2254. "__id__": 1
  2255. },
  2256. "asset": {
  2257. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2258. },
  2259. "fileId": "d1ioROlqlJka4fnI1Iq5Pb",
  2260. "sync": false
  2261. }
  2262. ]