LevelLayer.prefab 73 KB

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