TurnTable.prefab 66 KB

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