LevelLayer.prefab 74 KB

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