game_play_ji_yi_li.prefab 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "game_play_ji_yi_li",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "game_play_ji_yi_li",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 38
  26. },
  27. {
  28. "__id__": 86
  29. },
  30. {
  31. "__id__": 146
  32. },
  33. {
  34. "__id__": 152
  35. },
  36. {
  37. "__id__": 158
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 166
  44. },
  45. {
  46. "__id__": 168
  47. },
  48. {
  49. "__id__": 170
  50. },
  51. {
  52. "__id__": 172
  53. },
  54. {
  55. "__id__": 174
  56. }
  57. ],
  58. "_prefab": {
  59. "__id__": 176
  60. },
  61. "_lpos": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_lrot": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_lscale": {
  75. "__type__": "cc.Vec3",
  76. "x": 1,
  77. "y": 1,
  78. "z": 1
  79. },
  80. "_mobility": 0,
  81. "_layer": 33554432,
  82. "_euler": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_id": ""
  89. },
  90. {
  91. "__type__": "cc.Node",
  92. "_name": "top",
  93. "_objFlags": 0,
  94. "__editorExtras__": {},
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [
  99. {
  100. "__id__": 3
  101. },
  102. {
  103. "__id__": 11
  104. },
  105. {
  106. "__id__": 25
  107. }
  108. ],
  109. "_active": true,
  110. "_components": [
  111. {
  112. "__id__": 33
  113. },
  114. {
  115. "__id__": 35
  116. }
  117. ],
  118. "_prefab": {
  119. "__id__": 37
  120. },
  121. "_lpos": {
  122. "__type__": "cc.Vec3",
  123. "x": -187.5,
  124. "y": 341,
  125. "z": 0
  126. },
  127. "_lrot": {
  128. "__type__": "cc.Quat",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0,
  132. "w": 1
  133. },
  134. "_lscale": {
  135. "__type__": "cc.Vec3",
  136. "x": 1,
  137. "y": 1,
  138. "z": 1
  139. },
  140. "_mobility": 0,
  141. "_layer": 33554432,
  142. "_euler": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Node",
  152. "_name": "btn_back",
  153. "_objFlags": 0,
  154. "__editorExtras__": {},
  155. "_parent": {
  156. "__id__": 2
  157. },
  158. "_children": [],
  159. "_active": true,
  160. "_components": [
  161. {
  162. "__id__": 4
  163. },
  164. {
  165. "__id__": 6
  166. },
  167. {
  168. "__id__": 8
  169. }
  170. ],
  171. "_prefab": {
  172. "__id__": 10
  173. },
  174. "_lpos": {
  175. "__type__": "cc.Vec3",
  176. "x": 10,
  177. "y": 0,
  178. "z": 0
  179. },
  180. "_lrot": {
  181. "__type__": "cc.Quat",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0,
  185. "w": 1
  186. },
  187. "_lscale": {
  188. "__type__": "cc.Vec3",
  189. "x": 0.3,
  190. "y": 0.3,
  191. "z": 1
  192. },
  193. "_mobility": 0,
  194. "_layer": 33554432,
  195. "_euler": {
  196. "__type__": "cc.Vec3",
  197. "x": 0,
  198. "y": 0,
  199. "z": 0
  200. },
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.UITransform",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "__editorExtras__": {},
  208. "node": {
  209. "__id__": 3
  210. },
  211. "_enabled": true,
  212. "__prefab": {
  213. "__id__": 5
  214. },
  215. "_contentSize": {
  216. "__type__": "cc.Size",
  217. "width": 108,
  218. "height": 111
  219. },
  220. "_anchorPoint": {
  221. "__type__": "cc.Vec2",
  222. "x": 0,
  223. "y": 0.5
  224. },
  225. "_id": ""
  226. },
  227. {
  228. "__type__": "cc.CompPrefabInfo",
  229. "fileId": "6bOvSq57ZPnL7WN4GEabtS"
  230. },
  231. {
  232. "__type__": "cc.Sprite",
  233. "_name": "",
  234. "_objFlags": 0,
  235. "__editorExtras__": {},
  236. "node": {
  237. "__id__": 3
  238. },
  239. "_enabled": true,
  240. "__prefab": {
  241. "__id__": 7
  242. },
  243. "_customMaterial": null,
  244. "_srcBlendFactor": 2,
  245. "_dstBlendFactor": 4,
  246. "_color": {
  247. "__type__": "cc.Color",
  248. "r": 255,
  249. "g": 255,
  250. "b": 255,
  251. "a": 255
  252. },
  253. "_spriteFrame": {
  254. "__uuid__": "3ff09f44-1218-49ac-a0df-347a8def2ff8@f9941",
  255. "__expectedType__": "cc.SpriteFrame"
  256. },
  257. "_type": 0,
  258. "_fillType": 0,
  259. "_sizeMode": 0,
  260. "_fillCenter": {
  261. "__type__": "cc.Vec2",
  262. "x": 0,
  263. "y": 0
  264. },
  265. "_fillStart": 0,
  266. "_fillRange": 0,
  267. "_isTrimmedMode": true,
  268. "_useGrayscale": false,
  269. "_atlas": null,
  270. "_id": ""
  271. },
  272. {
  273. "__type__": "cc.CompPrefabInfo",
  274. "fileId": "b20nqgmY9Gwa6MARB1MJWD"
  275. },
  276. {
  277. "__type__": "cc.Button",
  278. "_name": "",
  279. "_objFlags": 0,
  280. "__editorExtras__": {},
  281. "node": {
  282. "__id__": 3
  283. },
  284. "_enabled": true,
  285. "__prefab": {
  286. "__id__": 9
  287. },
  288. "clickEvents": [],
  289. "_interactable": true,
  290. "_transition": 3,
  291. "_normalColor": {
  292. "__type__": "cc.Color",
  293. "r": 214,
  294. "g": 214,
  295. "b": 214,
  296. "a": 255
  297. },
  298. "_hoverColor": {
  299. "__type__": "cc.Color",
  300. "r": 211,
  301. "g": 211,
  302. "b": 211,
  303. "a": 255
  304. },
  305. "_pressedColor": {
  306. "__type__": "cc.Color",
  307. "r": 255,
  308. "g": 255,
  309. "b": 255,
  310. "a": 255
  311. },
  312. "_disabledColor": {
  313. "__type__": "cc.Color",
  314. "r": 124,
  315. "g": 124,
  316. "b": 124,
  317. "a": 255
  318. },
  319. "_normalSprite": {
  320. "__uuid__": "3ff09f44-1218-49ac-a0df-347a8def2ff8@f9941",
  321. "__expectedType__": "cc.SpriteFrame"
  322. },
  323. "_hoverSprite": null,
  324. "_pressedSprite": null,
  325. "_disabledSprite": null,
  326. "_duration": 0.1,
  327. "_zoomScale": 1.1,
  328. "_target": {
  329. "__id__": 3
  330. },
  331. "_id": ""
  332. },
  333. {
  334. "__type__": "cc.CompPrefabInfo",
  335. "fileId": "dfVy1tGHBJE6QVGmq7jPz7"
  336. },
  337. {
  338. "__type__": "cc.PrefabInfo",
  339. "root": {
  340. "__id__": 1
  341. },
  342. "asset": {
  343. "__id__": 0
  344. },
  345. "fileId": "b6uZowjO9Lk7peuhRCXECR",
  346. "instance": null,
  347. "targetOverrides": null,
  348. "nestedPrefabInstanceRoots": null
  349. },
  350. {
  351. "__type__": "cc.Node",
  352. "_name": "btn_coin",
  353. "_objFlags": 0,
  354. "__editorExtras__": {},
  355. "_parent": {
  356. "__id__": 2
  357. },
  358. "_children": [
  359. {
  360. "__id__": 12
  361. }
  362. ],
  363. "_active": true,
  364. "_components": [
  365. {
  366. "__id__": 18
  367. },
  368. {
  369. "__id__": 20
  370. },
  371. {
  372. "__id__": 22
  373. }
  374. ],
  375. "_prefab": {
  376. "__id__": 24
  377. },
  378. "_lpos": {
  379. "__type__": "cc.Vec3",
  380. "x": 95,
  381. "y": 2,
  382. "z": 0
  383. },
  384. "_lrot": {
  385. "__type__": "cc.Quat",
  386. "x": 0,
  387. "y": 0,
  388. "z": 0,
  389. "w": 1
  390. },
  391. "_lscale": {
  392. "__type__": "cc.Vec3",
  393. "x": 0.3,
  394. "y": 0.3,
  395. "z": 1
  396. },
  397. "_mobility": 0,
  398. "_layer": 33554432,
  399. "_euler": {
  400. "__type__": "cc.Vec3",
  401. "x": 0,
  402. "y": 0,
  403. "z": 0
  404. },
  405. "_id": ""
  406. },
  407. {
  408. "__type__": "cc.Node",
  409. "_name": "lab_coin",
  410. "_objFlags": 0,
  411. "__editorExtras__": {},
  412. "_parent": {
  413. "__id__": 11
  414. },
  415. "_children": [],
  416. "_active": true,
  417. "_components": [
  418. {
  419. "__id__": 13
  420. },
  421. {
  422. "__id__": 15
  423. }
  424. ],
  425. "_prefab": {
  426. "__id__": 17
  427. },
  428. "_lpos": {
  429. "__type__": "cc.Vec3",
  430. "x": 33,
  431. "y": 0,
  432. "z": 0
  433. },
  434. "_lrot": {
  435. "__type__": "cc.Quat",
  436. "x": 0,
  437. "y": 0,
  438. "z": 0,
  439. "w": 1
  440. },
  441. "_lscale": {
  442. "__type__": "cc.Vec3",
  443. "x": 3,
  444. "y": 3,
  445. "z": 1
  446. },
  447. "_mobility": 0,
  448. "_layer": 33554432,
  449. "_euler": {
  450. "__type__": "cc.Vec3",
  451. "x": 0,
  452. "y": 0,
  453. "z": 0
  454. },
  455. "_id": ""
  456. },
  457. {
  458. "__type__": "cc.UITransform",
  459. "_name": "",
  460. "_objFlags": 0,
  461. "__editorExtras__": {},
  462. "node": {
  463. "__id__": 12
  464. },
  465. "_enabled": true,
  466. "__prefab": {
  467. "__id__": 14
  468. },
  469. "_contentSize": {
  470. "__type__": "cc.Size",
  471. "width": 8.895648193359374,
  472. "height": 20.16
  473. },
  474. "_anchorPoint": {
  475. "__type__": "cc.Vec2",
  476. "x": 0.5,
  477. "y": 0.5
  478. },
  479. "_id": ""
  480. },
  481. {
  482. "__type__": "cc.CompPrefabInfo",
  483. "fileId": "49GtaTVSdCnZ6IlMi73EdB"
  484. },
  485. {
  486. "__type__": "cc.Label",
  487. "_name": "",
  488. "_objFlags": 0,
  489. "__editorExtras__": {},
  490. "node": {
  491. "__id__": 12
  492. },
  493. "_enabled": true,
  494. "__prefab": {
  495. "__id__": 16
  496. },
  497. "_customMaterial": null,
  498. "_srcBlendFactor": 2,
  499. "_dstBlendFactor": 4,
  500. "_color": {
  501. "__type__": "cc.Color",
  502. "r": 126,
  503. "g": 103,
  504. "b": 94,
  505. "a": 255
  506. },
  507. "_string": "0",
  508. "_horizontalAlign": 0,
  509. "_verticalAlign": 1,
  510. "_actualFontSize": 22.857142857142858,
  511. "_fontSize": 16,
  512. "_fontFamily": "Arial",
  513. "_lineHeight": 16,
  514. "_overflow": 0,
  515. "_enableWrapText": true,
  516. "_font": null,
  517. "_isSystemFontUsed": true,
  518. "_spacingX": 0,
  519. "_isItalic": false,
  520. "_isBold": false,
  521. "_isUnderline": false,
  522. "_underlineHeight": 2,
  523. "_cacheMode": 0,
  524. "_id": ""
  525. },
  526. {
  527. "__type__": "cc.CompPrefabInfo",
  528. "fileId": "7fS6mu0nxPpKBlGU+4TRQG"
  529. },
  530. {
  531. "__type__": "cc.PrefabInfo",
  532. "root": {
  533. "__id__": 1
  534. },
  535. "asset": {
  536. "__id__": 0
  537. },
  538. "fileId": "74sJ7rQzxI9aNWvF3jqhxg",
  539. "instance": null,
  540. "targetOverrides": null,
  541. "nestedPrefabInstanceRoots": null
  542. },
  543. {
  544. "__type__": "cc.UITransform",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "__editorExtras__": {},
  548. "node": {
  549. "__id__": 11
  550. },
  551. "_enabled": true,
  552. "__prefab": {
  553. "__id__": 19
  554. },
  555. "_contentSize": {
  556. "__type__": "cc.Size",
  557. "width": 273,
  558. "height": 90
  559. },
  560. "_anchorPoint": {
  561. "__type__": "cc.Vec2",
  562. "x": 0.5,
  563. "y": 0.5
  564. },
  565. "_id": ""
  566. },
  567. {
  568. "__type__": "cc.CompPrefabInfo",
  569. "fileId": "10tuUHn6hN1ps0210JQVsZ"
  570. },
  571. {
  572. "__type__": "cc.Sprite",
  573. "_name": "",
  574. "_objFlags": 0,
  575. "__editorExtras__": {},
  576. "node": {
  577. "__id__": 11
  578. },
  579. "_enabled": true,
  580. "__prefab": {
  581. "__id__": 21
  582. },
  583. "_customMaterial": null,
  584. "_srcBlendFactor": 2,
  585. "_dstBlendFactor": 4,
  586. "_color": {
  587. "__type__": "cc.Color",
  588. "r": 255,
  589. "g": 255,
  590. "b": 255,
  591. "a": 255
  592. },
  593. "_spriteFrame": {
  594. "__uuid__": "fff0d0b5-c98b-4f47-b807-dfc95b2be895@f9941",
  595. "__expectedType__": "cc.SpriteFrame"
  596. },
  597. "_type": 0,
  598. "_fillType": 0,
  599. "_sizeMode": 0,
  600. "_fillCenter": {
  601. "__type__": "cc.Vec2",
  602. "x": 0,
  603. "y": 0
  604. },
  605. "_fillStart": 0,
  606. "_fillRange": 0,
  607. "_isTrimmedMode": true,
  608. "_useGrayscale": false,
  609. "_atlas": null,
  610. "_id": ""
  611. },
  612. {
  613. "__type__": "cc.CompPrefabInfo",
  614. "fileId": "a5Pph0MRdPjKHX+MZBomYX"
  615. },
  616. {
  617. "__type__": "cc.Button",
  618. "_name": "",
  619. "_objFlags": 0,
  620. "__editorExtras__": {},
  621. "node": {
  622. "__id__": 11
  623. },
  624. "_enabled": true,
  625. "__prefab": {
  626. "__id__": 23
  627. },
  628. "clickEvents": [],
  629. "_interactable": true,
  630. "_transition": 0,
  631. "_normalColor": {
  632. "__type__": "cc.Color",
  633. "r": 214,
  634. "g": 214,
  635. "b": 214,
  636. "a": 255
  637. },
  638. "_hoverColor": {
  639. "__type__": "cc.Color",
  640. "r": 211,
  641. "g": 211,
  642. "b": 211,
  643. "a": 255
  644. },
  645. "_pressedColor": {
  646. "__type__": "cc.Color",
  647. "r": 255,
  648. "g": 255,
  649. "b": 255,
  650. "a": 255
  651. },
  652. "_disabledColor": {
  653. "__type__": "cc.Color",
  654. "r": 124,
  655. "g": 124,
  656. "b": 124,
  657. "a": 255
  658. },
  659. "_normalSprite": {
  660. "__uuid__": "fff0d0b5-c98b-4f47-b807-dfc95b2be895@f9941",
  661. "__expectedType__": "cc.SpriteFrame"
  662. },
  663. "_hoverSprite": null,
  664. "_pressedSprite": null,
  665. "_disabledSprite": null,
  666. "_duration": 0.1,
  667. "_zoomScale": 1.1,
  668. "_target": {
  669. "__id__": 11
  670. },
  671. "_id": ""
  672. },
  673. {
  674. "__type__": "cc.CompPrefabInfo",
  675. "fileId": "5cvW9yFa5LIpiMqulhbRtw"
  676. },
  677. {
  678. "__type__": "cc.PrefabInfo",
  679. "root": {
  680. "__id__": 1
  681. },
  682. "asset": {
  683. "__id__": 0
  684. },
  685. "fileId": "29+wQD9ipPUYxBOubDFYDl",
  686. "instance": null,
  687. "targetOverrides": null,
  688. "nestedPrefabInstanceRoots": null
  689. },
  690. {
  691. "__type__": "cc.Node",
  692. "_name": "btn_look_video",
  693. "_objFlags": 0,
  694. "__editorExtras__": {},
  695. "_parent": {
  696. "__id__": 2
  697. },
  698. "_children": [],
  699. "_active": true,
  700. "_components": [
  701. {
  702. "__id__": 26
  703. },
  704. {
  705. "__id__": 28
  706. },
  707. {
  708. "__id__": 30
  709. }
  710. ],
  711. "_prefab": {
  712. "__id__": 32
  713. },
  714. "_lpos": {
  715. "__type__": "cc.Vec3",
  716. "x": 187,
  717. "y": 2,
  718. "z": 0
  719. },
  720. "_lrot": {
  721. "__type__": "cc.Quat",
  722. "x": 0,
  723. "y": 0,
  724. "z": 0,
  725. "w": 1
  726. },
  727. "_lscale": {
  728. "__type__": "cc.Vec3",
  729. "x": 0.3,
  730. "y": 0.3,
  731. "z": 1
  732. },
  733. "_mobility": 0,
  734. "_layer": 33554432,
  735. "_euler": {
  736. "__type__": "cc.Vec3",
  737. "x": 0,
  738. "y": 0,
  739. "z": 0
  740. },
  741. "_id": ""
  742. },
  743. {
  744. "__type__": "cc.UITransform",
  745. "_name": "",
  746. "_objFlags": 0,
  747. "__editorExtras__": {},
  748. "node": {
  749. "__id__": 25
  750. },
  751. "_enabled": true,
  752. "__prefab": {
  753. "__id__": 27
  754. },
  755. "_contentSize": {
  756. "__type__": "cc.Size",
  757. "width": 258,
  758. "height": 90
  759. },
  760. "_anchorPoint": {
  761. "__type__": "cc.Vec2",
  762. "x": 0.5,
  763. "y": 0.5
  764. },
  765. "_id": ""
  766. },
  767. {
  768. "__type__": "cc.CompPrefabInfo",
  769. "fileId": "db9oxVgmpGY60XkuzZX5Qh"
  770. },
  771. {
  772. "__type__": "cc.Sprite",
  773. "_name": "",
  774. "_objFlags": 0,
  775. "__editorExtras__": {},
  776. "node": {
  777. "__id__": 25
  778. },
  779. "_enabled": true,
  780. "__prefab": {
  781. "__id__": 29
  782. },
  783. "_customMaterial": null,
  784. "_srcBlendFactor": 2,
  785. "_dstBlendFactor": 4,
  786. "_color": {
  787. "__type__": "cc.Color",
  788. "r": 255,
  789. "g": 255,
  790. "b": 255,
  791. "a": 255
  792. },
  793. "_spriteFrame": {
  794. "__uuid__": "e77d0e6b-7326-4347-8ece-c44b0ae4ce4b@f9941",
  795. "__expectedType__": "cc.SpriteFrame"
  796. },
  797. "_type": 0,
  798. "_fillType": 0,
  799. "_sizeMode": 0,
  800. "_fillCenter": {
  801. "__type__": "cc.Vec2",
  802. "x": 0,
  803. "y": 0
  804. },
  805. "_fillStart": 0,
  806. "_fillRange": 0,
  807. "_isTrimmedMode": true,
  808. "_useGrayscale": false,
  809. "_atlas": null,
  810. "_id": ""
  811. },
  812. {
  813. "__type__": "cc.CompPrefabInfo",
  814. "fileId": "9e1Fw0h/RJTKpglmq0++h6"
  815. },
  816. {
  817. "__type__": "cc.Button",
  818. "_name": "",
  819. "_objFlags": 0,
  820. "__editorExtras__": {},
  821. "node": {
  822. "__id__": 25
  823. },
  824. "_enabled": true,
  825. "__prefab": {
  826. "__id__": 31
  827. },
  828. "clickEvents": [],
  829. "_interactable": true,
  830. "_transition": 3,
  831. "_normalColor": {
  832. "__type__": "cc.Color",
  833. "r": 214,
  834. "g": 214,
  835. "b": 214,
  836. "a": 255
  837. },
  838. "_hoverColor": {
  839. "__type__": "cc.Color",
  840. "r": 211,
  841. "g": 211,
  842. "b": 211,
  843. "a": 255
  844. },
  845. "_pressedColor": {
  846. "__type__": "cc.Color",
  847. "r": 255,
  848. "g": 255,
  849. "b": 255,
  850. "a": 255
  851. },
  852. "_disabledColor": {
  853. "__type__": "cc.Color",
  854. "r": 124,
  855. "g": 124,
  856. "b": 124,
  857. "a": 255
  858. },
  859. "_normalSprite": {
  860. "__uuid__": "e77d0e6b-7326-4347-8ece-c44b0ae4ce4b@f9941",
  861. "__expectedType__": "cc.SpriteFrame"
  862. },
  863. "_hoverSprite": null,
  864. "_pressedSprite": null,
  865. "_disabledSprite": null,
  866. "_duration": 0.1,
  867. "_zoomScale": 1.1,
  868. "_target": {
  869. "__id__": 25
  870. },
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.CompPrefabInfo",
  875. "fileId": "2cw41l0j5CCLHXnTsC09JV"
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "deJ/Q0QftO4pZf3remp4H8",
  886. "instance": null,
  887. "targetOverrides": null,
  888. "nestedPrefabInstanceRoots": null
  889. },
  890. {
  891. "__type__": "cc.UITransform",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "node": {
  896. "__id__": 2
  897. },
  898. "_enabled": true,
  899. "__prefab": {
  900. "__id__": 34
  901. },
  902. "_contentSize": {
  903. "__type__": "cc.Size",
  904. "width": 375,
  905. "height": 50
  906. },
  907. "_anchorPoint": {
  908. "__type__": "cc.Vec2",
  909. "x": 0,
  910. "y": 0.5
  911. },
  912. "_id": ""
  913. },
  914. {
  915. "__type__": "cc.CompPrefabInfo",
  916. "fileId": "18Tlkxe4hOVI0/menfJzLr"
  917. },
  918. {
  919. "__type__": "cc.Widget",
  920. "_name": "",
  921. "_objFlags": 0,
  922. "__editorExtras__": {},
  923. "node": {
  924. "__id__": 2
  925. },
  926. "_enabled": true,
  927. "__prefab": {
  928. "__id__": 36
  929. },
  930. "_alignFlags": 41,
  931. "_target": null,
  932. "_left": 0,
  933. "_right": 0,
  934. "_top": 40,
  935. "_bottom": 0,
  936. "_horizontalCenter": 0,
  937. "_verticalCenter": 0,
  938. "_isAbsLeft": true,
  939. "_isAbsRight": true,
  940. "_isAbsTop": true,
  941. "_isAbsBottom": true,
  942. "_isAbsHorizontalCenter": true,
  943. "_isAbsVerticalCenter": true,
  944. "_originalWidth": 100,
  945. "_originalHeight": 0,
  946. "_alignMode": 2,
  947. "_lockFlags": 0,
  948. "_id": ""
  949. },
  950. {
  951. "__type__": "cc.CompPrefabInfo",
  952. "fileId": "39rc/ks9tKQYv2ebkOGmEl"
  953. },
  954. {
  955. "__type__": "cc.PrefabInfo",
  956. "root": {
  957. "__id__": 1
  958. },
  959. "asset": {
  960. "__id__": 0
  961. },
  962. "fileId": "c5YtabMNFPZZcaT/++JSa5",
  963. "instance": null,
  964. "targetOverrides": null,
  965. "nestedPrefabInstanceRoots": null
  966. },
  967. {
  968. "__type__": "cc.Node",
  969. "_name": "middle",
  970. "_objFlags": 0,
  971. "__editorExtras__": {},
  972. "_parent": {
  973. "__id__": 1
  974. },
  975. "_children": [
  976. {
  977. "__id__": 39
  978. },
  979. {
  980. "__id__": 51
  981. },
  982. {
  983. "__id__": 57
  984. }
  985. ],
  986. "_active": true,
  987. "_components": [
  988. {
  989. "__id__": 79
  990. },
  991. {
  992. "__id__": 81
  993. },
  994. {
  995. "__id__": 83
  996. }
  997. ],
  998. "_prefab": {
  999. "__id__": 85
  1000. },
  1001. "_lpos": {
  1002. "__type__": "cc.Vec3",
  1003. "x": 0,
  1004. "y": 306,
  1005. "z": 0
  1006. },
  1007. "_lrot": {
  1008. "__type__": "cc.Quat",
  1009. "x": 0,
  1010. "y": 0,
  1011. "z": 0,
  1012. "w": 1
  1013. },
  1014. "_lscale": {
  1015. "__type__": "cc.Vec3",
  1016. "x": 1,
  1017. "y": 1,
  1018. "z": 1
  1019. },
  1020. "_mobility": 0,
  1021. "_layer": 33554432,
  1022. "_euler": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 0,
  1025. "y": 0,
  1026. "z": 0
  1027. },
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.Node",
  1032. "_name": "Node",
  1033. "_objFlags": 0,
  1034. "__editorExtras__": {},
  1035. "_parent": {
  1036. "__id__": 38
  1037. },
  1038. "_children": [
  1039. {
  1040. "__id__": 40
  1041. }
  1042. ],
  1043. "_active": true,
  1044. "_components": [
  1045. {
  1046. "__id__": 46
  1047. },
  1048. {
  1049. "__id__": 48
  1050. }
  1051. ],
  1052. "_prefab": {
  1053. "__id__": 50
  1054. },
  1055. "_lpos": {
  1056. "__type__": "cc.Vec3",
  1057. "x": 0,
  1058. "y": -35,
  1059. "z": 0
  1060. },
  1061. "_lrot": {
  1062. "__type__": "cc.Quat",
  1063. "x": 0,
  1064. "y": 0,
  1065. "z": 0,
  1066. "w": 1
  1067. },
  1068. "_lscale": {
  1069. "__type__": "cc.Vec3",
  1070. "x": 1,
  1071. "y": 1,
  1072. "z": 1
  1073. },
  1074. "_mobility": 0,
  1075. "_layer": 33554432,
  1076. "_euler": {
  1077. "__type__": "cc.Vec3",
  1078. "x": 0,
  1079. "y": 0,
  1080. "z": 0
  1081. },
  1082. "_id": ""
  1083. },
  1084. {
  1085. "__type__": "cc.Node",
  1086. "_name": "lab_title",
  1087. "_objFlags": 0,
  1088. "__editorExtras__": {},
  1089. "_parent": {
  1090. "__id__": 39
  1091. },
  1092. "_children": [],
  1093. "_active": true,
  1094. "_components": [
  1095. {
  1096. "__id__": 41
  1097. },
  1098. {
  1099. "__id__": 43
  1100. }
  1101. ],
  1102. "_prefab": {
  1103. "__id__": 45
  1104. },
  1105. "_lpos": {
  1106. "__type__": "cc.Vec3",
  1107. "x": 0,
  1108. "y": -10,
  1109. "z": 0
  1110. },
  1111. "_lrot": {
  1112. "__type__": "cc.Quat",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0,
  1116. "w": 1
  1117. },
  1118. "_lscale": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 1,
  1121. "y": 1,
  1122. "z": 1
  1123. },
  1124. "_mobility": 0,
  1125. "_layer": 33554432,
  1126. "_euler": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 0,
  1129. "y": 0,
  1130. "z": 0
  1131. },
  1132. "_id": ""
  1133. },
  1134. {
  1135. "__type__": "cc.UITransform",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "__editorExtras__": {},
  1139. "node": {
  1140. "__id__": 40
  1141. },
  1142. "_enabled": true,
  1143. "__prefab": {
  1144. "__id__": 42
  1145. },
  1146. "_contentSize": {
  1147. "__type__": "cc.Size",
  1148. "width": 179.99096069335937,
  1149. "height": 25.2
  1150. },
  1151. "_anchorPoint": {
  1152. "__type__": "cc.Vec2",
  1153. "x": 0.5,
  1154. "y": 0.5
  1155. },
  1156. "_id": ""
  1157. },
  1158. {
  1159. "__type__": "cc.CompPrefabInfo",
  1160. "fileId": "d7XD36IZ1P6JCAFUrQdFlq"
  1161. },
  1162. {
  1163. "__type__": "cc.Label",
  1164. "_name": "",
  1165. "_objFlags": 0,
  1166. "__editorExtras__": {},
  1167. "node": {
  1168. "__id__": 40
  1169. },
  1170. "_enabled": true,
  1171. "__prefab": {
  1172. "__id__": 44
  1173. },
  1174. "_customMaterial": null,
  1175. "_srcBlendFactor": 2,
  1176. "_dstBlendFactor": 4,
  1177. "_color": {
  1178. "__type__": "cc.Color",
  1179. "r": 249,
  1180. "g": 242,
  1181. "b": 225,
  1182. "a": 255
  1183. },
  1184. "_string": "请记下图中全部细节",
  1185. "_horizontalAlign": 1,
  1186. "_verticalAlign": 1,
  1187. "_actualFontSize": 28.571428571428573,
  1188. "_fontSize": 20,
  1189. "_fontFamily": "Arial",
  1190. "_lineHeight": 20,
  1191. "_overflow": 0,
  1192. "_enableWrapText": true,
  1193. "_font": null,
  1194. "_isSystemFontUsed": true,
  1195. "_spacingX": 0,
  1196. "_isItalic": false,
  1197. "_isBold": true,
  1198. "_isUnderline": false,
  1199. "_underlineHeight": 2,
  1200. "_cacheMode": 0,
  1201. "_id": ""
  1202. },
  1203. {
  1204. "__type__": "cc.CompPrefabInfo",
  1205. "fileId": "28ltuVTrhLH4T2cIervEl9"
  1206. },
  1207. {
  1208. "__type__": "cc.PrefabInfo",
  1209. "root": {
  1210. "__id__": 1
  1211. },
  1212. "asset": {
  1213. "__id__": 0
  1214. },
  1215. "fileId": "631R+JpLZJ+J5BrynHTiYa",
  1216. "instance": null,
  1217. "targetOverrides": null,
  1218. "nestedPrefabInstanceRoots": null
  1219. },
  1220. {
  1221. "__type__": "cc.UITransform",
  1222. "_name": "",
  1223. "_objFlags": 0,
  1224. "__editorExtras__": {},
  1225. "node": {
  1226. "__id__": 39
  1227. },
  1228. "_enabled": true,
  1229. "__prefab": {
  1230. "__id__": 47
  1231. },
  1232. "_contentSize": {
  1233. "__type__": "cc.Size",
  1234. "width": 375,
  1235. "height": 70
  1236. },
  1237. "_anchorPoint": {
  1238. "__type__": "cc.Vec2",
  1239. "x": 0.5,
  1240. "y": 0.5
  1241. },
  1242. "_id": ""
  1243. },
  1244. {
  1245. "__type__": "cc.CompPrefabInfo",
  1246. "fileId": "8bqU9xkj1BgY8M3a0+bYuU"
  1247. },
  1248. {
  1249. "__type__": "cc.Widget",
  1250. "_name": "",
  1251. "_objFlags": 0,
  1252. "__editorExtras__": {},
  1253. "node": {
  1254. "__id__": 39
  1255. },
  1256. "_enabled": true,
  1257. "__prefab": {
  1258. "__id__": 49
  1259. },
  1260. "_alignFlags": 40,
  1261. "_target": null,
  1262. "_left": 0,
  1263. "_right": 0,
  1264. "_top": 0,
  1265. "_bottom": 0,
  1266. "_horizontalCenter": 0,
  1267. "_verticalCenter": 0,
  1268. "_isAbsLeft": true,
  1269. "_isAbsRight": true,
  1270. "_isAbsTop": true,
  1271. "_isAbsBottom": true,
  1272. "_isAbsHorizontalCenter": true,
  1273. "_isAbsVerticalCenter": true,
  1274. "_originalWidth": 100,
  1275. "_originalHeight": 0,
  1276. "_alignMode": 2,
  1277. "_lockFlags": 0,
  1278. "_id": ""
  1279. },
  1280. {
  1281. "__type__": "cc.CompPrefabInfo",
  1282. "fileId": "a8VNrmsytEDI0XhqPeMa3y"
  1283. },
  1284. {
  1285. "__type__": "cc.PrefabInfo",
  1286. "root": {
  1287. "__id__": 1
  1288. },
  1289. "asset": {
  1290. "__id__": 0
  1291. },
  1292. "fileId": "f9xWlnMAJBSahoVm7iL+e8",
  1293. "instance": null,
  1294. "targetOverrides": null,
  1295. "nestedPrefabInstanceRoots": null
  1296. },
  1297. {
  1298. "__type__": "cc.Node",
  1299. "_name": "img1",
  1300. "_objFlags": 0,
  1301. "__editorExtras__": {},
  1302. "_parent": {
  1303. "__id__": 38
  1304. },
  1305. "_children": [],
  1306. "_active": true,
  1307. "_components": [
  1308. {
  1309. "__id__": 52
  1310. },
  1311. {
  1312. "__id__": 54
  1313. }
  1314. ],
  1315. "_prefab": {
  1316. "__id__": 56
  1317. },
  1318. "_lpos": {
  1319. "__type__": "cc.Vec3",
  1320. "x": -172.5,
  1321. "y": -550,
  1322. "z": 0
  1323. },
  1324. "_lrot": {
  1325. "__type__": "cc.Quat",
  1326. "x": 0,
  1327. "y": 0,
  1328. "z": 0,
  1329. "w": 1
  1330. },
  1331. "_lscale": {
  1332. "__type__": "cc.Vec3",
  1333. "x": 1,
  1334. "y": 1,
  1335. "z": 1
  1336. },
  1337. "_mobility": 0,
  1338. "_layer": 33554432,
  1339. "_euler": {
  1340. "__type__": "cc.Vec3",
  1341. "x": 0,
  1342. "y": 0,
  1343. "z": 0
  1344. },
  1345. "_id": ""
  1346. },
  1347. {
  1348. "__type__": "cc.UITransform",
  1349. "_name": "",
  1350. "_objFlags": 0,
  1351. "__editorExtras__": {},
  1352. "node": {
  1353. "__id__": 51
  1354. },
  1355. "_enabled": true,
  1356. "__prefab": {
  1357. "__id__": 53
  1358. },
  1359. "_contentSize": {
  1360. "__type__": "cc.Size",
  1361. "width": 345,
  1362. "height": 460
  1363. },
  1364. "_anchorPoint": {
  1365. "__type__": "cc.Vec2",
  1366. "x": 0,
  1367. "y": 0
  1368. },
  1369. "_id": ""
  1370. },
  1371. {
  1372. "__type__": "cc.CompPrefabInfo",
  1373. "fileId": "84VQvOmZNE/pq09UD9B8zA"
  1374. },
  1375. {
  1376. "__type__": "cc.Sprite",
  1377. "_name": "",
  1378. "_objFlags": 0,
  1379. "__editorExtras__": {},
  1380. "node": {
  1381. "__id__": 51
  1382. },
  1383. "_enabled": true,
  1384. "__prefab": {
  1385. "__id__": 55
  1386. },
  1387. "_customMaterial": null,
  1388. "_srcBlendFactor": 2,
  1389. "_dstBlendFactor": 4,
  1390. "_color": {
  1391. "__type__": "cc.Color",
  1392. "r": 255,
  1393. "g": 255,
  1394. "b": 255,
  1395. "a": 255
  1396. },
  1397. "_spriteFrame": null,
  1398. "_type": 0,
  1399. "_fillType": 0,
  1400. "_sizeMode": 0,
  1401. "_fillCenter": {
  1402. "__type__": "cc.Vec2",
  1403. "x": 0,
  1404. "y": 0
  1405. },
  1406. "_fillStart": 0,
  1407. "_fillRange": 0,
  1408. "_isTrimmedMode": true,
  1409. "_useGrayscale": false,
  1410. "_atlas": null,
  1411. "_id": ""
  1412. },
  1413. {
  1414. "__type__": "cc.CompPrefabInfo",
  1415. "fileId": "aaCCZx9oZAgb44g6g2GoY7"
  1416. },
  1417. {
  1418. "__type__": "cc.PrefabInfo",
  1419. "root": {
  1420. "__id__": 1
  1421. },
  1422. "asset": {
  1423. "__id__": 0
  1424. },
  1425. "fileId": "50/xu0ZkdNmLVfzTYPO/tf",
  1426. "instance": null,
  1427. "targetOverrides": null,
  1428. "nestedPrefabInstanceRoots": null
  1429. },
  1430. {
  1431. "__type__": "cc.Node",
  1432. "_name": "question",
  1433. "_objFlags": 0,
  1434. "__editorExtras__": {},
  1435. "_parent": {
  1436. "__id__": 38
  1437. },
  1438. "_children": [
  1439. {
  1440. "__id__": 58
  1441. },
  1442. {
  1443. "__id__": 64
  1444. }
  1445. ],
  1446. "_active": true,
  1447. "_components": [
  1448. {
  1449. "__id__": 72
  1450. },
  1451. {
  1452. "__id__": 74
  1453. },
  1454. {
  1455. "__id__": 76
  1456. }
  1457. ],
  1458. "_prefab": {
  1459. "__id__": 78
  1460. },
  1461. "_lpos": {
  1462. "__type__": "cc.Vec3",
  1463. "x": 0,
  1464. "y": -800,
  1465. "z": 0
  1466. },
  1467. "_lrot": {
  1468. "__type__": "cc.Quat",
  1469. "x": 0,
  1470. "y": 0,
  1471. "z": 0,
  1472. "w": 1
  1473. },
  1474. "_lscale": {
  1475. "__type__": "cc.Vec3",
  1476. "x": 1,
  1477. "y": 1,
  1478. "z": 1
  1479. },
  1480. "_mobility": 0,
  1481. "_layer": 33554432,
  1482. "_euler": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 0,
  1485. "y": 0,
  1486. "z": 0
  1487. },
  1488. "_id": ""
  1489. },
  1490. {
  1491. "__type__": "cc.Node",
  1492. "_name": "lab_question",
  1493. "_objFlags": 0,
  1494. "__editorExtras__": {},
  1495. "_parent": {
  1496. "__id__": 57
  1497. },
  1498. "_children": [],
  1499. "_active": true,
  1500. "_components": [
  1501. {
  1502. "__id__": 59
  1503. },
  1504. {
  1505. "__id__": 61
  1506. }
  1507. ],
  1508. "_prefab": {
  1509. "__id__": 63
  1510. },
  1511. "_lpos": {
  1512. "__type__": "cc.Vec3",
  1513. "x": 0,
  1514. "y": 217.4,
  1515. "z": 0
  1516. },
  1517. "_lrot": {
  1518. "__type__": "cc.Quat",
  1519. "x": 0,
  1520. "y": 0,
  1521. "z": 0,
  1522. "w": 1
  1523. },
  1524. "_lscale": {
  1525. "__type__": "cc.Vec3",
  1526. "x": 1,
  1527. "y": 1,
  1528. "z": 1
  1529. },
  1530. "_mobility": 0,
  1531. "_layer": 33554432,
  1532. "_euler": {
  1533. "__type__": "cc.Vec3",
  1534. "x": 0,
  1535. "y": 0,
  1536. "z": 0
  1537. },
  1538. "_id": ""
  1539. },
  1540. {
  1541. "__type__": "cc.UITransform",
  1542. "_name": "",
  1543. "_objFlags": 0,
  1544. "__editorExtras__": {},
  1545. "node": {
  1546. "__id__": 58
  1547. },
  1548. "_enabled": true,
  1549. "__prefab": {
  1550. "__id__": 60
  1551. },
  1552. "_contentSize": {
  1553. "__type__": "cc.Size",
  1554. "width": 239.98795471191406,
  1555. "height": 25.2
  1556. },
  1557. "_anchorPoint": {
  1558. "__type__": "cc.Vec2",
  1559. "x": 0.5,
  1560. "y": 0.5
  1561. },
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.CompPrefabInfo",
  1566. "fileId": "b8GWDWFuRG/K0l1oysjuy/"
  1567. },
  1568. {
  1569. "__type__": "cc.Label",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "__editorExtras__": {},
  1573. "node": {
  1574. "__id__": 58
  1575. },
  1576. "_enabled": true,
  1577. "__prefab": {
  1578. "__id__": 62
  1579. },
  1580. "_customMaterial": null,
  1581. "_srcBlendFactor": 2,
  1582. "_dstBlendFactor": 4,
  1583. "_color": {
  1584. "__type__": "cc.Color",
  1585. "r": 249,
  1586. "g": 242,
  1587. "b": 225,
  1588. "a": 255
  1589. },
  1590. "_string": "问:图中有几个圣诞老人?",
  1591. "_horizontalAlign": 1,
  1592. "_verticalAlign": 1,
  1593. "_actualFontSize": 28.571428571428573,
  1594. "_fontSize": 20,
  1595. "_fontFamily": "Arial",
  1596. "_lineHeight": 20,
  1597. "_overflow": 0,
  1598. "_enableWrapText": true,
  1599. "_font": null,
  1600. "_isSystemFontUsed": true,
  1601. "_spacingX": 0,
  1602. "_isItalic": false,
  1603. "_isBold": true,
  1604. "_isUnderline": false,
  1605. "_underlineHeight": 2,
  1606. "_cacheMode": 0,
  1607. "_id": ""
  1608. },
  1609. {
  1610. "__type__": "cc.CompPrefabInfo",
  1611. "fileId": "bcPqRA6j1EubPHPpNYn/ZZ"
  1612. },
  1613. {
  1614. "__type__": "cc.PrefabInfo",
  1615. "root": {
  1616. "__id__": 1
  1617. },
  1618. "asset": {
  1619. "__id__": 0
  1620. },
  1621. "fileId": "e3SLCVTy9JX7SIa4Zm0YQh",
  1622. "instance": null,
  1623. "targetOverrides": null,
  1624. "nestedPrefabInstanceRoots": null
  1625. },
  1626. {
  1627. "__type__": "cc.Node",
  1628. "_name": "content",
  1629. "_objFlags": 0,
  1630. "__editorExtras__": {},
  1631. "_parent": {
  1632. "__id__": 57
  1633. },
  1634. "_children": [],
  1635. "_active": true,
  1636. "_components": [
  1637. {
  1638. "__id__": 65
  1639. },
  1640. {
  1641. "__id__": 67
  1642. },
  1643. {
  1644. "__id__": 69
  1645. }
  1646. ],
  1647. "_prefab": {
  1648. "__id__": 71
  1649. },
  1650. "_lpos": {
  1651. "__type__": "cc.Vec3",
  1652. "x": 0,
  1653. "y": -25.19999999999999,
  1654. "z": 0
  1655. },
  1656. "_lrot": {
  1657. "__type__": "cc.Quat",
  1658. "x": 0,
  1659. "y": 0,
  1660. "z": 0,
  1661. "w": 1
  1662. },
  1663. "_lscale": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 1,
  1666. "y": 1,
  1667. "z": 1
  1668. },
  1669. "_mobility": 0,
  1670. "_layer": 33554432,
  1671. "_euler": {
  1672. "__type__": "cc.Vec3",
  1673. "x": 0,
  1674. "y": 0,
  1675. "z": 0
  1676. },
  1677. "_id": ""
  1678. },
  1679. {
  1680. "__type__": "cc.UITransform",
  1681. "_name": "",
  1682. "_objFlags": 0,
  1683. "__editorExtras__": {},
  1684. "node": {
  1685. "__id__": 64
  1686. },
  1687. "_enabled": true,
  1688. "__prefab": {
  1689. "__id__": 66
  1690. },
  1691. "_contentSize": {
  1692. "__type__": "cc.Size",
  1693. "width": 345,
  1694. "height": 460
  1695. },
  1696. "_anchorPoint": {
  1697. "__type__": "cc.Vec2",
  1698. "x": 0.5,
  1699. "y": 0.5
  1700. },
  1701. "_id": ""
  1702. },
  1703. {
  1704. "__type__": "cc.CompPrefabInfo",
  1705. "fileId": "91Od/OsrRCqI9jULjVCumS"
  1706. },
  1707. {
  1708. "__type__": "cc.Widget",
  1709. "_name": "",
  1710. "_objFlags": 0,
  1711. "__editorExtras__": {},
  1712. "node": {
  1713. "__id__": 64
  1714. },
  1715. "_enabled": true,
  1716. "__prefab": {
  1717. "__id__": 68
  1718. },
  1719. "_alignFlags": 45,
  1720. "_target": null,
  1721. "_left": 0,
  1722. "_right": 0,
  1723. "_top": 25.19999999999999,
  1724. "_bottom": -25.19999999999999,
  1725. "_horizontalCenter": 0,
  1726. "_verticalCenter": 0,
  1727. "_isAbsLeft": true,
  1728. "_isAbsRight": true,
  1729. "_isAbsTop": true,
  1730. "_isAbsBottom": true,
  1731. "_isAbsHorizontalCenter": true,
  1732. "_isAbsVerticalCenter": true,
  1733. "_originalWidth": 100,
  1734. "_originalHeight": 100,
  1735. "_alignMode": 2,
  1736. "_lockFlags": 0,
  1737. "_id": ""
  1738. },
  1739. {
  1740. "__type__": "cc.CompPrefabInfo",
  1741. "fileId": "bavNkQYXFOKKldPl6DMoup"
  1742. },
  1743. {
  1744. "__type__": "cc.Layout",
  1745. "_name": "",
  1746. "_objFlags": 0,
  1747. "__editorExtras__": {},
  1748. "node": {
  1749. "__id__": 64
  1750. },
  1751. "_enabled": true,
  1752. "__prefab": {
  1753. "__id__": 70
  1754. },
  1755. "_resizeMode": 0,
  1756. "_layoutType": 2,
  1757. "_cellSize": {
  1758. "__type__": "cc.Size",
  1759. "width": 40,
  1760. "height": 40
  1761. },
  1762. "_startAxis": 0,
  1763. "_paddingLeft": 0,
  1764. "_paddingRight": 0,
  1765. "_paddingTop": 0,
  1766. "_paddingBottom": 0,
  1767. "_spacingX": 0,
  1768. "_spacingY": 0,
  1769. "_verticalDirection": 1,
  1770. "_horizontalDirection": 0,
  1771. "_constraint": 0,
  1772. "_constraintNum": 2,
  1773. "_affectedByScale": false,
  1774. "_isAlign": false,
  1775. "_id": ""
  1776. },
  1777. {
  1778. "__type__": "cc.CompPrefabInfo",
  1779. "fileId": "23QUigvvpIa4DHd+xjMFVC"
  1780. },
  1781. {
  1782. "__type__": "cc.PrefabInfo",
  1783. "root": {
  1784. "__id__": 1
  1785. },
  1786. "asset": {
  1787. "__id__": 0
  1788. },
  1789. "fileId": "50zHj+rLJFYLHF9kTWLctX",
  1790. "instance": null,
  1791. "targetOverrides": null,
  1792. "nestedPrefabInstanceRoots": null
  1793. },
  1794. {
  1795. "__type__": "cc.UITransform",
  1796. "_name": "",
  1797. "_objFlags": 0,
  1798. "__editorExtras__": {},
  1799. "node": {
  1800. "__id__": 57
  1801. },
  1802. "_enabled": true,
  1803. "__prefab": {
  1804. "__id__": 73
  1805. },
  1806. "_contentSize": {
  1807. "__type__": "cc.Size",
  1808. "width": 345,
  1809. "height": 460
  1810. },
  1811. "_anchorPoint": {
  1812. "__type__": "cc.Vec2",
  1813. "x": 0.5,
  1814. "y": 0.5
  1815. },
  1816. "_id": ""
  1817. },
  1818. {
  1819. "__type__": "cc.CompPrefabInfo",
  1820. "fileId": "25DbMVdXlJ2LKr3OOYNxPr"
  1821. },
  1822. {
  1823. "__type__": "cc.Layout",
  1824. "_name": "",
  1825. "_objFlags": 0,
  1826. "__editorExtras__": {},
  1827. "node": {
  1828. "__id__": 57
  1829. },
  1830. "_enabled": true,
  1831. "__prefab": {
  1832. "__id__": 75
  1833. },
  1834. "_resizeMode": 0,
  1835. "_layoutType": 2,
  1836. "_cellSize": {
  1837. "__type__": "cc.Size",
  1838. "width": 40,
  1839. "height": 40
  1840. },
  1841. "_startAxis": 0,
  1842. "_paddingLeft": 0,
  1843. "_paddingRight": 0,
  1844. "_paddingTop": 0,
  1845. "_paddingBottom": 0,
  1846. "_spacingX": 0,
  1847. "_spacingY": 0,
  1848. "_verticalDirection": 1,
  1849. "_horizontalDirection": 0,
  1850. "_constraint": 0,
  1851. "_constraintNum": 2,
  1852. "_affectedByScale": false,
  1853. "_isAlign": false,
  1854. "_id": ""
  1855. },
  1856. {
  1857. "__type__": "cc.CompPrefabInfo",
  1858. "fileId": "d0jdAVmdNMB7Q0H6Ty3V4c"
  1859. },
  1860. {
  1861. "__type__": "ba8df+V4zpER4DANfCpUqR4",
  1862. "_name": "",
  1863. "_objFlags": 0,
  1864. "__editorExtras__": {},
  1865. "node": {
  1866. "__id__": 57
  1867. },
  1868. "_enabled": true,
  1869. "__prefab": {
  1870. "__id__": 77
  1871. },
  1872. "lab_question": {
  1873. "__id__": 58
  1874. },
  1875. "question_item_prefab": {
  1876. "__uuid__": "5bc8aeab-09a8-4ddb-991c-94c422d280d4",
  1877. "__expectedType__": "cc.Prefab"
  1878. },
  1879. "content": {
  1880. "__id__": 64
  1881. },
  1882. "_id": ""
  1883. },
  1884. {
  1885. "__type__": "cc.CompPrefabInfo",
  1886. "fileId": "955BXS+RRJUa58aCKylNNZ"
  1887. },
  1888. {
  1889. "__type__": "cc.PrefabInfo",
  1890. "root": {
  1891. "__id__": 1
  1892. },
  1893. "asset": {
  1894. "__id__": 0
  1895. },
  1896. "fileId": "a4yeRB5CRL/KW6mgIAwbY/",
  1897. "instance": null,
  1898. "targetOverrides": null,
  1899. "nestedPrefabInstanceRoots": null
  1900. },
  1901. {
  1902. "__type__": "cc.UITransform",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "__editorExtras__": {},
  1906. "node": {
  1907. "__id__": 38
  1908. },
  1909. "_enabled": true,
  1910. "__prefab": {
  1911. "__id__": 80
  1912. },
  1913. "_contentSize": {
  1914. "__type__": "cc.Size",
  1915. "width": 375,
  1916. "height": 1030
  1917. },
  1918. "_anchorPoint": {
  1919. "__type__": "cc.Vec2",
  1920. "x": 0.5,
  1921. "y": 1
  1922. },
  1923. "_id": ""
  1924. },
  1925. {
  1926. "__type__": "cc.CompPrefabInfo",
  1927. "fileId": "38alrJC+lOSoA1Qfp+ei8u"
  1928. },
  1929. {
  1930. "__type__": "cc.Widget",
  1931. "_name": "",
  1932. "_objFlags": 0,
  1933. "__editorExtras__": {},
  1934. "node": {
  1935. "__id__": 38
  1936. },
  1937. "_enabled": true,
  1938. "__prefab": {
  1939. "__id__": 82
  1940. },
  1941. "_alignFlags": 41,
  1942. "_target": null,
  1943. "_left": 0,
  1944. "_right": 0,
  1945. "_top": 100,
  1946. "_bottom": 0,
  1947. "_horizontalCenter": 0,
  1948. "_verticalCenter": 0,
  1949. "_isAbsLeft": true,
  1950. "_isAbsRight": true,
  1951. "_isAbsTop": true,
  1952. "_isAbsBottom": true,
  1953. "_isAbsHorizontalCenter": true,
  1954. "_isAbsVerticalCenter": true,
  1955. "_originalWidth": 100,
  1956. "_originalHeight": 650,
  1957. "_alignMode": 2,
  1958. "_lockFlags": 0,
  1959. "_id": ""
  1960. },
  1961. {
  1962. "__type__": "cc.CompPrefabInfo",
  1963. "fileId": "daCjXKDzlNMZmIN5esxPG5"
  1964. },
  1965. {
  1966. "__type__": "cc.Layout",
  1967. "_name": "",
  1968. "_objFlags": 0,
  1969. "__editorExtras__": {},
  1970. "node": {
  1971. "__id__": 38
  1972. },
  1973. "_enabled": true,
  1974. "__prefab": {
  1975. "__id__": 84
  1976. },
  1977. "_resizeMode": 1,
  1978. "_layoutType": 2,
  1979. "_cellSize": {
  1980. "__type__": "cc.Size",
  1981. "width": 40,
  1982. "height": 40
  1983. },
  1984. "_startAxis": 0,
  1985. "_paddingLeft": 0,
  1986. "_paddingRight": 0,
  1987. "_paddingTop": 0,
  1988. "_paddingBottom": 0,
  1989. "_spacingX": 0,
  1990. "_spacingY": 20,
  1991. "_verticalDirection": 1,
  1992. "_horizontalDirection": 0,
  1993. "_constraint": 0,
  1994. "_constraintNum": 2,
  1995. "_affectedByScale": false,
  1996. "_isAlign": false,
  1997. "_id": ""
  1998. },
  1999. {
  2000. "__type__": "cc.CompPrefabInfo",
  2001. "fileId": "5eKywbmoZPc7z8abzV44o3"
  2002. },
  2003. {
  2004. "__type__": "cc.PrefabInfo",
  2005. "root": {
  2006. "__id__": 1
  2007. },
  2008. "asset": {
  2009. "__id__": 0
  2010. },
  2011. "fileId": "b5IyEXistHYqOD3rR/rF2D",
  2012. "instance": null,
  2013. "targetOverrides": null,
  2014. "nestedPrefabInstanceRoots": null
  2015. },
  2016. {
  2017. "__type__": "cc.Node",
  2018. "_name": "bottom",
  2019. "_objFlags": 0,
  2020. "__editorExtras__": {},
  2021. "_parent": {
  2022. "__id__": 1
  2023. },
  2024. "_children": [
  2025. {
  2026. "__id__": 87
  2027. },
  2028. {
  2029. "__id__": 95
  2030. },
  2031. {
  2032. "__id__": 103
  2033. },
  2034. {
  2035. "__id__": 125
  2036. },
  2037. {
  2038. "__id__": 133
  2039. }
  2040. ],
  2041. "_active": true,
  2042. "_components": [
  2043. {
  2044. "__id__": 139
  2045. },
  2046. {
  2047. "__id__": 141
  2048. },
  2049. {
  2050. "__id__": 143
  2051. }
  2052. ],
  2053. "_prefab": {
  2054. "__id__": 145
  2055. },
  2056. "_lpos": {
  2057. "__type__": "cc.Vec3",
  2058. "x": 0,
  2059. "y": -354.5,
  2060. "z": 0
  2061. },
  2062. "_lrot": {
  2063. "__type__": "cc.Quat",
  2064. "x": 0,
  2065. "y": 0,
  2066. "z": 0,
  2067. "w": 1
  2068. },
  2069. "_lscale": {
  2070. "__type__": "cc.Vec3",
  2071. "x": 1,
  2072. "y": 1,
  2073. "z": 1
  2074. },
  2075. "_mobility": 0,
  2076. "_layer": 33554432,
  2077. "_euler": {
  2078. "__type__": "cc.Vec3",
  2079. "x": 0,
  2080. "y": 0,
  2081. "z": 0
  2082. },
  2083. "_id": ""
  2084. },
  2085. {
  2086. "__type__": "cc.Node",
  2087. "_name": "bg",
  2088. "_objFlags": 0,
  2089. "__editorExtras__": {},
  2090. "_parent": {
  2091. "__id__": 86
  2092. },
  2093. "_children": [],
  2094. "_active": true,
  2095. "_components": [
  2096. {
  2097. "__id__": 88
  2098. },
  2099. {
  2100. "__id__": 90
  2101. },
  2102. {
  2103. "__id__": 92
  2104. }
  2105. ],
  2106. "_prefab": {
  2107. "__id__": 94
  2108. },
  2109. "_lpos": {
  2110. "__type__": "cc.Vec3",
  2111. "x": 0,
  2112. "y": 0,
  2113. "z": 0
  2114. },
  2115. "_lrot": {
  2116. "__type__": "cc.Quat",
  2117. "x": 0,
  2118. "y": 0,
  2119. "z": 0,
  2120. "w": 1
  2121. },
  2122. "_lscale": {
  2123. "__type__": "cc.Vec3",
  2124. "x": 1,
  2125. "y": 1,
  2126. "z": 1
  2127. },
  2128. "_mobility": 0,
  2129. "_layer": 33554432,
  2130. "_euler": {
  2131. "__type__": "cc.Vec3",
  2132. "x": 0,
  2133. "y": 0,
  2134. "z": 0
  2135. },
  2136. "_id": ""
  2137. },
  2138. {
  2139. "__type__": "cc.UITransform",
  2140. "_name": "",
  2141. "_objFlags": 0,
  2142. "__editorExtras__": {},
  2143. "node": {
  2144. "__id__": 87
  2145. },
  2146. "_enabled": true,
  2147. "__prefab": {
  2148. "__id__": 89
  2149. },
  2150. "_contentSize": {
  2151. "__type__": "cc.Size",
  2152. "width": 355,
  2153. "height": 103
  2154. },
  2155. "_anchorPoint": {
  2156. "__type__": "cc.Vec2",
  2157. "x": 0.5,
  2158. "y": 0.5
  2159. },
  2160. "_id": ""
  2161. },
  2162. {
  2163. "__type__": "cc.CompPrefabInfo",
  2164. "fileId": "adZujrQYJLOo9+2o7CLExE"
  2165. },
  2166. {
  2167. "__type__": "cc.Sprite",
  2168. "_name": "",
  2169. "_objFlags": 0,
  2170. "__editorExtras__": {},
  2171. "node": {
  2172. "__id__": 87
  2173. },
  2174. "_enabled": true,
  2175. "__prefab": {
  2176. "__id__": 91
  2177. },
  2178. "_customMaterial": null,
  2179. "_srcBlendFactor": 2,
  2180. "_dstBlendFactor": 4,
  2181. "_color": {
  2182. "__type__": "cc.Color",
  2183. "r": 255,
  2184. "g": 255,
  2185. "b": 255,
  2186. "a": 255
  2187. },
  2188. "_spriteFrame": {
  2189. "__uuid__": "ef8a8323-39a4-4e8a-9d3b-093dc31888c3@f9941",
  2190. "__expectedType__": "cc.SpriteFrame"
  2191. },
  2192. "_type": 1,
  2193. "_fillType": 0,
  2194. "_sizeMode": 0,
  2195. "_fillCenter": {
  2196. "__type__": "cc.Vec2",
  2197. "x": 0,
  2198. "y": 0
  2199. },
  2200. "_fillStart": 0,
  2201. "_fillRange": 0,
  2202. "_isTrimmedMode": true,
  2203. "_useGrayscale": false,
  2204. "_atlas": null,
  2205. "_id": ""
  2206. },
  2207. {
  2208. "__type__": "cc.CompPrefabInfo",
  2209. "fileId": "15cHAXbmBOV7JVWBGpSvTH"
  2210. },
  2211. {
  2212. "__type__": "cc.Widget",
  2213. "_name": "",
  2214. "_objFlags": 0,
  2215. "__editorExtras__": {},
  2216. "node": {
  2217. "__id__": 87
  2218. },
  2219. "_enabled": true,
  2220. "__prefab": {
  2221. "__id__": 93
  2222. },
  2223. "_alignFlags": 44,
  2224. "_target": null,
  2225. "_left": 10,
  2226. "_right": 10,
  2227. "_top": 0,
  2228. "_bottom": 0,
  2229. "_horizontalCenter": 0,
  2230. "_verticalCenter": 0,
  2231. "_isAbsLeft": true,
  2232. "_isAbsRight": true,
  2233. "_isAbsTop": true,
  2234. "_isAbsBottom": true,
  2235. "_isAbsHorizontalCenter": true,
  2236. "_isAbsVerticalCenter": true,
  2237. "_originalWidth": 40,
  2238. "_originalHeight": 0,
  2239. "_alignMode": 2,
  2240. "_lockFlags": 0,
  2241. "_id": ""
  2242. },
  2243. {
  2244. "__type__": "cc.CompPrefabInfo",
  2245. "fileId": "e00xUFoldDPZVqkRo5jTzq"
  2246. },
  2247. {
  2248. "__type__": "cc.PrefabInfo",
  2249. "root": {
  2250. "__id__": 1
  2251. },
  2252. "asset": {
  2253. "__id__": 0
  2254. },
  2255. "fileId": "10E67XsgVPK5uLZJPe+6o0",
  2256. "instance": null,
  2257. "targetOverrides": null,
  2258. "nestedPrefabInstanceRoots": null
  2259. },
  2260. {
  2261. "__type__": "cc.Node",
  2262. "_name": "btn_tip",
  2263. "_objFlags": 0,
  2264. "__editorExtras__": {},
  2265. "_parent": {
  2266. "__id__": 86
  2267. },
  2268. "_children": [],
  2269. "_active": false,
  2270. "_components": [
  2271. {
  2272. "__id__": 96
  2273. },
  2274. {
  2275. "__id__": 98
  2276. },
  2277. {
  2278. "__id__": 100
  2279. }
  2280. ],
  2281. "_prefab": {
  2282. "__id__": 102
  2283. },
  2284. "_lpos": {
  2285. "__type__": "cc.Vec3",
  2286. "x": -117.336,
  2287. "y": -10,
  2288. "z": 0
  2289. },
  2290. "_lrot": {
  2291. "__type__": "cc.Quat",
  2292. "x": 0,
  2293. "y": 0,
  2294. "z": 0,
  2295. "w": 1
  2296. },
  2297. "_lscale": {
  2298. "__type__": "cc.Vec3",
  2299. "x": 0.3,
  2300. "y": 0.3,
  2301. "z": 1
  2302. },
  2303. "_mobility": 0,
  2304. "_layer": 33554432,
  2305. "_euler": {
  2306. "__type__": "cc.Vec3",
  2307. "x": 0,
  2308. "y": 0,
  2309. "z": 0
  2310. },
  2311. "_id": ""
  2312. },
  2313. {
  2314. "__type__": "cc.UITransform",
  2315. "_name": "",
  2316. "_objFlags": 0,
  2317. "__editorExtras__": {},
  2318. "node": {
  2319. "__id__": 95
  2320. },
  2321. "_enabled": true,
  2322. "__prefab": {
  2323. "__id__": 97
  2324. },
  2325. "_contentSize": {
  2326. "__type__": "cc.Size",
  2327. "width": 259,
  2328. "height": 257
  2329. },
  2330. "_anchorPoint": {
  2331. "__type__": "cc.Vec2",
  2332. "x": 0.5,
  2333. "y": 0.5
  2334. },
  2335. "_id": ""
  2336. },
  2337. {
  2338. "__type__": "cc.CompPrefabInfo",
  2339. "fileId": "ee2EKx2DtGKb2/k6mJeAM7"
  2340. },
  2341. {
  2342. "__type__": "cc.Sprite",
  2343. "_name": "",
  2344. "_objFlags": 0,
  2345. "__editorExtras__": {},
  2346. "node": {
  2347. "__id__": 95
  2348. },
  2349. "_enabled": true,
  2350. "__prefab": {
  2351. "__id__": 99
  2352. },
  2353. "_customMaterial": null,
  2354. "_srcBlendFactor": 2,
  2355. "_dstBlendFactor": 4,
  2356. "_color": {
  2357. "__type__": "cc.Color",
  2358. "r": 255,
  2359. "g": 255,
  2360. "b": 255,
  2361. "a": 255
  2362. },
  2363. "_spriteFrame": {
  2364. "__uuid__": "1e5acd9c-352a-48e3-8710-383c6619e133@f9941",
  2365. "__expectedType__": "cc.SpriteFrame"
  2366. },
  2367. "_type": 0,
  2368. "_fillType": 0,
  2369. "_sizeMode": 2,
  2370. "_fillCenter": {
  2371. "__type__": "cc.Vec2",
  2372. "x": 0,
  2373. "y": 0
  2374. },
  2375. "_fillStart": 0,
  2376. "_fillRange": 0,
  2377. "_isTrimmedMode": true,
  2378. "_useGrayscale": false,
  2379. "_atlas": null,
  2380. "_id": ""
  2381. },
  2382. {
  2383. "__type__": "cc.CompPrefabInfo",
  2384. "fileId": "f3wj1ASBlGVLYRlnzW2Ic3"
  2385. },
  2386. {
  2387. "__type__": "cc.Button",
  2388. "_name": "",
  2389. "_objFlags": 0,
  2390. "__editorExtras__": {},
  2391. "node": {
  2392. "__id__": 95
  2393. },
  2394. "_enabled": true,
  2395. "__prefab": {
  2396. "__id__": 101
  2397. },
  2398. "clickEvents": [],
  2399. "_interactable": true,
  2400. "_transition": 3,
  2401. "_normalColor": {
  2402. "__type__": "cc.Color",
  2403. "r": 214,
  2404. "g": 214,
  2405. "b": 214,
  2406. "a": 255
  2407. },
  2408. "_hoverColor": {
  2409. "__type__": "cc.Color",
  2410. "r": 211,
  2411. "g": 211,
  2412. "b": 211,
  2413. "a": 255
  2414. },
  2415. "_pressedColor": {
  2416. "__type__": "cc.Color",
  2417. "r": 255,
  2418. "g": 255,
  2419. "b": 255,
  2420. "a": 255
  2421. },
  2422. "_disabledColor": {
  2423. "__type__": "cc.Color",
  2424. "r": 124,
  2425. "g": 124,
  2426. "b": 124,
  2427. "a": 255
  2428. },
  2429. "_normalSprite": {
  2430. "__uuid__": "1e5acd9c-352a-48e3-8710-383c6619e133@f9941",
  2431. "__expectedType__": "cc.SpriteFrame"
  2432. },
  2433. "_hoverSprite": null,
  2434. "_pressedSprite": null,
  2435. "_disabledSprite": null,
  2436. "_duration": 0.1,
  2437. "_zoomScale": 1.1,
  2438. "_target": {
  2439. "__id__": 95
  2440. },
  2441. "_id": ""
  2442. },
  2443. {
  2444. "__type__": "cc.CompPrefabInfo",
  2445. "fileId": "fdNqJe9KpCa6HkrycUSfkT"
  2446. },
  2447. {
  2448. "__type__": "cc.PrefabInfo",
  2449. "root": {
  2450. "__id__": 1
  2451. },
  2452. "asset": {
  2453. "__id__": 0
  2454. },
  2455. "fileId": "d6G1NASXFH4aD3xz8szeQF",
  2456. "instance": null,
  2457. "targetOverrides": null,
  2458. "nestedPrefabInstanceRoots": null
  2459. },
  2460. {
  2461. "__type__": "cc.Node",
  2462. "_name": "countdown_time",
  2463. "_objFlags": 0,
  2464. "__editorExtras__": {},
  2465. "_parent": {
  2466. "__id__": 86
  2467. },
  2468. "_children": [
  2469. {
  2470. "__id__": 104
  2471. },
  2472. {
  2473. "__id__": 110
  2474. },
  2475. {
  2476. "__id__": 116
  2477. }
  2478. ],
  2479. "_active": true,
  2480. "_components": [
  2481. {
  2482. "__id__": 122
  2483. }
  2484. ],
  2485. "_prefab": {
  2486. "__id__": 124
  2487. },
  2488. "_lpos": {
  2489. "__type__": "cc.Vec3",
  2490. "x": 0,
  2491. "y": 6,
  2492. "z": 0
  2493. },
  2494. "_lrot": {
  2495. "__type__": "cc.Quat",
  2496. "x": 0,
  2497. "y": 0,
  2498. "z": 0,
  2499. "w": 1
  2500. },
  2501. "_lscale": {
  2502. "__type__": "cc.Vec3",
  2503. "x": 1,
  2504. "y": 1,
  2505. "z": 1
  2506. },
  2507. "_mobility": 0,
  2508. "_layer": 33554432,
  2509. "_euler": {
  2510. "__type__": "cc.Vec3",
  2511. "x": 0,
  2512. "y": 0,
  2513. "z": 0
  2514. },
  2515. "_id": ""
  2516. },
  2517. {
  2518. "__type__": "cc.Node",
  2519. "_name": "lab_left",
  2520. "_objFlags": 0,
  2521. "__editorExtras__": {},
  2522. "_parent": {
  2523. "__id__": 103
  2524. },
  2525. "_children": [],
  2526. "_active": true,
  2527. "_components": [
  2528. {
  2529. "__id__": 105
  2530. },
  2531. {
  2532. "__id__": 107
  2533. }
  2534. ],
  2535. "_prefab": {
  2536. "__id__": 109
  2537. },
  2538. "_lpos": {
  2539. "__type__": "cc.Vec3",
  2540. "x": -55,
  2541. "y": 0,
  2542. "z": 0
  2543. },
  2544. "_lrot": {
  2545. "__type__": "cc.Quat",
  2546. "x": 0,
  2547. "y": 0,
  2548. "z": 0,
  2549. "w": 1
  2550. },
  2551. "_lscale": {
  2552. "__type__": "cc.Vec3",
  2553. "x": 1,
  2554. "y": 1,
  2555. "z": 1
  2556. },
  2557. "_mobility": 0,
  2558. "_layer": 33554432,
  2559. "_euler": {
  2560. "__type__": "cc.Vec3",
  2561. "x": 0,
  2562. "y": 0,
  2563. "z": 0
  2564. },
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.UITransform",
  2569. "_name": "",
  2570. "_objFlags": 0,
  2571. "__editorExtras__": {},
  2572. "node": {
  2573. "__id__": 104
  2574. },
  2575. "_enabled": true,
  2576. "__prefab": {
  2577. "__id__": 106
  2578. },
  2579. "_contentSize": {
  2580. "__type__": "cc.Size",
  2581. "width": 14.517576599121094,
  2582. "height": 37.8
  2583. },
  2584. "_anchorPoint": {
  2585. "__type__": "cc.Vec2",
  2586. "x": 0.5,
  2587. "y": 0.5
  2588. },
  2589. "_id": ""
  2590. },
  2591. {
  2592. "__type__": "cc.CompPrefabInfo",
  2593. "fileId": "21Bwt56KRPgJSRD3kb+w5b"
  2594. },
  2595. {
  2596. "__type__": "cc.Label",
  2597. "_name": "",
  2598. "_objFlags": 0,
  2599. "__editorExtras__": {},
  2600. "node": {
  2601. "__id__": 104
  2602. },
  2603. "_enabled": true,
  2604. "__prefab": {
  2605. "__id__": 108
  2606. },
  2607. "_customMaterial": null,
  2608. "_srcBlendFactor": 2,
  2609. "_dstBlendFactor": 4,
  2610. "_color": {
  2611. "__type__": "cc.Color",
  2612. "r": 249,
  2613. "g": 242,
  2614. "b": 225,
  2615. "a": 255
  2616. },
  2617. "_string": "-",
  2618. "_horizontalAlign": 1,
  2619. "_verticalAlign": 1,
  2620. "_actualFontSize": 34.285714285714285,
  2621. "_fontSize": 24,
  2622. "_fontFamily": "YouSheBiaoTiHei-Bold",
  2623. "_lineHeight": 30,
  2624. "_overflow": 0,
  2625. "_enableWrapText": true,
  2626. "_font": null,
  2627. "_isSystemFontUsed": true,
  2628. "_spacingX": 0,
  2629. "_isItalic": false,
  2630. "_isBold": true,
  2631. "_isUnderline": false,
  2632. "_underlineHeight": 2,
  2633. "_cacheMode": 0,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.CompPrefabInfo",
  2638. "fileId": "44GrxTQF1BCoMjMJGTB4H+"
  2639. },
  2640. {
  2641. "__type__": "cc.PrefabInfo",
  2642. "root": {
  2643. "__id__": 1
  2644. },
  2645. "asset": {
  2646. "__id__": 0
  2647. },
  2648. "fileId": "79tp1nYoRN+LBgNSTKz9sq",
  2649. "instance": null,
  2650. "targetOverrides": null,
  2651. "nestedPrefabInstanceRoots": null
  2652. },
  2653. {
  2654. "__type__": "cc.Node",
  2655. "_name": "lab_countdown_time",
  2656. "_objFlags": 0,
  2657. "__editorExtras__": {},
  2658. "_parent": {
  2659. "__id__": 103
  2660. },
  2661. "_children": [],
  2662. "_active": true,
  2663. "_components": [
  2664. {
  2665. "__id__": 111
  2666. },
  2667. {
  2668. "__id__": 113
  2669. }
  2670. ],
  2671. "_prefab": {
  2672. "__id__": 115
  2673. },
  2674. "_lpos": {
  2675. "__type__": "cc.Vec3",
  2676. "x": 0,
  2677. "y": 0,
  2678. "z": 0
  2679. },
  2680. "_lrot": {
  2681. "__type__": "cc.Quat",
  2682. "x": 0,
  2683. "y": 0,
  2684. "z": 0,
  2685. "w": 1
  2686. },
  2687. "_lscale": {
  2688. "__type__": "cc.Vec3",
  2689. "x": 1,
  2690. "y": 1,
  2691. "z": 1
  2692. },
  2693. "_mobility": 0,
  2694. "_layer": 33554432,
  2695. "_euler": {
  2696. "__type__": "cc.Vec3",
  2697. "x": 0,
  2698. "y": 0,
  2699. "z": 0
  2700. },
  2701. "_id": ""
  2702. },
  2703. {
  2704. "__type__": "cc.UITransform",
  2705. "_name": "",
  2706. "_objFlags": 0,
  2707. "__editorExtras__": {},
  2708. "node": {
  2709. "__id__": 110
  2710. },
  2711. "_enabled": true,
  2712. "__prefab": {
  2713. "__id__": 112
  2714. },
  2715. "_contentSize": {
  2716. "__type__": "cc.Size",
  2717. "width": 51.231442260742185,
  2718. "height": 37.8
  2719. },
  2720. "_anchorPoint": {
  2721. "__type__": "cc.Vec2",
  2722. "x": 0.5,
  2723. "y": 0.5
  2724. },
  2725. "_id": ""
  2726. },
  2727. {
  2728. "__type__": "cc.CompPrefabInfo",
  2729. "fileId": "24Ihd3igxOtaKf778Zbfy+"
  2730. },
  2731. {
  2732. "__type__": "cc.Label",
  2733. "_name": "",
  2734. "_objFlags": 0,
  2735. "__editorExtras__": {},
  2736. "node": {
  2737. "__id__": 110
  2738. },
  2739. "_enabled": true,
  2740. "__prefab": {
  2741. "__id__": 114
  2742. },
  2743. "_customMaterial": null,
  2744. "_srcBlendFactor": 2,
  2745. "_dstBlendFactor": 4,
  2746. "_color": {
  2747. "__type__": "cc.Color",
  2748. "r": 249,
  2749. "g": 242,
  2750. "b": 225,
  2751. "a": 255
  2752. },
  2753. "_string": "180s",
  2754. "_horizontalAlign": 1,
  2755. "_verticalAlign": 1,
  2756. "_actualFontSize": 34.285714285714285,
  2757. "_fontSize": 24,
  2758. "_fontFamily": "YouSheBiaoTiHei-Bold",
  2759. "_lineHeight": 30,
  2760. "_overflow": 0,
  2761. "_enableWrapText": true,
  2762. "_font": null,
  2763. "_isSystemFontUsed": true,
  2764. "_spacingX": 0,
  2765. "_isItalic": false,
  2766. "_isBold": true,
  2767. "_isUnderline": false,
  2768. "_underlineHeight": 2,
  2769. "_cacheMode": 0,
  2770. "_id": ""
  2771. },
  2772. {
  2773. "__type__": "cc.CompPrefabInfo",
  2774. "fileId": "deFOFxE9RI3pRMiHLwsp1g"
  2775. },
  2776. {
  2777. "__type__": "cc.PrefabInfo",
  2778. "root": {
  2779. "__id__": 1
  2780. },
  2781. "asset": {
  2782. "__id__": 0
  2783. },
  2784. "fileId": "3c/JhRONNJd7ors+ZQ2dQj",
  2785. "instance": null,
  2786. "targetOverrides": null,
  2787. "nestedPrefabInstanceRoots": null
  2788. },
  2789. {
  2790. "__type__": "cc.Node",
  2791. "_name": "lab_right",
  2792. "_objFlags": 0,
  2793. "__editorExtras__": {},
  2794. "_parent": {
  2795. "__id__": 103
  2796. },
  2797. "_children": [],
  2798. "_active": true,
  2799. "_components": [
  2800. {
  2801. "__id__": 117
  2802. },
  2803. {
  2804. "__id__": 119
  2805. }
  2806. ],
  2807. "_prefab": {
  2808. "__id__": 121
  2809. },
  2810. "_lpos": {
  2811. "__type__": "cc.Vec3",
  2812. "x": 55,
  2813. "y": 0,
  2814. "z": 0
  2815. },
  2816. "_lrot": {
  2817. "__type__": "cc.Quat",
  2818. "x": 0,
  2819. "y": 0,
  2820. "z": 0,
  2821. "w": 1
  2822. },
  2823. "_lscale": {
  2824. "__type__": "cc.Vec3",
  2825. "x": 1,
  2826. "y": 1,
  2827. "z": 1
  2828. },
  2829. "_mobility": 0,
  2830. "_layer": 33554432,
  2831. "_euler": {
  2832. "__type__": "cc.Vec3",
  2833. "x": 0,
  2834. "y": 0,
  2835. "z": 0
  2836. },
  2837. "_id": ""
  2838. },
  2839. {
  2840. "__type__": "cc.UITransform",
  2841. "_name": "",
  2842. "_objFlags": 0,
  2843. "__editorExtras__": {},
  2844. "node": {
  2845. "__id__": 116
  2846. },
  2847. "_enabled": true,
  2848. "__prefab": {
  2849. "__id__": 118
  2850. },
  2851. "_contentSize": {
  2852. "__type__": "cc.Size",
  2853. "width": 14.517576599121094,
  2854. "height": 37.8
  2855. },
  2856. "_anchorPoint": {
  2857. "__type__": "cc.Vec2",
  2858. "x": 0.5,
  2859. "y": 0.5
  2860. },
  2861. "_id": ""
  2862. },
  2863. {
  2864. "__type__": "cc.CompPrefabInfo",
  2865. "fileId": "ffL9+hAxNCsodPv7LDMT8t"
  2866. },
  2867. {
  2868. "__type__": "cc.Label",
  2869. "_name": "",
  2870. "_objFlags": 0,
  2871. "__editorExtras__": {},
  2872. "node": {
  2873. "__id__": 116
  2874. },
  2875. "_enabled": true,
  2876. "__prefab": {
  2877. "__id__": 120
  2878. },
  2879. "_customMaterial": null,
  2880. "_srcBlendFactor": 2,
  2881. "_dstBlendFactor": 4,
  2882. "_color": {
  2883. "__type__": "cc.Color",
  2884. "r": 249,
  2885. "g": 242,
  2886. "b": 225,
  2887. "a": 255
  2888. },
  2889. "_string": "-",
  2890. "_horizontalAlign": 1,
  2891. "_verticalAlign": 1,
  2892. "_actualFontSize": 34.285714285714285,
  2893. "_fontSize": 24,
  2894. "_fontFamily": "YouSheBiaoTiHei-Bold",
  2895. "_lineHeight": 30,
  2896. "_overflow": 0,
  2897. "_enableWrapText": true,
  2898. "_font": null,
  2899. "_isSystemFontUsed": true,
  2900. "_spacingX": 0,
  2901. "_isItalic": false,
  2902. "_isBold": true,
  2903. "_isUnderline": false,
  2904. "_underlineHeight": 2,
  2905. "_cacheMode": 0,
  2906. "_id": ""
  2907. },
  2908. {
  2909. "__type__": "cc.CompPrefabInfo",
  2910. "fileId": "63d2t7J2ZHTKuI8VPnpTPE"
  2911. },
  2912. {
  2913. "__type__": "cc.PrefabInfo",
  2914. "root": {
  2915. "__id__": 1
  2916. },
  2917. "asset": {
  2918. "__id__": 0
  2919. },
  2920. "fileId": "76F2r6jV1K8pRLM8CDoC6Y",
  2921. "instance": null,
  2922. "targetOverrides": null,
  2923. "nestedPrefabInstanceRoots": null
  2924. },
  2925. {
  2926. "__type__": "cc.UITransform",
  2927. "_name": "",
  2928. "_objFlags": 0,
  2929. "__editorExtras__": {},
  2930. "node": {
  2931. "__id__": 103
  2932. },
  2933. "_enabled": true,
  2934. "__prefab": {
  2935. "__id__": 123
  2936. },
  2937. "_contentSize": {
  2938. "__type__": "cc.Size",
  2939. "width": 140,
  2940. "height": 50
  2941. },
  2942. "_anchorPoint": {
  2943. "__type__": "cc.Vec2",
  2944. "x": 0.5,
  2945. "y": 0.5
  2946. },
  2947. "_id": ""
  2948. },
  2949. {
  2950. "__type__": "cc.CompPrefabInfo",
  2951. "fileId": "4asM36rLhJ1LH3tawzUWwh"
  2952. },
  2953. {
  2954. "__type__": "cc.PrefabInfo",
  2955. "root": {
  2956. "__id__": 1
  2957. },
  2958. "asset": {
  2959. "__id__": 0
  2960. },
  2961. "fileId": "16yhPw8ORM0JmfNcqVG/Ys",
  2962. "instance": null,
  2963. "targetOverrides": null,
  2964. "nestedPrefabInstanceRoots": null
  2965. },
  2966. {
  2967. "__type__": "cc.Node",
  2968. "_name": "btn_pause",
  2969. "_objFlags": 0,
  2970. "__editorExtras__": {},
  2971. "_parent": {
  2972. "__id__": 86
  2973. },
  2974. "_children": [],
  2975. "_active": false,
  2976. "_components": [
  2977. {
  2978. "__id__": 126
  2979. },
  2980. {
  2981. "__id__": 128
  2982. },
  2983. {
  2984. "__id__": 130
  2985. }
  2986. ],
  2987. "_prefab": {
  2988. "__id__": 132
  2989. },
  2990. "_lpos": {
  2991. "__type__": "cc.Vec3",
  2992. "x": 117.856,
  2993. "y": -10,
  2994. "z": 0
  2995. },
  2996. "_lrot": {
  2997. "__type__": "cc.Quat",
  2998. "x": 0,
  2999. "y": 0,
  3000. "z": 0,
  3001. "w": 1
  3002. },
  3003. "_lscale": {
  3004. "__type__": "cc.Vec3",
  3005. "x": 0.3,
  3006. "y": 0.3,
  3007. "z": 1
  3008. },
  3009. "_mobility": 0,
  3010. "_layer": 33554432,
  3011. "_euler": {
  3012. "__type__": "cc.Vec3",
  3013. "x": 0,
  3014. "y": 0,
  3015. "z": 0
  3016. },
  3017. "_id": ""
  3018. },
  3019. {
  3020. "__type__": "cc.UITransform",
  3021. "_name": "",
  3022. "_objFlags": 0,
  3023. "__editorExtras__": {},
  3024. "node": {
  3025. "__id__": 125
  3026. },
  3027. "_enabled": true,
  3028. "__prefab": {
  3029. "__id__": 127
  3030. },
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 259,
  3034. "height": 257
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0.5,
  3039. "y": 0.5
  3040. },
  3041. "_id": ""
  3042. },
  3043. {
  3044. "__type__": "cc.CompPrefabInfo",
  3045. "fileId": "a4QFFkknFLKrkS+Fe5BRhb"
  3046. },
  3047. {
  3048. "__type__": "cc.Sprite",
  3049. "_name": "",
  3050. "_objFlags": 0,
  3051. "__editorExtras__": {},
  3052. "node": {
  3053. "__id__": 125
  3054. },
  3055. "_enabled": true,
  3056. "__prefab": {
  3057. "__id__": 129
  3058. },
  3059. "_customMaterial": null,
  3060. "_srcBlendFactor": 2,
  3061. "_dstBlendFactor": 4,
  3062. "_color": {
  3063. "__type__": "cc.Color",
  3064. "r": 255,
  3065. "g": 255,
  3066. "b": 255,
  3067. "a": 255
  3068. },
  3069. "_spriteFrame": {
  3070. "__uuid__": "8c547ad0-497e-4b65-b588-3efb2dfdeed8@f9941",
  3071. "__expectedType__": "cc.SpriteFrame"
  3072. },
  3073. "_type": 1,
  3074. "_fillType": 0,
  3075. "_sizeMode": 2,
  3076. "_fillCenter": {
  3077. "__type__": "cc.Vec2",
  3078. "x": 0,
  3079. "y": 0
  3080. },
  3081. "_fillStart": 0,
  3082. "_fillRange": 0,
  3083. "_isTrimmedMode": true,
  3084. "_useGrayscale": false,
  3085. "_atlas": null,
  3086. "_id": ""
  3087. },
  3088. {
  3089. "__type__": "cc.CompPrefabInfo",
  3090. "fileId": "f2RMeMmqNBVrE8HEA3DeBT"
  3091. },
  3092. {
  3093. "__type__": "cc.Button",
  3094. "_name": "",
  3095. "_objFlags": 0,
  3096. "__editorExtras__": {},
  3097. "node": {
  3098. "__id__": 125
  3099. },
  3100. "_enabled": true,
  3101. "__prefab": {
  3102. "__id__": 131
  3103. },
  3104. "clickEvents": [],
  3105. "_interactable": true,
  3106. "_transition": 3,
  3107. "_normalColor": {
  3108. "__type__": "cc.Color",
  3109. "r": 214,
  3110. "g": 214,
  3111. "b": 214,
  3112. "a": 255
  3113. },
  3114. "_hoverColor": {
  3115. "__type__": "cc.Color",
  3116. "r": 211,
  3117. "g": 211,
  3118. "b": 211,
  3119. "a": 255
  3120. },
  3121. "_pressedColor": {
  3122. "__type__": "cc.Color",
  3123. "r": 255,
  3124. "g": 255,
  3125. "b": 255,
  3126. "a": 255
  3127. },
  3128. "_disabledColor": {
  3129. "__type__": "cc.Color",
  3130. "r": 124,
  3131. "g": 124,
  3132. "b": 124,
  3133. "a": 255
  3134. },
  3135. "_normalSprite": {
  3136. "__uuid__": "8c547ad0-497e-4b65-b588-3efb2dfdeed8@f9941",
  3137. "__expectedType__": "cc.SpriteFrame"
  3138. },
  3139. "_hoverSprite": null,
  3140. "_pressedSprite": null,
  3141. "_disabledSprite": null,
  3142. "_duration": 0.1,
  3143. "_zoomScale": 1.1,
  3144. "_target": {
  3145. "__id__": 125
  3146. },
  3147. "_id": ""
  3148. },
  3149. {
  3150. "__type__": "cc.CompPrefabInfo",
  3151. "fileId": "26eqJR06lBqasRXKB+uN2c"
  3152. },
  3153. {
  3154. "__type__": "cc.PrefabInfo",
  3155. "root": {
  3156. "__id__": 1
  3157. },
  3158. "asset": {
  3159. "__id__": 0
  3160. },
  3161. "fileId": "5c6UX0sdVFmKsi8VKyB9xC",
  3162. "instance": null,
  3163. "targetOverrides": null,
  3164. "nestedPrefabInstanceRoots": null
  3165. },
  3166. {
  3167. "__type__": "cc.Node",
  3168. "_name": "lab_countdown_text",
  3169. "_objFlags": 0,
  3170. "__editorExtras__": {},
  3171. "_parent": {
  3172. "__id__": 86
  3173. },
  3174. "_children": [],
  3175. "_active": true,
  3176. "_components": [
  3177. {
  3178. "__id__": 134
  3179. },
  3180. {
  3181. "__id__": 136
  3182. }
  3183. ],
  3184. "_prefab": {
  3185. "__id__": 138
  3186. },
  3187. "_lpos": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 0,
  3190. "y": -28,
  3191. "z": 0
  3192. },
  3193. "_lrot": {
  3194. "__type__": "cc.Quat",
  3195. "x": 0,
  3196. "y": 0,
  3197. "z": 0,
  3198. "w": 1
  3199. },
  3200. "_lscale": {
  3201. "__type__": "cc.Vec3",
  3202. "x": 1,
  3203. "y": 1,
  3204. "z": 1
  3205. },
  3206. "_mobility": 0,
  3207. "_layer": 33554432,
  3208. "_euler": {
  3209. "__type__": "cc.Vec3",
  3210. "x": 0,
  3211. "y": 0,
  3212. "z": 0
  3213. },
  3214. "_id": ""
  3215. },
  3216. {
  3217. "__type__": "cc.UITransform",
  3218. "_name": "",
  3219. "_objFlags": 0,
  3220. "__editorExtras__": {},
  3221. "node": {
  3222. "__id__": 133
  3223. },
  3224. "_enabled": true,
  3225. "__prefab": {
  3226. "__id__": 135
  3227. },
  3228. "_contentSize": {
  3229. "__type__": "cc.Size",
  3230. "width": 68.98498077392578,
  3231. "height": 37.800000000000004
  3232. },
  3233. "_anchorPoint": {
  3234. "__type__": "cc.Vec2",
  3235. "x": 0.5,
  3236. "y": 0.5
  3237. },
  3238. "_id": ""
  3239. },
  3240. {
  3241. "__type__": "cc.CompPrefabInfo",
  3242. "fileId": "524aTcB4BAnZTKF3on/EAg"
  3243. },
  3244. {
  3245. "__type__": "cc.Label",
  3246. "_name": "",
  3247. "_objFlags": 0,
  3248. "__editorExtras__": {},
  3249. "node": {
  3250. "__id__": 133
  3251. },
  3252. "_enabled": true,
  3253. "__prefab": {
  3254. "__id__": 137
  3255. },
  3256. "_customMaterial": null,
  3257. "_srcBlendFactor": 2,
  3258. "_dstBlendFactor": 4,
  3259. "_color": {
  3260. "__type__": "cc.Color",
  3261. "r": 249,
  3262. "g": 242,
  3263. "b": 225,
  3264. "a": 255
  3265. },
  3266. "_string": "倒计时",
  3267. "_horizontalAlign": 1,
  3268. "_verticalAlign": 1,
  3269. "_actualFontSize": 32.85714285714286,
  3270. "_fontSize": 23,
  3271. "_fontFamily": "YouSheBiaoTiHei-Bold",
  3272. "_lineHeight": 30,
  3273. "_overflow": 0,
  3274. "_enableWrapText": true,
  3275. "_font": null,
  3276. "_isSystemFontUsed": true,
  3277. "_spacingX": 0,
  3278. "_isItalic": false,
  3279. "_isBold": true,
  3280. "_isUnderline": false,
  3281. "_underlineHeight": 2,
  3282. "_cacheMode": 0,
  3283. "_id": ""
  3284. },
  3285. {
  3286. "__type__": "cc.CompPrefabInfo",
  3287. "fileId": "3ctaoxo1FPNYE06Acfu8vX"
  3288. },
  3289. {
  3290. "__type__": "cc.PrefabInfo",
  3291. "root": {
  3292. "__id__": 1
  3293. },
  3294. "asset": {
  3295. "__id__": 0
  3296. },
  3297. "fileId": "1cLZBDD6BIGIsmncOho2Xc",
  3298. "instance": null,
  3299. "targetOverrides": null,
  3300. "nestedPrefabInstanceRoots": null
  3301. },
  3302. {
  3303. "__type__": "cc.UITransform",
  3304. "_name": "",
  3305. "_objFlags": 0,
  3306. "__editorExtras__": {},
  3307. "node": {
  3308. "__id__": 86
  3309. },
  3310. "_enabled": true,
  3311. "__prefab": {
  3312. "__id__": 140
  3313. },
  3314. "_contentSize": {
  3315. "__type__": "cc.Size",
  3316. "width": 375,
  3317. "height": 103
  3318. },
  3319. "_anchorPoint": {
  3320. "__type__": "cc.Vec2",
  3321. "x": 0.5,
  3322. "y": 0.5
  3323. },
  3324. "_id": ""
  3325. },
  3326. {
  3327. "__type__": "cc.CompPrefabInfo",
  3328. "fileId": "54I6QfkBRGMI85E/WUUmld"
  3329. },
  3330. {
  3331. "__type__": "cc.Widget",
  3332. "_name": "",
  3333. "_objFlags": 0,
  3334. "__editorExtras__": {},
  3335. "node": {
  3336. "__id__": 86
  3337. },
  3338. "_enabled": true,
  3339. "__prefab": {
  3340. "__id__": 142
  3341. },
  3342. "_alignFlags": 20,
  3343. "_target": null,
  3344. "_left": 137.5,
  3345. "_right": 137.5,
  3346. "_top": 648.5,
  3347. "_bottom": 0,
  3348. "_horizontalCenter": 0,
  3349. "_verticalCenter": 0,
  3350. "_isAbsLeft": true,
  3351. "_isAbsRight": true,
  3352. "_isAbsTop": true,
  3353. "_isAbsBottom": true,
  3354. "_isAbsHorizontalCenter": true,
  3355. "_isAbsVerticalCenter": true,
  3356. "_originalWidth": 100,
  3357. "_originalHeight": 110,
  3358. "_alignMode": 2,
  3359. "_lockFlags": 0,
  3360. "_id": ""
  3361. },
  3362. {
  3363. "__type__": "cc.CompPrefabInfo",
  3364. "fileId": "b7kyzSqilF+7u8w2MP1iRZ"
  3365. },
  3366. {
  3367. "__type__": "cc.Sprite",
  3368. "_name": "",
  3369. "_objFlags": 0,
  3370. "__editorExtras__": {},
  3371. "node": {
  3372. "__id__": 86
  3373. },
  3374. "_enabled": true,
  3375. "__prefab": {
  3376. "__id__": 144
  3377. },
  3378. "_customMaterial": null,
  3379. "_srcBlendFactor": 2,
  3380. "_dstBlendFactor": 4,
  3381. "_color": {
  3382. "__type__": "cc.Color",
  3383. "r": 255,
  3384. "g": 255,
  3385. "b": 255,
  3386. "a": 255
  3387. },
  3388. "_spriteFrame": null,
  3389. "_type": 0,
  3390. "_fillType": 0,
  3391. "_sizeMode": 0,
  3392. "_fillCenter": {
  3393. "__type__": "cc.Vec2",
  3394. "x": 0,
  3395. "y": 0
  3396. },
  3397. "_fillStart": 0,
  3398. "_fillRange": 0,
  3399. "_isTrimmedMode": true,
  3400. "_useGrayscale": false,
  3401. "_atlas": null,
  3402. "_id": ""
  3403. },
  3404. {
  3405. "__type__": "cc.CompPrefabInfo",
  3406. "fileId": "92wd1Uz+ZPNpV0qf1twXMK"
  3407. },
  3408. {
  3409. "__type__": "cc.PrefabInfo",
  3410. "root": {
  3411. "__id__": 1
  3412. },
  3413. "asset": {
  3414. "__id__": 0
  3415. },
  3416. "fileId": "53mVW3I9VODrDzX1v9FUHe",
  3417. "instance": null,
  3418. "targetOverrides": null,
  3419. "nestedPrefabInstanceRoots": null
  3420. },
  3421. {
  3422. "__type__": "cc.Node",
  3423. "_name": "img_touch_err",
  3424. "_objFlags": 0,
  3425. "__editorExtras__": {},
  3426. "_parent": {
  3427. "__id__": 1
  3428. },
  3429. "_children": [],
  3430. "_active": false,
  3431. "_components": [
  3432. {
  3433. "__id__": 147
  3434. },
  3435. {
  3436. "__id__": 149
  3437. }
  3438. ],
  3439. "_prefab": {
  3440. "__id__": 151
  3441. },
  3442. "_lpos": {
  3443. "__type__": "cc.Vec3",
  3444. "x": 342.179,
  3445. "y": 0,
  3446. "z": 0
  3447. },
  3448. "_lrot": {
  3449. "__type__": "cc.Quat",
  3450. "x": 0,
  3451. "y": 0,
  3452. "z": 0,
  3453. "w": 1
  3454. },
  3455. "_lscale": {
  3456. "__type__": "cc.Vec3",
  3457. "x": 1,
  3458. "y": 1,
  3459. "z": 1
  3460. },
  3461. "_mobility": 0,
  3462. "_layer": 33554432,
  3463. "_euler": {
  3464. "__type__": "cc.Vec3",
  3465. "x": 0,
  3466. "y": 0,
  3467. "z": 0
  3468. },
  3469. "_id": ""
  3470. },
  3471. {
  3472. "__type__": "cc.UITransform",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "__editorExtras__": {},
  3476. "node": {
  3477. "__id__": 146
  3478. },
  3479. "_enabled": true,
  3480. "__prefab": {
  3481. "__id__": 148
  3482. },
  3483. "_contentSize": {
  3484. "__type__": "cc.Size",
  3485. "width": 60,
  3486. "height": 60
  3487. },
  3488. "_anchorPoint": {
  3489. "__type__": "cc.Vec2",
  3490. "x": 0.5,
  3491. "y": 0.5
  3492. },
  3493. "_id": ""
  3494. },
  3495. {
  3496. "__type__": "cc.CompPrefabInfo",
  3497. "fileId": "26++Rr6zdAVphGAjxmrUiT"
  3498. },
  3499. {
  3500. "__type__": "cc.Sprite",
  3501. "_name": "",
  3502. "_objFlags": 0,
  3503. "__editorExtras__": {},
  3504. "node": {
  3505. "__id__": 146
  3506. },
  3507. "_enabled": true,
  3508. "__prefab": {
  3509. "__id__": 150
  3510. },
  3511. "_customMaterial": null,
  3512. "_srcBlendFactor": 2,
  3513. "_dstBlendFactor": 4,
  3514. "_color": {
  3515. "__type__": "cc.Color",
  3516. "r": 255,
  3517. "g": 255,
  3518. "b": 255,
  3519. "a": 255
  3520. },
  3521. "_spriteFrame": {
  3522. "__uuid__": "2b9d1c82-db39-44e4-a9d4-a31679b4bff3@f9941",
  3523. "__expectedType__": "cc.SpriteFrame"
  3524. },
  3525. "_type": 0,
  3526. "_fillType": 0,
  3527. "_sizeMode": 0,
  3528. "_fillCenter": {
  3529. "__type__": "cc.Vec2",
  3530. "x": 0,
  3531. "y": 0
  3532. },
  3533. "_fillStart": 0,
  3534. "_fillRange": 0,
  3535. "_isTrimmedMode": true,
  3536. "_useGrayscale": false,
  3537. "_atlas": null,
  3538. "_id": ""
  3539. },
  3540. {
  3541. "__type__": "cc.CompPrefabInfo",
  3542. "fileId": "0ew70n8ApFgZLmfI3BB06u"
  3543. },
  3544. {
  3545. "__type__": "cc.PrefabInfo",
  3546. "root": {
  3547. "__id__": 1
  3548. },
  3549. "asset": {
  3550. "__id__": 0
  3551. },
  3552. "fileId": "fcSjISx5tDSJtmGnBq5iMk",
  3553. "instance": null,
  3554. "targetOverrides": null,
  3555. "nestedPrefabInstanceRoots": null
  3556. },
  3557. {
  3558. "__type__": "cc.Node",
  3559. "_name": "action_node",
  3560. "_objFlags": 0,
  3561. "__editorExtras__": {},
  3562. "_parent": {
  3563. "__id__": 1
  3564. },
  3565. "_children": [],
  3566. "_active": true,
  3567. "_components": [
  3568. {
  3569. "__id__": 153
  3570. },
  3571. {
  3572. "__id__": 155
  3573. }
  3574. ],
  3575. "_prefab": {
  3576. "__id__": 157
  3577. },
  3578. "_lpos": {
  3579. "__type__": "cc.Vec3",
  3580. "x": -187.5,
  3581. "y": -406,
  3582. "z": 0
  3583. },
  3584. "_lrot": {
  3585. "__type__": "cc.Quat",
  3586. "x": 0,
  3587. "y": 0,
  3588. "z": 0,
  3589. "w": 1
  3590. },
  3591. "_lscale": {
  3592. "__type__": "cc.Vec3",
  3593. "x": 1,
  3594. "y": 1,
  3595. "z": 1
  3596. },
  3597. "_mobility": 0,
  3598. "_layer": 33554432,
  3599. "_euler": {
  3600. "__type__": "cc.Vec3",
  3601. "x": 0,
  3602. "y": 0,
  3603. "z": 0
  3604. },
  3605. "_id": ""
  3606. },
  3607. {
  3608. "__type__": "cc.UITransform",
  3609. "_name": "",
  3610. "_objFlags": 0,
  3611. "__editorExtras__": {},
  3612. "node": {
  3613. "__id__": 152
  3614. },
  3615. "_enabled": true,
  3616. "__prefab": {
  3617. "__id__": 154
  3618. },
  3619. "_contentSize": {
  3620. "__type__": "cc.Size",
  3621. "width": 375,
  3622. "height": 812
  3623. },
  3624. "_anchorPoint": {
  3625. "__type__": "cc.Vec2",
  3626. "x": 0,
  3627. "y": 0
  3628. },
  3629. "_id": ""
  3630. },
  3631. {
  3632. "__type__": "cc.CompPrefabInfo",
  3633. "fileId": "99RekEad5L+oCV34/GIT/U"
  3634. },
  3635. {
  3636. "__type__": "cc.Widget",
  3637. "_name": "",
  3638. "_objFlags": 0,
  3639. "__editorExtras__": {},
  3640. "node": {
  3641. "__id__": 152
  3642. },
  3643. "_enabled": true,
  3644. "__prefab": {
  3645. "__id__": 156
  3646. },
  3647. "_alignFlags": 45,
  3648. "_target": null,
  3649. "_left": 0,
  3650. "_right": 0,
  3651. "_top": 0,
  3652. "_bottom": 0,
  3653. "_horizontalCenter": 0,
  3654. "_verticalCenter": 0,
  3655. "_isAbsLeft": true,
  3656. "_isAbsRight": true,
  3657. "_isAbsTop": true,
  3658. "_isAbsBottom": true,
  3659. "_isAbsHorizontalCenter": true,
  3660. "_isAbsVerticalCenter": true,
  3661. "_originalWidth": 100,
  3662. "_originalHeight": 100,
  3663. "_alignMode": 2,
  3664. "_lockFlags": 0,
  3665. "_id": ""
  3666. },
  3667. {
  3668. "__type__": "cc.CompPrefabInfo",
  3669. "fileId": "715NnoWLVLi7d2xpjvKQ3A"
  3670. },
  3671. {
  3672. "__type__": "cc.PrefabInfo",
  3673. "root": {
  3674. "__id__": 1
  3675. },
  3676. "asset": {
  3677. "__id__": 0
  3678. },
  3679. "fileId": "e70JiEg4VJP4zG9DbW665k",
  3680. "instance": null,
  3681. "targetOverrides": null,
  3682. "nestedPrefabInstanceRoots": null
  3683. },
  3684. {
  3685. "__type__": "cc.Node",
  3686. "_name": "right_ani",
  3687. "_objFlags": 0,
  3688. "__editorExtras__": {},
  3689. "_parent": {
  3690. "__id__": 1
  3691. },
  3692. "_children": [],
  3693. "_active": false,
  3694. "_components": [
  3695. {
  3696. "__id__": 159
  3697. },
  3698. {
  3699. "__id__": 161
  3700. },
  3701. {
  3702. "__id__": 163
  3703. }
  3704. ],
  3705. "_prefab": {
  3706. "__id__": 165
  3707. },
  3708. "_lpos": {
  3709. "__type__": "cc.Vec3",
  3710. "x": -358.443,
  3711. "y": 0,
  3712. "z": 0
  3713. },
  3714. "_lrot": {
  3715. "__type__": "cc.Quat",
  3716. "x": 0,
  3717. "y": 0,
  3718. "z": 0,
  3719. "w": 1
  3720. },
  3721. "_lscale": {
  3722. "__type__": "cc.Vec3",
  3723. "x": 0.5,
  3724. "y": 0.5,
  3725. "z": 1
  3726. },
  3727. "_mobility": 0,
  3728. "_layer": 33554432,
  3729. "_euler": {
  3730. "__type__": "cc.Vec3",
  3731. "x": 0,
  3732. "y": 0,
  3733. "z": 0
  3734. },
  3735. "_id": ""
  3736. },
  3737. {
  3738. "__type__": "cc.UITransform",
  3739. "_name": "",
  3740. "_objFlags": 0,
  3741. "__editorExtras__": {},
  3742. "node": {
  3743. "__id__": 158
  3744. },
  3745. "_enabled": true,
  3746. "__prefab": {
  3747. "__id__": 160
  3748. },
  3749. "_contentSize": {
  3750. "__type__": "cc.Size",
  3751. "width": 400,
  3752. "height": 712
  3753. },
  3754. "_anchorPoint": {
  3755. "__type__": "cc.Vec2",
  3756. "x": 0.5,
  3757. "y": 1
  3758. },
  3759. "_id": ""
  3760. },
  3761. {
  3762. "__type__": "cc.CompPrefabInfo",
  3763. "fileId": "b34mul0B9GwZGMgxevSMwp"
  3764. },
  3765. {
  3766. "__type__": "cc.Sprite",
  3767. "_name": "",
  3768. "_objFlags": 0,
  3769. "__editorExtras__": {},
  3770. "node": {
  3771. "__id__": 158
  3772. },
  3773. "_enabled": true,
  3774. "__prefab": {
  3775. "__id__": 162
  3776. },
  3777. "_customMaterial": null,
  3778. "_srcBlendFactor": 2,
  3779. "_dstBlendFactor": 4,
  3780. "_color": {
  3781. "__type__": "cc.Color",
  3782. "r": 255,
  3783. "g": 255,
  3784. "b": 255,
  3785. "a": 255
  3786. },
  3787. "_spriteFrame": {
  3788. "__uuid__": "e21436de-c2d0-4349-859f-d848ccd5aaa6@f9941",
  3789. "__expectedType__": "cc.SpriteFrame"
  3790. },
  3791. "_type": 0,
  3792. "_fillType": 0,
  3793. "_sizeMode": 2,
  3794. "_fillCenter": {
  3795. "__type__": "cc.Vec2",
  3796. "x": 0,
  3797. "y": 0
  3798. },
  3799. "_fillStart": 0,
  3800. "_fillRange": 0,
  3801. "_isTrimmedMode": false,
  3802. "_useGrayscale": false,
  3803. "_atlas": null,
  3804. "_id": ""
  3805. },
  3806. {
  3807. "__type__": "cc.CompPrefabInfo",
  3808. "fileId": "7dWSZ0TH5Hs7S0MYkqgSNp"
  3809. },
  3810. {
  3811. "__type__": "cc.Animation",
  3812. "_name": "",
  3813. "_objFlags": 0,
  3814. "__editorExtras__": {},
  3815. "node": {
  3816. "__id__": 158
  3817. },
  3818. "_enabled": true,
  3819. "__prefab": {
  3820. "__id__": 164
  3821. },
  3822. "playOnLoad": true,
  3823. "_clips": [
  3824. {
  3825. "__uuid__": "d38a655e-55d8-46e2-a259-e9453a9f192c",
  3826. "__expectedType__": "cc.AnimationClip"
  3827. }
  3828. ],
  3829. "_defaultClip": {
  3830. "__uuid__": "d38a655e-55d8-46e2-a259-e9453a9f192c",
  3831. "__expectedType__": "cc.AnimationClip"
  3832. },
  3833. "_id": ""
  3834. },
  3835. {
  3836. "__type__": "cc.CompPrefabInfo",
  3837. "fileId": "f17whlEOxEjagPH4fLJcSM"
  3838. },
  3839. {
  3840. "__type__": "cc.PrefabInfo",
  3841. "root": {
  3842. "__id__": 1
  3843. },
  3844. "asset": {
  3845. "__id__": 0
  3846. },
  3847. "fileId": "e9j62PUi9JZrJPEpNXyfTi",
  3848. "instance": null,
  3849. "targetOverrides": null,
  3850. "nestedPrefabInstanceRoots": null
  3851. },
  3852. {
  3853. "__type__": "cc.UITransform",
  3854. "_name": "",
  3855. "_objFlags": 0,
  3856. "__editorExtras__": {},
  3857. "node": {
  3858. "__id__": 1
  3859. },
  3860. "_enabled": true,
  3861. "__prefab": {
  3862. "__id__": 167
  3863. },
  3864. "_contentSize": {
  3865. "__type__": "cc.Size",
  3866. "width": 375,
  3867. "height": 812
  3868. },
  3869. "_anchorPoint": {
  3870. "__type__": "cc.Vec2",
  3871. "x": 0.5,
  3872. "y": 0.5
  3873. },
  3874. "_id": ""
  3875. },
  3876. {
  3877. "__type__": "cc.CompPrefabInfo",
  3878. "fileId": "03aY7xukBEobMhtMInWXA2"
  3879. },
  3880. {
  3881. "__type__": "cc.Widget",
  3882. "_name": "",
  3883. "_objFlags": 0,
  3884. "__editorExtras__": {},
  3885. "node": {
  3886. "__id__": 1
  3887. },
  3888. "_enabled": true,
  3889. "__prefab": {
  3890. "__id__": 169
  3891. },
  3892. "_alignFlags": 45,
  3893. "_target": null,
  3894. "_left": 0,
  3895. "_right": 0,
  3896. "_top": 0,
  3897. "_bottom": 0,
  3898. "_horizontalCenter": 0,
  3899. "_verticalCenter": 0,
  3900. "_isAbsLeft": true,
  3901. "_isAbsRight": true,
  3902. "_isAbsTop": true,
  3903. "_isAbsBottom": true,
  3904. "_isAbsHorizontalCenter": true,
  3905. "_isAbsVerticalCenter": true,
  3906. "_originalWidth": 100,
  3907. "_originalHeight": 100,
  3908. "_alignMode": 2,
  3909. "_lockFlags": 0,
  3910. "_id": ""
  3911. },
  3912. {
  3913. "__type__": "cc.CompPrefabInfo",
  3914. "fileId": "03Dx1rJmZFDJzAAbH2TwyT"
  3915. },
  3916. {
  3917. "__type__": "cc.Sprite",
  3918. "_name": "",
  3919. "_objFlags": 0,
  3920. "__editorExtras__": {},
  3921. "node": {
  3922. "__id__": 1
  3923. },
  3924. "_enabled": true,
  3925. "__prefab": {
  3926. "__id__": 171
  3927. },
  3928. "_customMaterial": null,
  3929. "_srcBlendFactor": 2,
  3930. "_dstBlendFactor": 4,
  3931. "_color": {
  3932. "__type__": "cc.Color",
  3933. "r": 255,
  3934. "g": 255,
  3935. "b": 255,
  3936. "a": 255
  3937. },
  3938. "_spriteFrame": {
  3939. "__uuid__": "b6b9a00a-d576-4bd3-a170-2306f2592137@f9941",
  3940. "__expectedType__": "cc.SpriteFrame"
  3941. },
  3942. "_type": 1,
  3943. "_fillType": 0,
  3944. "_sizeMode": 0,
  3945. "_fillCenter": {
  3946. "__type__": "cc.Vec2",
  3947. "x": 0,
  3948. "y": 0
  3949. },
  3950. "_fillStart": 0,
  3951. "_fillRange": 0,
  3952. "_isTrimmedMode": true,
  3953. "_useGrayscale": false,
  3954. "_atlas": null,
  3955. "_id": ""
  3956. },
  3957. {
  3958. "__type__": "cc.CompPrefabInfo",
  3959. "fileId": "8086xATVxEJ4fD99cYlUzI"
  3960. },
  3961. {
  3962. "__type__": "cc.BlockInputEvents",
  3963. "_name": "",
  3964. "_objFlags": 0,
  3965. "__editorExtras__": {},
  3966. "node": {
  3967. "__id__": 1
  3968. },
  3969. "_enabled": true,
  3970. "__prefab": {
  3971. "__id__": 173
  3972. },
  3973. "_id": ""
  3974. },
  3975. {
  3976. "__type__": "cc.CompPrefabInfo",
  3977. "fileId": "d3ahKDAbRBd6rpWiKcSbsV"
  3978. },
  3979. {
  3980. "__type__": "1ae69PuukxDWZbE2uJqTfEI",
  3981. "_name": "",
  3982. "_objFlags": 0,
  3983. "__editorExtras__": {},
  3984. "node": {
  3985. "__id__": 1
  3986. },
  3987. "_enabled": true,
  3988. "__prefab": {
  3989. "__id__": 175
  3990. },
  3991. "btn_back": {
  3992. "__id__": 3
  3993. },
  3994. "btn_pause": null,
  3995. "btn_look_video": {
  3996. "__id__": 25
  3997. },
  3998. "btn_tip": null,
  3999. "btn_coin": {
  4000. "__id__": 11
  4001. },
  4002. "lab_title": {
  4003. "__id__": 40
  4004. },
  4005. "lab_coin": {
  4006. "__id__": 12
  4007. },
  4008. "img_touch_err": {
  4009. "__id__": 146
  4010. },
  4011. "action_node": {
  4012. "__id__": 152
  4013. },
  4014. "sf_btn_start": {
  4015. "__uuid__": "f6f8bd72-42c0-4255-ba86-18e3768cfbcc@f9941",
  4016. "__expectedType__": "cc.SpriteFrame"
  4017. },
  4018. "sf_btn_pause": {
  4019. "__uuid__": "8c547ad0-497e-4b65-b588-3efb2dfdeed8@f9941",
  4020. "__expectedType__": "cc.SpriteFrame"
  4021. },
  4022. "addCoinAni": {
  4023. "__uuid__": "fae22d01-0671-4d04-b61e-4a5da731ad46",
  4024. "__expectedType__": "cc.Prefab"
  4025. },
  4026. "top_node": {
  4027. "__id__": 2
  4028. },
  4029. "lab_countdown_time": {
  4030. "__id__": 110
  4031. },
  4032. "img_1": {
  4033. "__id__": 51
  4034. },
  4035. "bottom_node": {
  4036. "__id__": 86
  4037. },
  4038. "question_node": {
  4039. "__id__": 57
  4040. },
  4041. "_id": ""
  4042. },
  4043. {
  4044. "__type__": "cc.CompPrefabInfo",
  4045. "fileId": "73ih4qR0dAt7boeHdLxPqN"
  4046. },
  4047. {
  4048. "__type__": "cc.PrefabInfo",
  4049. "root": {
  4050. "__id__": 1
  4051. },
  4052. "asset": {
  4053. "__id__": 0
  4054. },
  4055. "fileId": "484PoCc9JFrruFKhil+ifs",
  4056. "instance": null,
  4057. "targetOverrides": null
  4058. }
  4059. ]