LevelLayer.prefab 75 KB

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