Turntable.prefab 60 KB

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