user_info_view.prefab 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "user_info_view",
  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": "user_info_view",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 96
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 104
  35. },
  36. {
  37. "__id__": 106
  38. },
  39. {
  40. "__id__": 108
  41. },
  42. {
  43. "__id__": 110
  44. },
  45. {
  46. "__id__": 112
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 114
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 33554432,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "public_bg",
  84. "_objFlags": 0,
  85. "__editorExtras__": {},
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [],
  90. "_active": true,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 5
  97. },
  98. {
  99. "__id__": 7
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 9
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 1080,
  149. "height": 1920.0000000000002
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "9f6mRZ30NMM5xNorh/gNye"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 255,
  180. "g": 255,
  181. "b": 255,
  182. "a": 255
  183. },
  184. "_spriteFrame": {
  185. "__uuid__": "433b4378-f731-459b-be68-93cd8b0899a6@f9941",
  186. "__expectedType__": "cc.SpriteFrame"
  187. },
  188. "_type": 0,
  189. "_fillType": 0,
  190. "_sizeMode": 0,
  191. "_fillCenter": {
  192. "__type__": "cc.Vec2",
  193. "x": 0,
  194. "y": 0
  195. },
  196. "_fillStart": 0,
  197. "_fillRange": 0,
  198. "_isTrimmedMode": true,
  199. "_useGrayscale": false,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "21Dvw7R0NFO7y1RQm/V6MA"
  206. },
  207. {
  208. "__type__": "cc.Widget",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "__editorExtras__": {},
  212. "node": {
  213. "__id__": 2
  214. },
  215. "_enabled": true,
  216. "__prefab": {
  217. "__id__": 8
  218. },
  219. "_alignFlags": 45,
  220. "_target": null,
  221. "_left": 0,
  222. "_right": 0,
  223. "_top": 0,
  224. "_bottom": 0,
  225. "_horizontalCenter": 0,
  226. "_verticalCenter": 0,
  227. "_isAbsLeft": true,
  228. "_isAbsRight": true,
  229. "_isAbsTop": true,
  230. "_isAbsBottom": true,
  231. "_isAbsHorizontalCenter": true,
  232. "_isAbsVerticalCenter": true,
  233. "_originalWidth": 1080,
  234. "_originalHeight": 1920,
  235. "_alignMode": 2,
  236. "_lockFlags": 0,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "cc.CompPrefabInfo",
  241. "fileId": "56k063xzlC6aDKnB0x1FGc"
  242. },
  243. {
  244. "__type__": "cc.PrefabInfo",
  245. "root": {
  246. "__id__": 1
  247. },
  248. "asset": {
  249. "__id__": 0
  250. },
  251. "fileId": "f5qLAXKqdF67DyMsr66s99",
  252. "instance": null,
  253. "targetOverrides": null,
  254. "nestedPrefabInstanceRoots": null
  255. },
  256. {
  257. "__type__": "cc.Node",
  258. "_name": "img_bg",
  259. "_objFlags": 0,
  260. "__editorExtras__": {},
  261. "_parent": {
  262. "__id__": 1
  263. },
  264. "_children": [
  265. {
  266. "__id__": 11
  267. },
  268. {
  269. "__id__": 37
  270. },
  271. {
  272. "__id__": 43
  273. },
  274. {
  275. "__id__": 49
  276. },
  277. {
  278. "__id__": 55
  279. },
  280. {
  281. "__id__": 61
  282. },
  283. {
  284. "__id__": 79
  285. },
  286. {
  287. "__id__": 85
  288. }
  289. ],
  290. "_active": true,
  291. "_components": [
  292. {
  293. "__id__": 91
  294. },
  295. {
  296. "__id__": 93
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 95
  301. },
  302. "_lpos": {
  303. "__type__": "cc.Vec3",
  304. "x": 0,
  305. "y": 100,
  306. "z": 0
  307. },
  308. "_lrot": {
  309. "__type__": "cc.Quat",
  310. "x": 0,
  311. "y": 0,
  312. "z": 0,
  313. "w": 1
  314. },
  315. "_lscale": {
  316. "__type__": "cc.Vec3",
  317. "x": 1,
  318. "y": 1,
  319. "z": 1
  320. },
  321. "_mobility": 0,
  322. "_layer": 33554432,
  323. "_euler": {
  324. "__type__": "cc.Vec3",
  325. "x": 0,
  326. "y": 0,
  327. "z": 0
  328. },
  329. "_id": ""
  330. },
  331. {
  332. "__type__": "cc.Node",
  333. "_name": "avatar_node",
  334. "_objFlags": 0,
  335. "__editorExtras__": {},
  336. "_parent": {
  337. "__id__": 10
  338. },
  339. "_children": [
  340. {
  341. "__id__": 12
  342. },
  343. {
  344. "__id__": 28
  345. }
  346. ],
  347. "_active": true,
  348. "_components": [
  349. {
  350. "__id__": 34
  351. }
  352. ],
  353. "_prefab": {
  354. "__id__": 36
  355. },
  356. "_lpos": {
  357. "__type__": "cc.Vec3",
  358. "x": -395.611,
  359. "y": 515.491,
  360. "z": 0
  361. },
  362. "_lrot": {
  363. "__type__": "cc.Quat",
  364. "x": 0,
  365. "y": 0,
  366. "z": 0,
  367. "w": 1
  368. },
  369. "_lscale": {
  370. "__type__": "cc.Vec3",
  371. "x": 1,
  372. "y": 1,
  373. "z": 1
  374. },
  375. "_mobility": 0,
  376. "_layer": 33554432,
  377. "_euler": {
  378. "__type__": "cc.Vec3",
  379. "x": 0,
  380. "y": 0,
  381. "z": 0
  382. },
  383. "_id": ""
  384. },
  385. {
  386. "__type__": "cc.Node",
  387. "_name": "img_avatar_mask",
  388. "_objFlags": 0,
  389. "__editorExtras__": {},
  390. "_parent": {
  391. "__id__": 11
  392. },
  393. "_children": [
  394. {
  395. "__id__": 13
  396. }
  397. ],
  398. "_active": true,
  399. "_components": [
  400. {
  401. "__id__": 21
  402. },
  403. {
  404. "__id__": 23
  405. },
  406. {
  407. "__id__": 25
  408. }
  409. ],
  410. "_prefab": {
  411. "__id__": 27
  412. },
  413. "_lpos": {
  414. "__type__": "cc.Vec3",
  415. "x": 3,
  416. "y": 0,
  417. "z": 0
  418. },
  419. "_lrot": {
  420. "__type__": "cc.Quat",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0,
  424. "w": 1
  425. },
  426. "_lscale": {
  427. "__type__": "cc.Vec3",
  428. "x": 1,
  429. "y": 1,
  430. "z": 1
  431. },
  432. "_mobility": 0,
  433. "_layer": 33554432,
  434. "_euler": {
  435. "__type__": "cc.Vec3",
  436. "x": 0,
  437. "y": 0,
  438. "z": 0
  439. },
  440. "_id": ""
  441. },
  442. {
  443. "__type__": "cc.Node",
  444. "_name": "img_avatar",
  445. "_objFlags": 0,
  446. "__editorExtras__": {},
  447. "_parent": {
  448. "__id__": 12
  449. },
  450. "_children": [],
  451. "_active": true,
  452. "_components": [
  453. {
  454. "__id__": 14
  455. },
  456. {
  457. "__id__": 16
  458. },
  459. {
  460. "__id__": 18
  461. }
  462. ],
  463. "_prefab": {
  464. "__id__": 20
  465. },
  466. "_lpos": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_lrot": {
  473. "__type__": "cc.Quat",
  474. "x": 0,
  475. "y": 0,
  476. "z": 0,
  477. "w": 1
  478. },
  479. "_lscale": {
  480. "__type__": "cc.Vec3",
  481. "x": 1,
  482. "y": 1,
  483. "z": 1
  484. },
  485. "_mobility": 0,
  486. "_layer": 33554432,
  487. "_euler": {
  488. "__type__": "cc.Vec3",
  489. "x": 0,
  490. "y": 0,
  491. "z": 0
  492. },
  493. "_id": ""
  494. },
  495. {
  496. "__type__": "cc.UITransform",
  497. "_name": "",
  498. "_objFlags": 0,
  499. "__editorExtras__": {},
  500. "node": {
  501. "__id__": 13
  502. },
  503. "_enabled": true,
  504. "__prefab": {
  505. "__id__": 15
  506. },
  507. "_contentSize": {
  508. "__type__": "cc.Size",
  509. "width": 226,
  510. "height": 244
  511. },
  512. "_anchorPoint": {
  513. "__type__": "cc.Vec2",
  514. "x": 0.5,
  515. "y": 0.5
  516. },
  517. "_id": ""
  518. },
  519. {
  520. "__type__": "cc.CompPrefabInfo",
  521. "fileId": "44zZfBmpVEI7iCJ7nyN1LT"
  522. },
  523. {
  524. "__type__": "cc.Sprite",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "__editorExtras__": {},
  528. "node": {
  529. "__id__": 13
  530. },
  531. "_enabled": true,
  532. "__prefab": {
  533. "__id__": 17
  534. },
  535. "_customMaterial": null,
  536. "_srcBlendFactor": 2,
  537. "_dstBlendFactor": 4,
  538. "_color": {
  539. "__type__": "cc.Color",
  540. "r": 255,
  541. "g": 255,
  542. "b": 255,
  543. "a": 255
  544. },
  545. "_spriteFrame": null,
  546. "_type": 0,
  547. "_fillType": 0,
  548. "_sizeMode": 0,
  549. "_fillCenter": {
  550. "__type__": "cc.Vec2",
  551. "x": 0,
  552. "y": 0
  553. },
  554. "_fillStart": 0,
  555. "_fillRange": 0,
  556. "_isTrimmedMode": true,
  557. "_useGrayscale": false,
  558. "_atlas": null,
  559. "_id": ""
  560. },
  561. {
  562. "__type__": "cc.CompPrefabInfo",
  563. "fileId": "05bCPFfElJFKhQRNAtPQd+"
  564. },
  565. {
  566. "__type__": "cc.Widget",
  567. "_name": "",
  568. "_objFlags": 0,
  569. "__editorExtras__": {},
  570. "node": {
  571. "__id__": 13
  572. },
  573. "_enabled": true,
  574. "__prefab": {
  575. "__id__": 19
  576. },
  577. "_alignFlags": 45,
  578. "_target": null,
  579. "_left": 0,
  580. "_right": 0,
  581. "_top": 0,
  582. "_bottom": 0,
  583. "_horizontalCenter": 0,
  584. "_verticalCenter": 0,
  585. "_isAbsLeft": true,
  586. "_isAbsRight": true,
  587. "_isAbsTop": true,
  588. "_isAbsBottom": true,
  589. "_isAbsHorizontalCenter": true,
  590. "_isAbsVerticalCenter": true,
  591. "_originalWidth": 222,
  592. "_originalHeight": 236,
  593. "_alignMode": 2,
  594. "_lockFlags": 0,
  595. "_id": ""
  596. },
  597. {
  598. "__type__": "cc.CompPrefabInfo",
  599. "fileId": "48qPVGBeNPXLE2RrVsWd5h"
  600. },
  601. {
  602. "__type__": "cc.PrefabInfo",
  603. "root": {
  604. "__id__": 1
  605. },
  606. "asset": {
  607. "__id__": 0
  608. },
  609. "fileId": "3bOjf4EPBIrLrQhHdotzSE",
  610. "instance": null,
  611. "targetOverrides": null,
  612. "nestedPrefabInstanceRoots": null
  613. },
  614. {
  615. "__type__": "cc.UITransform",
  616. "_name": "",
  617. "_objFlags": 0,
  618. "__editorExtras__": {},
  619. "node": {
  620. "__id__": 12
  621. },
  622. "_enabled": true,
  623. "__prefab": {
  624. "__id__": 22
  625. },
  626. "_contentSize": {
  627. "__type__": "cc.Size",
  628. "width": 226,
  629. "height": 244
  630. },
  631. "_anchorPoint": {
  632. "__type__": "cc.Vec2",
  633. "x": 0.5,
  634. "y": 0.5
  635. },
  636. "_id": ""
  637. },
  638. {
  639. "__type__": "cc.CompPrefabInfo",
  640. "fileId": "eeT7YjpcVBa5ExN7DtmmbE"
  641. },
  642. {
  643. "__type__": "cc.Mask",
  644. "_name": "",
  645. "_objFlags": 0,
  646. "__editorExtras__": {},
  647. "node": {
  648. "__id__": 12
  649. },
  650. "_enabled": true,
  651. "__prefab": {
  652. "__id__": 24
  653. },
  654. "_type": 3,
  655. "_inverted": false,
  656. "_segments": 64,
  657. "_alphaThreshold": 0.1,
  658. "_id": ""
  659. },
  660. {
  661. "__type__": "cc.CompPrefabInfo",
  662. "fileId": "edzWrPo3hCy5tNnO3hsNFW"
  663. },
  664. {
  665. "__type__": "cc.Sprite",
  666. "_name": "",
  667. "_objFlags": 0,
  668. "__editorExtras__": {},
  669. "node": {
  670. "__id__": 12
  671. },
  672. "_enabled": true,
  673. "__prefab": {
  674. "__id__": 26
  675. },
  676. "_customMaterial": null,
  677. "_srcBlendFactor": 2,
  678. "_dstBlendFactor": 4,
  679. "_color": {
  680. "__type__": "cc.Color",
  681. "r": 255,
  682. "g": 255,
  683. "b": 255,
  684. "a": 255
  685. },
  686. "_spriteFrame": {
  687. "__uuid__": "e3265327-7161-4214-a006-167607ea5711@f9941",
  688. "__expectedType__": "cc.SpriteFrame"
  689. },
  690. "_type": 0,
  691. "_fillType": 0,
  692. "_sizeMode": 0,
  693. "_fillCenter": {
  694. "__type__": "cc.Vec2",
  695. "x": 0,
  696. "y": 0
  697. },
  698. "_fillStart": 0,
  699. "_fillRange": 0,
  700. "_isTrimmedMode": true,
  701. "_useGrayscale": false,
  702. "_atlas": null,
  703. "_id": ""
  704. },
  705. {
  706. "__type__": "cc.CompPrefabInfo",
  707. "fileId": "d3ElSZa/RMfbJygo27HY/e"
  708. },
  709. {
  710. "__type__": "cc.PrefabInfo",
  711. "root": {
  712. "__id__": 1
  713. },
  714. "asset": {
  715. "__id__": 0
  716. },
  717. "fileId": "39jXTGufNPnZ6E9nRrFrQF",
  718. "instance": null,
  719. "targetOverrides": null,
  720. "nestedPrefabInstanceRoots": null
  721. },
  722. {
  723. "__type__": "cc.Node",
  724. "_name": "img_avatar_border",
  725. "_objFlags": 0,
  726. "__editorExtras__": {},
  727. "_parent": {
  728. "__id__": 11
  729. },
  730. "_children": [],
  731. "_active": true,
  732. "_components": [
  733. {
  734. "__id__": 29
  735. },
  736. {
  737. "__id__": 31
  738. }
  739. ],
  740. "_prefab": {
  741. "__id__": 33
  742. },
  743. "_lpos": {
  744. "__type__": "cc.Vec3",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_lrot": {
  750. "__type__": "cc.Quat",
  751. "x": 0,
  752. "y": 0,
  753. "z": 0,
  754. "w": 1
  755. },
  756. "_lscale": {
  757. "__type__": "cc.Vec3",
  758. "x": 1,
  759. "y": 1,
  760. "z": 1
  761. },
  762. "_mobility": 0,
  763. "_layer": 33554432,
  764. "_euler": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_id": ""
  771. },
  772. {
  773. "__type__": "cc.UITransform",
  774. "_name": "",
  775. "_objFlags": 0,
  776. "__editorExtras__": {},
  777. "node": {
  778. "__id__": 28
  779. },
  780. "_enabled": true,
  781. "__prefab": {
  782. "__id__": 30
  783. },
  784. "_contentSize": {
  785. "__type__": "cc.Size",
  786. "width": 222,
  787. "height": 236
  788. },
  789. "_anchorPoint": {
  790. "__type__": "cc.Vec2",
  791. "x": 0.5,
  792. "y": 0.5
  793. },
  794. "_id": ""
  795. },
  796. {
  797. "__type__": "cc.CompPrefabInfo",
  798. "fileId": "f5uoeNOgBKyZ2EenydFJfK"
  799. },
  800. {
  801. "__type__": "cc.Sprite",
  802. "_name": "",
  803. "_objFlags": 0,
  804. "__editorExtras__": {},
  805. "node": {
  806. "__id__": 28
  807. },
  808. "_enabled": true,
  809. "__prefab": {
  810. "__id__": 32
  811. },
  812. "_customMaterial": null,
  813. "_srcBlendFactor": 2,
  814. "_dstBlendFactor": 4,
  815. "_color": {
  816. "__type__": "cc.Color",
  817. "r": 255,
  818. "g": 255,
  819. "b": 255,
  820. "a": 255
  821. },
  822. "_spriteFrame": {
  823. "__uuid__": "854efccb-38ae-4412-ae22-32db51ab4ee0@f9941",
  824. "__expectedType__": "cc.SpriteFrame"
  825. },
  826. "_type": 0,
  827. "_fillType": 0,
  828. "_sizeMode": 0,
  829. "_fillCenter": {
  830. "__type__": "cc.Vec2",
  831. "x": 0,
  832. "y": 0
  833. },
  834. "_fillStart": 0,
  835. "_fillRange": 0,
  836. "_isTrimmedMode": true,
  837. "_useGrayscale": false,
  838. "_atlas": null,
  839. "_id": ""
  840. },
  841. {
  842. "__type__": "cc.CompPrefabInfo",
  843. "fileId": "43oyuZqkVMkqP8xQRqQPUN"
  844. },
  845. {
  846. "__type__": "cc.PrefabInfo",
  847. "root": {
  848. "__id__": 1
  849. },
  850. "asset": {
  851. "__id__": 0
  852. },
  853. "fileId": "b99wATiQdEmp1P7+N189UZ",
  854. "instance": null,
  855. "targetOverrides": null,
  856. "nestedPrefabInstanceRoots": null
  857. },
  858. {
  859. "__type__": "cc.UITransform",
  860. "_name": "",
  861. "_objFlags": 0,
  862. "__editorExtras__": {},
  863. "node": {
  864. "__id__": 11
  865. },
  866. "_enabled": true,
  867. "__prefab": {
  868. "__id__": 35
  869. },
  870. "_contentSize": {
  871. "__type__": "cc.Size",
  872. "width": 226,
  873. "height": 224
  874. },
  875. "_anchorPoint": {
  876. "__type__": "cc.Vec2",
  877. "x": 0.5,
  878. "y": 0.5
  879. },
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.CompPrefabInfo",
  884. "fileId": "33zr8xS4NBD5qdb7DEpqO4"
  885. },
  886. {
  887. "__type__": "cc.PrefabInfo",
  888. "root": {
  889. "__id__": 1
  890. },
  891. "asset": {
  892. "__id__": 0
  893. },
  894. "fileId": "eddRKxgihCIZaOq/d3jc9j",
  895. "instance": null,
  896. "targetOverrides": null,
  897. "nestedPrefabInstanceRoots": null
  898. },
  899. {
  900. "__type__": "cc.Node",
  901. "_name": "lab_region",
  902. "_objFlags": 0,
  903. "__editorExtras__": {},
  904. "_parent": {
  905. "__id__": 10
  906. },
  907. "_children": [],
  908. "_active": true,
  909. "_components": [
  910. {
  911. "__id__": 38
  912. },
  913. {
  914. "__id__": 40
  915. }
  916. ],
  917. "_prefab": {
  918. "__id__": 42
  919. },
  920. "_lpos": {
  921. "__type__": "cc.Vec3",
  922. "x": 32.829,
  923. "y": 613.818,
  924. "z": 0
  925. },
  926. "_lrot": {
  927. "__type__": "cc.Quat",
  928. "x": 0,
  929. "y": 0,
  930. "z": 0,
  931. "w": 1
  932. },
  933. "_lscale": {
  934. "__type__": "cc.Vec3",
  935. "x": 1,
  936. "y": 1,
  937. "z": 1
  938. },
  939. "_mobility": 0,
  940. "_layer": 33554432,
  941. "_euler": {
  942. "__type__": "cc.Vec3",
  943. "x": 0,
  944. "y": 0,
  945. "z": 0
  946. },
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.UITransform",
  951. "_name": "",
  952. "_objFlags": 0,
  953. "__editorExtras__": {},
  954. "node": {
  955. "__id__": 37
  956. },
  957. "_enabled": true,
  958. "__prefab": {
  959. "__id__": 39
  960. },
  961. "_contentSize": {
  962. "__type__": "cc.Size",
  963. "width": 400,
  964. "height": 50.4
  965. },
  966. "_anchorPoint": {
  967. "__type__": "cc.Vec2",
  968. "x": 0.5,
  969. "y": 0.5
  970. },
  971. "_id": ""
  972. },
  973. {
  974. "__type__": "cc.CompPrefabInfo",
  975. "fileId": "eapsY11L1Mz5rXlmkXpdOB"
  976. },
  977. {
  978. "__type__": "cc.Label",
  979. "_name": "",
  980. "_objFlags": 0,
  981. "__editorExtras__": {},
  982. "node": {
  983. "__id__": 37
  984. },
  985. "_enabled": true,
  986. "__prefab": {
  987. "__id__": 41
  988. },
  989. "_customMaterial": null,
  990. "_srcBlendFactor": 2,
  991. "_dstBlendFactor": 4,
  992. "_color": {
  993. "__type__": "cc.Color",
  994. "r": 222,
  995. "g": 231,
  996. "b": 253,
  997. "a": 255
  998. },
  999. "_string": "北京市 - 北京市",
  1000. "_horizontalAlign": 0,
  1001. "_verticalAlign": 1,
  1002. "_actualFontSize": 41,
  1003. "_fontSize": 40,
  1004. "_fontFamily": "Arial",
  1005. "_lineHeight": 40,
  1006. "_overflow": 2,
  1007. "_enableWrapText": true,
  1008. "_font": null,
  1009. "_isSystemFontUsed": true,
  1010. "_spacingX": 0,
  1011. "_isItalic": false,
  1012. "_isBold": false,
  1013. "_isUnderline": false,
  1014. "_underlineHeight": 2,
  1015. "_cacheMode": 0,
  1016. "_enableOutline": false,
  1017. "_outlineColor": {
  1018. "__type__": "cc.Color",
  1019. "r": 0,
  1020. "g": 0,
  1021. "b": 0,
  1022. "a": 255
  1023. },
  1024. "_outlineWidth": 2,
  1025. "_enableShadow": false,
  1026. "_shadowColor": {
  1027. "__type__": "cc.Color",
  1028. "r": 0,
  1029. "g": 0,
  1030. "b": 0,
  1031. "a": 255
  1032. },
  1033. "_shadowOffset": {
  1034. "__type__": "cc.Vec2",
  1035. "x": 2,
  1036. "y": 2
  1037. },
  1038. "_shadowBlur": 2,
  1039. "_id": ""
  1040. },
  1041. {
  1042. "__type__": "cc.CompPrefabInfo",
  1043. "fileId": "a3MLP3VX5KloyzqPE8pK32"
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__id__": 0
  1052. },
  1053. "fileId": "468i8gWtpD9bcuCAbwM8Q4",
  1054. "instance": null,
  1055. "targetOverrides": null,
  1056. "nestedPrefabInstanceRoots": null
  1057. },
  1058. {
  1059. "__type__": "cc.Node",
  1060. "_name": "lab_nickname",
  1061. "_objFlags": 0,
  1062. "__editorExtras__": {},
  1063. "_parent": {
  1064. "__id__": 10
  1065. },
  1066. "_children": [],
  1067. "_active": true,
  1068. "_components": [
  1069. {
  1070. "__id__": 44
  1071. },
  1072. {
  1073. "__id__": 46
  1074. }
  1075. ],
  1076. "_prefab": {
  1077. "__id__": 48
  1078. },
  1079. "_lpos": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 31.999,
  1082. "y": 497.902,
  1083. "z": 0
  1084. },
  1085. "_lrot": {
  1086. "__type__": "cc.Quat",
  1087. "x": 0,
  1088. "y": 0,
  1089. "z": 0,
  1090. "w": 1
  1091. },
  1092. "_lscale": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 1,
  1095. "y": 1,
  1096. "z": 1
  1097. },
  1098. "_mobility": 0,
  1099. "_layer": 33554432,
  1100. "_euler": {
  1101. "__type__": "cc.Vec3",
  1102. "x": 0,
  1103. "y": 0,
  1104. "z": 0
  1105. },
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.UITransform",
  1110. "_name": "",
  1111. "_objFlags": 0,
  1112. "__editorExtras__": {},
  1113. "node": {
  1114. "__id__": 43
  1115. },
  1116. "_enabled": true,
  1117. "__prefab": {
  1118. "__id__": 45
  1119. },
  1120. "_contentSize": {
  1121. "__type__": "cc.Size",
  1122. "width": 580,
  1123. "height": 65
  1124. },
  1125. "_anchorPoint": {
  1126. "__type__": "cc.Vec2",
  1127. "x": 0.5,
  1128. "y": 0.5
  1129. },
  1130. "_id": ""
  1131. },
  1132. {
  1133. "__type__": "cc.CompPrefabInfo",
  1134. "fileId": "2dhyp5hKdHrLrnyNRTvSIG"
  1135. },
  1136. {
  1137. "__type__": "cc.Label",
  1138. "_name": "",
  1139. "_objFlags": 0,
  1140. "__editorExtras__": {},
  1141. "node": {
  1142. "__id__": 43
  1143. },
  1144. "_enabled": true,
  1145. "__prefab": {
  1146. "__id__": 47
  1147. },
  1148. "_customMaterial": null,
  1149. "_srcBlendFactor": 2,
  1150. "_dstBlendFactor": 4,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 222,
  1154. "g": 231,
  1155. "b": 253,
  1156. "a": 255
  1157. },
  1158. "_string": "用户",
  1159. "_horizontalAlign": 0,
  1160. "_verticalAlign": 1,
  1161. "_actualFontSize": 60,
  1162. "_fontSize": 60,
  1163. "_fontFamily": "Arial",
  1164. "_lineHeight": 65,
  1165. "_overflow": 2,
  1166. "_enableWrapText": true,
  1167. "_font": null,
  1168. "_isSystemFontUsed": true,
  1169. "_spacingX": 0,
  1170. "_isItalic": false,
  1171. "_isBold": false,
  1172. "_isUnderline": false,
  1173. "_underlineHeight": 2,
  1174. "_cacheMode": 0,
  1175. "_enableOutline": false,
  1176. "_outlineColor": {
  1177. "__type__": "cc.Color",
  1178. "r": 0,
  1179. "g": 0,
  1180. "b": 0,
  1181. "a": 255
  1182. },
  1183. "_outlineWidth": 2,
  1184. "_enableShadow": false,
  1185. "_shadowColor": {
  1186. "__type__": "cc.Color",
  1187. "r": 0,
  1188. "g": 0,
  1189. "b": 0,
  1190. "a": 255
  1191. },
  1192. "_shadowOffset": {
  1193. "__type__": "cc.Vec2",
  1194. "x": 2,
  1195. "y": 2
  1196. },
  1197. "_shadowBlur": 2,
  1198. "_id": ""
  1199. },
  1200. {
  1201. "__type__": "cc.CompPrefabInfo",
  1202. "fileId": "e25gA4S9dCJ4EKWDiAV4bc"
  1203. },
  1204. {
  1205. "__type__": "cc.PrefabInfo",
  1206. "root": {
  1207. "__id__": 1
  1208. },
  1209. "asset": {
  1210. "__id__": 0
  1211. },
  1212. "fileId": "59xAaVjDhKJJa+adLM6Zs8",
  1213. "instance": null,
  1214. "targetOverrides": null,
  1215. "nestedPrefabInstanceRoots": null
  1216. },
  1217. {
  1218. "__type__": "cc.Node",
  1219. "_name": "img_car",
  1220. "_objFlags": 0,
  1221. "__editorExtras__": {},
  1222. "_parent": {
  1223. "__id__": 10
  1224. },
  1225. "_children": [],
  1226. "_active": true,
  1227. "_components": [
  1228. {
  1229. "__id__": 50
  1230. },
  1231. {
  1232. "__id__": 52
  1233. }
  1234. ],
  1235. "_prefab": {
  1236. "__id__": 54
  1237. },
  1238. "_lpos": {
  1239. "__type__": "cc.Vec3",
  1240. "x": 0,
  1241. "y": -19,
  1242. "z": 0
  1243. },
  1244. "_lrot": {
  1245. "__type__": "cc.Quat",
  1246. "x": 0,
  1247. "y": 0,
  1248. "z": 0,
  1249. "w": 1
  1250. },
  1251. "_lscale": {
  1252. "__type__": "cc.Vec3",
  1253. "x": 0.9,
  1254. "y": 0.9,
  1255. "z": 1
  1256. },
  1257. "_mobility": 0,
  1258. "_layer": 33554432,
  1259. "_euler": {
  1260. "__type__": "cc.Vec3",
  1261. "x": 0,
  1262. "y": 0,
  1263. "z": 0
  1264. },
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.UITransform",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "__editorExtras__": {},
  1272. "node": {
  1273. "__id__": 49
  1274. },
  1275. "_enabled": true,
  1276. "__prefab": {
  1277. "__id__": 51
  1278. },
  1279. "_contentSize": {
  1280. "__type__": "cc.Size",
  1281. "width": 950,
  1282. "height": 594
  1283. },
  1284. "_anchorPoint": {
  1285. "__type__": "cc.Vec2",
  1286. "x": 0.5,
  1287. "y": 0.5
  1288. },
  1289. "_id": ""
  1290. },
  1291. {
  1292. "__type__": "cc.CompPrefabInfo",
  1293. "fileId": "e8FOkBnL9JbrzaBHxAKDAd"
  1294. },
  1295. {
  1296. "__type__": "cc.Sprite",
  1297. "_name": "",
  1298. "_objFlags": 0,
  1299. "__editorExtras__": {},
  1300. "node": {
  1301. "__id__": 49
  1302. },
  1303. "_enabled": true,
  1304. "__prefab": {
  1305. "__id__": 53
  1306. },
  1307. "_customMaterial": null,
  1308. "_srcBlendFactor": 2,
  1309. "_dstBlendFactor": 4,
  1310. "_color": {
  1311. "__type__": "cc.Color",
  1312. "r": 255,
  1313. "g": 255,
  1314. "b": 255,
  1315. "a": 255
  1316. },
  1317. "_spriteFrame": null,
  1318. "_type": 0,
  1319. "_fillType": 0,
  1320. "_sizeMode": 1,
  1321. "_fillCenter": {
  1322. "__type__": "cc.Vec2",
  1323. "x": 0,
  1324. "y": 0
  1325. },
  1326. "_fillStart": 0,
  1327. "_fillRange": 0,
  1328. "_isTrimmedMode": true,
  1329. "_useGrayscale": false,
  1330. "_atlas": null,
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.CompPrefabInfo",
  1335. "fileId": "cbmCK4QFpBeYbZfQ+mu6xt"
  1336. },
  1337. {
  1338. "__type__": "cc.PrefabInfo",
  1339. "root": {
  1340. "__id__": 1
  1341. },
  1342. "asset": {
  1343. "__id__": 0
  1344. },
  1345. "fileId": "edLMKFeptAl5CMujrcOdpK",
  1346. "instance": null,
  1347. "targetOverrides": null,
  1348. "nestedPrefabInstanceRoots": null
  1349. },
  1350. {
  1351. "__type__": "cc.Node",
  1352. "_name": "lab_car_pai",
  1353. "_objFlags": 0,
  1354. "__editorExtras__": {},
  1355. "_parent": {
  1356. "__id__": 10
  1357. },
  1358. "_children": [],
  1359. "_active": true,
  1360. "_components": [
  1361. {
  1362. "__id__": 56
  1363. },
  1364. {
  1365. "__id__": 58
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 60
  1370. },
  1371. "_lpos": {
  1372. "__type__": "cc.Vec3",
  1373. "x": -2.724,
  1374. "y": 302.648,
  1375. "z": 0
  1376. },
  1377. "_lrot": {
  1378. "__type__": "cc.Quat",
  1379. "x": 0,
  1380. "y": 0,
  1381. "z": 0,
  1382. "w": 1
  1383. },
  1384. "_lscale": {
  1385. "__type__": "cc.Vec3",
  1386. "x": 1,
  1387. "y": 1,
  1388. "z": 1
  1389. },
  1390. "_mobility": 0,
  1391. "_layer": 33554432,
  1392. "_euler": {
  1393. "__type__": "cc.Vec3",
  1394. "x": 0,
  1395. "y": 0,
  1396. "z": 0
  1397. },
  1398. "_id": ""
  1399. },
  1400. {
  1401. "__type__": "cc.UITransform",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "__editorExtras__": {},
  1405. "node": {
  1406. "__id__": 55
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": {
  1410. "__id__": 57
  1411. },
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 500,
  1415. "height": 50
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 0.5
  1421. },
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.CompPrefabInfo",
  1426. "fileId": "b4ROjk+OVDX4VHGSioToHK"
  1427. },
  1428. {
  1429. "__type__": "cc.Label",
  1430. "_name": "",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "node": {
  1434. "__id__": 55
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": {
  1438. "__id__": 59
  1439. },
  1440. "_customMaterial": null,
  1441. "_srcBlendFactor": 2,
  1442. "_dstBlendFactor": 4,
  1443. "_color": {
  1444. "__type__": "cc.Color",
  1445. "r": 164,
  1446. "g": 194,
  1447. "b": 227,
  1448. "a": 255
  1449. },
  1450. "_string": "粤A88888",
  1451. "_horizontalAlign": 1,
  1452. "_verticalAlign": 1,
  1453. "_actualFontSize": 40,
  1454. "_fontSize": 40,
  1455. "_fontFamily": "Arial",
  1456. "_lineHeight": 40,
  1457. "_overflow": 2,
  1458. "_enableWrapText": false,
  1459. "_font": null,
  1460. "_isSystemFontUsed": true,
  1461. "_spacingX": 0,
  1462. "_isItalic": false,
  1463. "_isBold": true,
  1464. "_isUnderline": false,
  1465. "_underlineHeight": 2,
  1466. "_cacheMode": 0,
  1467. "_enableOutline": false,
  1468. "_outlineColor": {
  1469. "__type__": "cc.Color",
  1470. "r": 0,
  1471. "g": 0,
  1472. "b": 0,
  1473. "a": 255
  1474. },
  1475. "_outlineWidth": 2,
  1476. "_enableShadow": false,
  1477. "_shadowColor": {
  1478. "__type__": "cc.Color",
  1479. "r": 0,
  1480. "g": 0,
  1481. "b": 0,
  1482. "a": 255
  1483. },
  1484. "_shadowOffset": {
  1485. "__type__": "cc.Vec2",
  1486. "x": 2,
  1487. "y": 2
  1488. },
  1489. "_shadowBlur": 2,
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.CompPrefabInfo",
  1494. "fileId": "71Br/IGWVOg5EMWRuJDY1N"
  1495. },
  1496. {
  1497. "__type__": "cc.PrefabInfo",
  1498. "root": {
  1499. "__id__": 1
  1500. },
  1501. "asset": {
  1502. "__id__": 0
  1503. },
  1504. "fileId": "9eoSQNPctEOJCv0UdMSDvr",
  1505. "instance": null,
  1506. "targetOverrides": null,
  1507. "nestedPrefabInstanceRoots": null
  1508. },
  1509. {
  1510. "__type__": "cc.Node",
  1511. "_name": "number_bg",
  1512. "_objFlags": 0,
  1513. "__editorExtras__": {},
  1514. "_parent": {
  1515. "__id__": 10
  1516. },
  1517. "_children": [
  1518. {
  1519. "__id__": 62
  1520. },
  1521. {
  1522. "__id__": 68
  1523. }
  1524. ],
  1525. "_active": false,
  1526. "_components": [
  1527. {
  1528. "__id__": 74
  1529. },
  1530. {
  1531. "__id__": 76
  1532. }
  1533. ],
  1534. "_prefab": {
  1535. "__id__": 78
  1536. },
  1537. "_lpos": {
  1538. "__type__": "cc.Vec3",
  1539. "x": -270.175,
  1540. "y": -375,
  1541. "z": 0
  1542. },
  1543. "_lrot": {
  1544. "__type__": "cc.Quat",
  1545. "x": 0,
  1546. "y": 0,
  1547. "z": 0,
  1548. "w": 1
  1549. },
  1550. "_lscale": {
  1551. "__type__": "cc.Vec3",
  1552. "x": 1,
  1553. "y": 1,
  1554. "z": 1
  1555. },
  1556. "_mobility": 0,
  1557. "_layer": 33554432,
  1558. "_euler": {
  1559. "__type__": "cc.Vec3",
  1560. "x": 0,
  1561. "y": 0,
  1562. "z": 0
  1563. },
  1564. "_id": ""
  1565. },
  1566. {
  1567. "__type__": "cc.Node",
  1568. "_name": "img_light",
  1569. "_objFlags": 0,
  1570. "__editorExtras__": {},
  1571. "_parent": {
  1572. "__id__": 61
  1573. },
  1574. "_children": [],
  1575. "_active": true,
  1576. "_components": [
  1577. {
  1578. "__id__": 63
  1579. },
  1580. {
  1581. "__id__": 65
  1582. }
  1583. ],
  1584. "_prefab": {
  1585. "__id__": 67
  1586. },
  1587. "_lpos": {
  1588. "__type__": "cc.Vec3",
  1589. "x": 0,
  1590. "y": 0,
  1591. "z": 0
  1592. },
  1593. "_lrot": {
  1594. "__type__": "cc.Quat",
  1595. "x": 0,
  1596. "y": 0,
  1597. "z": 0,
  1598. "w": 1
  1599. },
  1600. "_lscale": {
  1601. "__type__": "cc.Vec3",
  1602. "x": 1,
  1603. "y": 1,
  1604. "z": 1
  1605. },
  1606. "_mobility": 0,
  1607. "_layer": 33554432,
  1608. "_euler": {
  1609. "__type__": "cc.Vec3",
  1610. "x": 0,
  1611. "y": 0,
  1612. "z": 0
  1613. },
  1614. "_id": ""
  1615. },
  1616. {
  1617. "__type__": "cc.UITransform",
  1618. "_name": "",
  1619. "_objFlags": 0,
  1620. "__editorExtras__": {},
  1621. "node": {
  1622. "__id__": 62
  1623. },
  1624. "_enabled": true,
  1625. "__prefab": {
  1626. "__id__": 64
  1627. },
  1628. "_contentSize": {
  1629. "__type__": "cc.Size",
  1630. "width": 165,
  1631. "height": 165
  1632. },
  1633. "_anchorPoint": {
  1634. "__type__": "cc.Vec2",
  1635. "x": 0.5,
  1636. "y": 0.5
  1637. },
  1638. "_id": ""
  1639. },
  1640. {
  1641. "__type__": "cc.CompPrefabInfo",
  1642. "fileId": "a6vOiFHHRA5qSPiEezITdq"
  1643. },
  1644. {
  1645. "__type__": "cc.Sprite",
  1646. "_name": "",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "node": {
  1650. "__id__": 62
  1651. },
  1652. "_enabled": true,
  1653. "__prefab": {
  1654. "__id__": 66
  1655. },
  1656. "_customMaterial": null,
  1657. "_srcBlendFactor": 2,
  1658. "_dstBlendFactor": 4,
  1659. "_color": {
  1660. "__type__": "cc.Color",
  1661. "r": 255,
  1662. "g": 255,
  1663. "b": 255,
  1664. "a": 255
  1665. },
  1666. "_spriteFrame": {
  1667. "__uuid__": "1b92be66-ebbf-4e13-956f-774ab7426397@f9941",
  1668. "__expectedType__": "cc.SpriteFrame"
  1669. },
  1670. "_type": 0,
  1671. "_fillType": 0,
  1672. "_sizeMode": 1,
  1673. "_fillCenter": {
  1674. "__type__": "cc.Vec2",
  1675. "x": 0,
  1676. "y": 0
  1677. },
  1678. "_fillStart": 0,
  1679. "_fillRange": 0,
  1680. "_isTrimmedMode": true,
  1681. "_useGrayscale": false,
  1682. "_atlas": null,
  1683. "_id": ""
  1684. },
  1685. {
  1686. "__type__": "cc.CompPrefabInfo",
  1687. "fileId": "d2LS+ev0ZD1Iwrh+34Wr95"
  1688. },
  1689. {
  1690. "__type__": "cc.PrefabInfo",
  1691. "root": {
  1692. "__id__": 1
  1693. },
  1694. "asset": {
  1695. "__id__": 0
  1696. },
  1697. "fileId": "5ebX45AeZN9Jkgf+XCnzzG",
  1698. "instance": null,
  1699. "targetOverrides": null,
  1700. "nestedPrefabInstanceRoots": null
  1701. },
  1702. {
  1703. "__type__": "cc.Node",
  1704. "_name": "img_number",
  1705. "_objFlags": 0,
  1706. "__editorExtras__": {},
  1707. "_parent": {
  1708. "__id__": 61
  1709. },
  1710. "_children": [],
  1711. "_active": true,
  1712. "_components": [
  1713. {
  1714. "__id__": 69
  1715. },
  1716. {
  1717. "__id__": 71
  1718. }
  1719. ],
  1720. "_prefab": {
  1721. "__id__": 73
  1722. },
  1723. "_lpos": {
  1724. "__type__": "cc.Vec3",
  1725. "x": 0,
  1726. "y": 0,
  1727. "z": 0
  1728. },
  1729. "_lrot": {
  1730. "__type__": "cc.Quat",
  1731. "x": 0,
  1732. "y": 0,
  1733. "z": 0,
  1734. "w": 1
  1735. },
  1736. "_lscale": {
  1737. "__type__": "cc.Vec3",
  1738. "x": 1,
  1739. "y": 1,
  1740. "z": 1
  1741. },
  1742. "_mobility": 0,
  1743. "_layer": 33554432,
  1744. "_euler": {
  1745. "__type__": "cc.Vec3",
  1746. "x": 0,
  1747. "y": 0,
  1748. "z": 0
  1749. },
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.UITransform",
  1754. "_name": "",
  1755. "_objFlags": 0,
  1756. "__editorExtras__": {},
  1757. "node": {
  1758. "__id__": 68
  1759. },
  1760. "_enabled": true,
  1761. "__prefab": {
  1762. "__id__": 70
  1763. },
  1764. "_contentSize": {
  1765. "__type__": "cc.Size",
  1766. "width": 108,
  1767. "height": 112
  1768. },
  1769. "_anchorPoint": {
  1770. "__type__": "cc.Vec2",
  1771. "x": 0.5,
  1772. "y": 0.5
  1773. },
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.CompPrefabInfo",
  1778. "fileId": "28wR+qazlD4qoPBi18E7ST"
  1779. },
  1780. {
  1781. "__type__": "cc.Sprite",
  1782. "_name": "",
  1783. "_objFlags": 0,
  1784. "__editorExtras__": {},
  1785. "node": {
  1786. "__id__": 68
  1787. },
  1788. "_enabled": true,
  1789. "__prefab": {
  1790. "__id__": 72
  1791. },
  1792. "_customMaterial": null,
  1793. "_srcBlendFactor": 2,
  1794. "_dstBlendFactor": 4,
  1795. "_color": {
  1796. "__type__": "cc.Color",
  1797. "r": 255,
  1798. "g": 255,
  1799. "b": 255,
  1800. "a": 255
  1801. },
  1802. "_spriteFrame": {
  1803. "__uuid__": "f39fcda1-068d-4b59-b0ff-829ec91dd0be@f9941",
  1804. "__expectedType__": "cc.SpriteFrame"
  1805. },
  1806. "_type": 0,
  1807. "_fillType": 0,
  1808. "_sizeMode": 1,
  1809. "_fillCenter": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0,
  1812. "y": 0
  1813. },
  1814. "_fillStart": 0,
  1815. "_fillRange": 0,
  1816. "_isTrimmedMode": true,
  1817. "_useGrayscale": false,
  1818. "_atlas": null,
  1819. "_id": ""
  1820. },
  1821. {
  1822. "__type__": "cc.CompPrefabInfo",
  1823. "fileId": "fbsltRRMRF8qA50S59DJBn"
  1824. },
  1825. {
  1826. "__type__": "cc.PrefabInfo",
  1827. "root": {
  1828. "__id__": 1
  1829. },
  1830. "asset": {
  1831. "__id__": 0
  1832. },
  1833. "fileId": "f0x3Ni06ZDaKEPrXJemjqR",
  1834. "instance": null,
  1835. "targetOverrides": null,
  1836. "nestedPrefabInstanceRoots": null
  1837. },
  1838. {
  1839. "__type__": "cc.UITransform",
  1840. "_name": "",
  1841. "_objFlags": 0,
  1842. "__editorExtras__": {},
  1843. "node": {
  1844. "__id__": 61
  1845. },
  1846. "_enabled": true,
  1847. "__prefab": {
  1848. "__id__": 75
  1849. },
  1850. "_contentSize": {
  1851. "__type__": "cc.Size",
  1852. "width": 140,
  1853. "height": 140
  1854. },
  1855. "_anchorPoint": {
  1856. "__type__": "cc.Vec2",
  1857. "x": 0.5,
  1858. "y": 0.5
  1859. },
  1860. "_id": ""
  1861. },
  1862. {
  1863. "__type__": "cc.CompPrefabInfo",
  1864. "fileId": "97xyHjeExB5LakFJxVv/ou"
  1865. },
  1866. {
  1867. "__type__": "cc.Sprite",
  1868. "_name": "",
  1869. "_objFlags": 0,
  1870. "__editorExtras__": {},
  1871. "node": {
  1872. "__id__": 61
  1873. },
  1874. "_enabled": false,
  1875. "__prefab": {
  1876. "__id__": 77
  1877. },
  1878. "_customMaterial": null,
  1879. "_srcBlendFactor": 2,
  1880. "_dstBlendFactor": 4,
  1881. "_color": {
  1882. "__type__": "cc.Color",
  1883. "r": 255,
  1884. "g": 255,
  1885. "b": 255,
  1886. "a": 255
  1887. },
  1888. "_spriteFrame": {
  1889. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1890. "__expectedType__": "cc.SpriteFrame"
  1891. },
  1892. "_type": 1,
  1893. "_fillType": 0,
  1894. "_sizeMode": 0,
  1895. "_fillCenter": {
  1896. "__type__": "cc.Vec2",
  1897. "x": 0,
  1898. "y": 0
  1899. },
  1900. "_fillStart": 0,
  1901. "_fillRange": 0,
  1902. "_isTrimmedMode": true,
  1903. "_useGrayscale": false,
  1904. "_atlas": null,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.CompPrefabInfo",
  1909. "fileId": "5dA3wmVapLO7w2mvxSa+wl"
  1910. },
  1911. {
  1912. "__type__": "cc.PrefabInfo",
  1913. "root": {
  1914. "__id__": 1
  1915. },
  1916. "asset": {
  1917. "__id__": 0
  1918. },
  1919. "fileId": "32jZshqyROYJyvuru16Icu",
  1920. "instance": null,
  1921. "targetOverrides": null,
  1922. "nestedPrefabInstanceRoots": null
  1923. },
  1924. {
  1925. "__type__": "cc.Node",
  1926. "_name": "lab_score",
  1927. "_objFlags": 0,
  1928. "__editorExtras__": {},
  1929. "_parent": {
  1930. "__id__": 10
  1931. },
  1932. "_children": [],
  1933. "_active": true,
  1934. "_components": [
  1935. {
  1936. "__id__": 80
  1937. },
  1938. {
  1939. "__id__": 82
  1940. }
  1941. ],
  1942. "_prefab": {
  1943. "__id__": 84
  1944. },
  1945. "_lpos": {
  1946. "__type__": "cc.Vec3",
  1947. "x": 172,
  1948. "y": -371.722,
  1949. "z": 0
  1950. },
  1951. "_lrot": {
  1952. "__type__": "cc.Quat",
  1953. "x": 0,
  1954. "y": 0,
  1955. "z": 0,
  1956. "w": 1
  1957. },
  1958. "_lscale": {
  1959. "__type__": "cc.Vec3",
  1960. "x": 1,
  1961. "y": 1,
  1962. "z": 1
  1963. },
  1964. "_mobility": 0,
  1965. "_layer": 33554432,
  1966. "_euler": {
  1967. "__type__": "cc.Vec3",
  1968. "x": 0,
  1969. "y": 0,
  1970. "z": 0
  1971. },
  1972. "_id": ""
  1973. },
  1974. {
  1975. "__type__": "cc.UITransform",
  1976. "_name": "",
  1977. "_objFlags": 0,
  1978. "__editorExtras__": {},
  1979. "node": {
  1980. "__id__": 79
  1981. },
  1982. "_enabled": true,
  1983. "__prefab": {
  1984. "__id__": 81
  1985. },
  1986. "_contentSize": {
  1987. "__type__": "cc.Size",
  1988. "width": 220,
  1989. "height": 40
  1990. },
  1991. "_anchorPoint": {
  1992. "__type__": "cc.Vec2",
  1993. "x": 0.5,
  1994. "y": 0.5
  1995. },
  1996. "_id": ""
  1997. },
  1998. {
  1999. "__type__": "cc.CompPrefabInfo",
  2000. "fileId": "795Z2MI/pJsqPw2QygnCpb"
  2001. },
  2002. {
  2003. "__type__": "cc.Label",
  2004. "_name": "",
  2005. "_objFlags": 0,
  2006. "__editorExtras__": {},
  2007. "node": {
  2008. "__id__": 79
  2009. },
  2010. "_enabled": true,
  2011. "__prefab": {
  2012. "__id__": 83
  2013. },
  2014. "_customMaterial": null,
  2015. "_srcBlendFactor": 2,
  2016. "_dstBlendFactor": 4,
  2017. "_color": {
  2018. "__type__": "cc.Color",
  2019. "r": 255,
  2020. "g": 255,
  2021. "b": 255,
  2022. "a": 255
  2023. },
  2024. "_string": "",
  2025. "_horizontalAlign": 0,
  2026. "_verticalAlign": 1,
  2027. "_actualFontSize": 32,
  2028. "_fontSize": 35,
  2029. "_fontFamily": "Arial",
  2030. "_lineHeight": 40,
  2031. "_overflow": 2,
  2032. "_enableWrapText": true,
  2033. "_font": {
  2034. "__uuid__": "82fa6ad1-dcce-4040-81e6-03e86f73e726",
  2035. "__expectedType__": "cc.BitmapFont"
  2036. },
  2037. "_isSystemFontUsed": false,
  2038. "_spacingX": 0,
  2039. "_isItalic": false,
  2040. "_isBold": false,
  2041. "_isUnderline": false,
  2042. "_underlineHeight": 2,
  2043. "_cacheMode": 0,
  2044. "_enableOutline": false,
  2045. "_outlineColor": {
  2046. "__type__": "cc.Color",
  2047. "r": 0,
  2048. "g": 0,
  2049. "b": 0,
  2050. "a": 255
  2051. },
  2052. "_outlineWidth": 2,
  2053. "_enableShadow": false,
  2054. "_shadowColor": {
  2055. "__type__": "cc.Color",
  2056. "r": 0,
  2057. "g": 0,
  2058. "b": 0,
  2059. "a": 255
  2060. },
  2061. "_shadowOffset": {
  2062. "__type__": "cc.Vec2",
  2063. "x": 2,
  2064. "y": 2
  2065. },
  2066. "_shadowBlur": 2,
  2067. "_id": ""
  2068. },
  2069. {
  2070. "__type__": "cc.CompPrefabInfo",
  2071. "fileId": "83tm8aedJCmbLmCWBR0UQF"
  2072. },
  2073. {
  2074. "__type__": "cc.PrefabInfo",
  2075. "root": {
  2076. "__id__": 1
  2077. },
  2078. "asset": {
  2079. "__id__": 0
  2080. },
  2081. "fileId": "09r1WM+VxAgqYJvD9dK7CN",
  2082. "instance": null,
  2083. "targetOverrides": null,
  2084. "nestedPrefabInstanceRoots": null
  2085. },
  2086. {
  2087. "__type__": "cc.Node",
  2088. "_name": "lab_car_name",
  2089. "_objFlags": 0,
  2090. "__editorExtras__": {},
  2091. "_parent": {
  2092. "__id__": 10
  2093. },
  2094. "_children": [],
  2095. "_active": true,
  2096. "_components": [
  2097. {
  2098. "__id__": 86
  2099. },
  2100. {
  2101. "__id__": 88
  2102. }
  2103. ],
  2104. "_prefab": {
  2105. "__id__": 90
  2106. },
  2107. "_lpos": {
  2108. "__type__": "cc.Vec3",
  2109. "x": 0,
  2110. "y": -540.276,
  2111. "z": 0
  2112. },
  2113. "_lrot": {
  2114. "__type__": "cc.Quat",
  2115. "x": 0,
  2116. "y": 0,
  2117. "z": 0,
  2118. "w": 1
  2119. },
  2120. "_lscale": {
  2121. "__type__": "cc.Vec3",
  2122. "x": 1,
  2123. "y": 1,
  2124. "z": 1
  2125. },
  2126. "_mobility": 0,
  2127. "_layer": 33554432,
  2128. "_euler": {
  2129. "__type__": "cc.Vec3",
  2130. "x": 0,
  2131. "y": 0,
  2132. "z": 0
  2133. },
  2134. "_id": ""
  2135. },
  2136. {
  2137. "__type__": "cc.UITransform",
  2138. "_name": "",
  2139. "_objFlags": 0,
  2140. "__editorExtras__": {},
  2141. "node": {
  2142. "__id__": 85
  2143. },
  2144. "_enabled": true,
  2145. "__prefab": {
  2146. "__id__": 87
  2147. },
  2148. "_contentSize": {
  2149. "__type__": "cc.Size",
  2150. "width": 800,
  2151. "height": 60
  2152. },
  2153. "_anchorPoint": {
  2154. "__type__": "cc.Vec2",
  2155. "x": 0.5,
  2156. "y": 0.5
  2157. },
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.CompPrefabInfo",
  2162. "fileId": "25KFvr7rJMTaOONd2Li/xy"
  2163. },
  2164. {
  2165. "__type__": "cc.Label",
  2166. "_name": "",
  2167. "_objFlags": 0,
  2168. "__editorExtras__": {},
  2169. "node": {
  2170. "__id__": 85
  2171. },
  2172. "_enabled": true,
  2173. "__prefab": {
  2174. "__id__": 89
  2175. },
  2176. "_customMaterial": null,
  2177. "_srcBlendFactor": 2,
  2178. "_dstBlendFactor": 4,
  2179. "_color": {
  2180. "__type__": "cc.Color",
  2181. "r": 208,
  2182. "g": 253,
  2183. "b": 254,
  2184. "a": 255
  2185. },
  2186. "_string": "迈凯伦",
  2187. "_horizontalAlign": 1,
  2188. "_verticalAlign": 1,
  2189. "_actualFontSize": 55,
  2190. "_fontSize": 55,
  2191. "_fontFamily": "Arial",
  2192. "_lineHeight": 60,
  2193. "_overflow": 2,
  2194. "_enableWrapText": true,
  2195. "_font": null,
  2196. "_isSystemFontUsed": true,
  2197. "_spacingX": 0,
  2198. "_isItalic": false,
  2199. "_isBold": true,
  2200. "_isUnderline": false,
  2201. "_underlineHeight": 2,
  2202. "_cacheMode": 0,
  2203. "_enableOutline": false,
  2204. "_outlineColor": {
  2205. "__type__": "cc.Color",
  2206. "r": 0,
  2207. "g": 0,
  2208. "b": 0,
  2209. "a": 255
  2210. },
  2211. "_outlineWidth": 2,
  2212. "_enableShadow": false,
  2213. "_shadowColor": {
  2214. "__type__": "cc.Color",
  2215. "r": 0,
  2216. "g": 0,
  2217. "b": 0,
  2218. "a": 255
  2219. },
  2220. "_shadowOffset": {
  2221. "__type__": "cc.Vec2",
  2222. "x": 2,
  2223. "y": 2
  2224. },
  2225. "_shadowBlur": 2,
  2226. "_id": ""
  2227. },
  2228. {
  2229. "__type__": "cc.CompPrefabInfo",
  2230. "fileId": "5bj5+L8b1BbboB9V/RZk+M"
  2231. },
  2232. {
  2233. "__type__": "cc.PrefabInfo",
  2234. "root": {
  2235. "__id__": 1
  2236. },
  2237. "asset": {
  2238. "__id__": 0
  2239. },
  2240. "fileId": "1e33PGkINF0Z+gM8yk1ze7",
  2241. "instance": null,
  2242. "targetOverrides": null,
  2243. "nestedPrefabInstanceRoots": null
  2244. },
  2245. {
  2246. "__type__": "cc.UITransform",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "node": {
  2251. "__id__": 10
  2252. },
  2253. "_enabled": true,
  2254. "__prefab": {
  2255. "__id__": 92
  2256. },
  2257. "_contentSize": {
  2258. "__type__": "cc.Size",
  2259. "width": 1060,
  2260. "height": 1313
  2261. },
  2262. "_anchorPoint": {
  2263. "__type__": "cc.Vec2",
  2264. "x": 0.5,
  2265. "y": 0.5
  2266. },
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.CompPrefabInfo",
  2271. "fileId": "4fvr7Q9h9CZoUPWr3EPz15"
  2272. },
  2273. {
  2274. "__type__": "cc.Sprite",
  2275. "_name": "",
  2276. "_objFlags": 0,
  2277. "__editorExtras__": {},
  2278. "node": {
  2279. "__id__": 10
  2280. },
  2281. "_enabled": true,
  2282. "__prefab": {
  2283. "__id__": 94
  2284. },
  2285. "_customMaterial": null,
  2286. "_srcBlendFactor": 2,
  2287. "_dstBlendFactor": 4,
  2288. "_color": {
  2289. "__type__": "cc.Color",
  2290. "r": 255,
  2291. "g": 255,
  2292. "b": 255,
  2293. "a": 255
  2294. },
  2295. "_spriteFrame": {
  2296. "__uuid__": "98919cbb-068e-4fdc-8bbd-a3387a62c146@f9941",
  2297. "__expectedType__": "cc.SpriteFrame"
  2298. },
  2299. "_type": 0,
  2300. "_fillType": 0,
  2301. "_sizeMode": 0,
  2302. "_fillCenter": {
  2303. "__type__": "cc.Vec2",
  2304. "x": 0,
  2305. "y": 0
  2306. },
  2307. "_fillStart": 0,
  2308. "_fillRange": 0,
  2309. "_isTrimmedMode": true,
  2310. "_useGrayscale": false,
  2311. "_atlas": null,
  2312. "_id": ""
  2313. },
  2314. {
  2315. "__type__": "cc.CompPrefabInfo",
  2316. "fileId": "04cLs0kZ1M3YSD+8pqVsLW"
  2317. },
  2318. {
  2319. "__type__": "cc.PrefabInfo",
  2320. "root": {
  2321. "__id__": 1
  2322. },
  2323. "asset": {
  2324. "__id__": 0
  2325. },
  2326. "fileId": "b84XHdUqBElpcdScNMh6oN",
  2327. "instance": null,
  2328. "targetOverrides": null,
  2329. "nestedPrefabInstanceRoots": null
  2330. },
  2331. {
  2332. "__type__": "cc.Node",
  2333. "_name": "btn_close",
  2334. "_objFlags": 0,
  2335. "__editorExtras__": {},
  2336. "_parent": {
  2337. "__id__": 1
  2338. },
  2339. "_children": [],
  2340. "_active": true,
  2341. "_components": [
  2342. {
  2343. "__id__": 97
  2344. },
  2345. {
  2346. "__id__": 99
  2347. },
  2348. {
  2349. "__id__": 101
  2350. }
  2351. ],
  2352. "_prefab": {
  2353. "__id__": 103
  2354. },
  2355. "_lpos": {
  2356. "__type__": "cc.Vec3",
  2357. "x": 0,
  2358. "y": -654,
  2359. "z": 0
  2360. },
  2361. "_lrot": {
  2362. "__type__": "cc.Quat",
  2363. "x": 0,
  2364. "y": 0,
  2365. "z": 0,
  2366. "w": 1
  2367. },
  2368. "_lscale": {
  2369. "__type__": "cc.Vec3",
  2370. "x": 1,
  2371. "y": 1,
  2372. "z": 1
  2373. },
  2374. "_mobility": 0,
  2375. "_layer": 33554432,
  2376. "_euler": {
  2377. "__type__": "cc.Vec3",
  2378. "x": 0,
  2379. "y": 0,
  2380. "z": 0
  2381. },
  2382. "_id": ""
  2383. },
  2384. {
  2385. "__type__": "cc.UITransform",
  2386. "_name": "",
  2387. "_objFlags": 0,
  2388. "__editorExtras__": {},
  2389. "node": {
  2390. "__id__": 96
  2391. },
  2392. "_enabled": true,
  2393. "__prefab": {
  2394. "__id__": 98
  2395. },
  2396. "_contentSize": {
  2397. "__type__": "cc.Size",
  2398. "width": 99,
  2399. "height": 101
  2400. },
  2401. "_anchorPoint": {
  2402. "__type__": "cc.Vec2",
  2403. "x": 0.5,
  2404. "y": 0.5
  2405. },
  2406. "_id": ""
  2407. },
  2408. {
  2409. "__type__": "cc.CompPrefabInfo",
  2410. "fileId": "76hhd3EolC7o3OwMn3uGZk"
  2411. },
  2412. {
  2413. "__type__": "cc.Sprite",
  2414. "_name": "",
  2415. "_objFlags": 0,
  2416. "__editorExtras__": {},
  2417. "node": {
  2418. "__id__": 96
  2419. },
  2420. "_enabled": true,
  2421. "__prefab": {
  2422. "__id__": 100
  2423. },
  2424. "_customMaterial": null,
  2425. "_srcBlendFactor": 2,
  2426. "_dstBlendFactor": 4,
  2427. "_color": {
  2428. "__type__": "cc.Color",
  2429. "r": 255,
  2430. "g": 255,
  2431. "b": 255,
  2432. "a": 255
  2433. },
  2434. "_spriteFrame": {
  2435. "__uuid__": "da183f68-0bf6-4ff1-98b2-e3ead70f6b96@f9941",
  2436. "__expectedType__": "cc.SpriteFrame"
  2437. },
  2438. "_type": 0,
  2439. "_fillType": 0,
  2440. "_sizeMode": 0,
  2441. "_fillCenter": {
  2442. "__type__": "cc.Vec2",
  2443. "x": 0,
  2444. "y": 0
  2445. },
  2446. "_fillStart": 0,
  2447. "_fillRange": 0,
  2448. "_isTrimmedMode": true,
  2449. "_useGrayscale": false,
  2450. "_atlas": null,
  2451. "_id": ""
  2452. },
  2453. {
  2454. "__type__": "cc.CompPrefabInfo",
  2455. "fileId": "c4OwnU7GNOi66xXRmsf5/a"
  2456. },
  2457. {
  2458. "__type__": "cc.Button",
  2459. "_name": "",
  2460. "_objFlags": 0,
  2461. "__editorExtras__": {},
  2462. "node": {
  2463. "__id__": 96
  2464. },
  2465. "_enabled": true,
  2466. "__prefab": {
  2467. "__id__": 102
  2468. },
  2469. "clickEvents": [],
  2470. "_interactable": true,
  2471. "_transition": 3,
  2472. "_normalColor": {
  2473. "__type__": "cc.Color",
  2474. "r": 255,
  2475. "g": 255,
  2476. "b": 255,
  2477. "a": 255
  2478. },
  2479. "_hoverColor": {
  2480. "__type__": "cc.Color",
  2481. "r": 211,
  2482. "g": 211,
  2483. "b": 211,
  2484. "a": 255
  2485. },
  2486. "_pressedColor": {
  2487. "__type__": "cc.Color",
  2488. "r": 255,
  2489. "g": 255,
  2490. "b": 255,
  2491. "a": 255
  2492. },
  2493. "_disabledColor": {
  2494. "__type__": "cc.Color",
  2495. "r": 124,
  2496. "g": 124,
  2497. "b": 124,
  2498. "a": 255
  2499. },
  2500. "_normalSprite": null,
  2501. "_hoverSprite": null,
  2502. "_pressedSprite": null,
  2503. "_disabledSprite": null,
  2504. "_duration": 0.1,
  2505. "_zoomScale": 0.9,
  2506. "_target": null,
  2507. "_id": ""
  2508. },
  2509. {
  2510. "__type__": "cc.CompPrefabInfo",
  2511. "fileId": "7bgQqjnZBI3pBBsQRql73u"
  2512. },
  2513. {
  2514. "__type__": "cc.PrefabInfo",
  2515. "root": {
  2516. "__id__": 1
  2517. },
  2518. "asset": {
  2519. "__id__": 0
  2520. },
  2521. "fileId": "11E332NQZKjLr5JR3FZ3FG",
  2522. "instance": null,
  2523. "targetOverrides": null,
  2524. "nestedPrefabInstanceRoots": null
  2525. },
  2526. {
  2527. "__type__": "cc.UITransform",
  2528. "_name": "",
  2529. "_objFlags": 0,
  2530. "__editorExtras__": {},
  2531. "node": {
  2532. "__id__": 1
  2533. },
  2534. "_enabled": true,
  2535. "__prefab": {
  2536. "__id__": 105
  2537. },
  2538. "_contentSize": {
  2539. "__type__": "cc.Size",
  2540. "width": 1080,
  2541. "height": 1920.0000000000002
  2542. },
  2543. "_anchorPoint": {
  2544. "__type__": "cc.Vec2",
  2545. "x": 0.5,
  2546. "y": 0.5
  2547. },
  2548. "_id": ""
  2549. },
  2550. {
  2551. "__type__": "cc.CompPrefabInfo",
  2552. "fileId": "314Pl2A4tJeLCpz/m88mMe"
  2553. },
  2554. {
  2555. "__type__": "cc.Widget",
  2556. "_name": "",
  2557. "_objFlags": 0,
  2558. "__editorExtras__": {},
  2559. "node": {
  2560. "__id__": 1
  2561. },
  2562. "_enabled": true,
  2563. "__prefab": {
  2564. "__id__": 107
  2565. },
  2566. "_alignFlags": 45,
  2567. "_target": null,
  2568. "_left": 0,
  2569. "_right": 0,
  2570. "_top": 0,
  2571. "_bottom": 0,
  2572. "_horizontalCenter": 0,
  2573. "_verticalCenter": 0,
  2574. "_isAbsLeft": true,
  2575. "_isAbsRight": true,
  2576. "_isAbsTop": true,
  2577. "_isAbsBottom": true,
  2578. "_isAbsHorizontalCenter": true,
  2579. "_isAbsVerticalCenter": true,
  2580. "_originalWidth": 100,
  2581. "_originalHeight": 100,
  2582. "_alignMode": 2,
  2583. "_lockFlags": 0,
  2584. "_id": ""
  2585. },
  2586. {
  2587. "__type__": "cc.CompPrefabInfo",
  2588. "fileId": "41ofYZtuNAUZV3oXFvPvo5"
  2589. },
  2590. {
  2591. "__type__": "8211dcWp2dIRrPXKp1oJZAK",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "__editorExtras__": {},
  2595. "node": {
  2596. "__id__": 1
  2597. },
  2598. "_enabled": true,
  2599. "__prefab": {
  2600. "__id__": 109
  2601. },
  2602. "btn_close": {
  2603. "__id__": 96
  2604. },
  2605. "img_avatar": {
  2606. "__id__": 13
  2607. },
  2608. "lab_region": {
  2609. "__id__": 37
  2610. },
  2611. "lab_nickname": {
  2612. "__id__": 43
  2613. },
  2614. "img_car": {
  2615. "__id__": 49
  2616. },
  2617. "lab_car_pai": {
  2618. "__id__": 55
  2619. },
  2620. "number_bg": {
  2621. "__id__": 61
  2622. },
  2623. "number_img": {
  2624. "__id__": 68
  2625. },
  2626. "sf_number_rank_1": {
  2627. "__uuid__": "f39fcda1-068d-4b59-b0ff-829ec91dd0be@f9941",
  2628. "__expectedType__": "cc.SpriteFrame"
  2629. },
  2630. "sf_number_rank_2": {
  2631. "__uuid__": "92583dba-4446-4614-a099-91bd054b93fa@f9941",
  2632. "__expectedType__": "cc.SpriteFrame"
  2633. },
  2634. "sf_number_rank_3": {
  2635. "__uuid__": "85450459-fc68-482b-b025-494998f1c88b@f9941",
  2636. "__expectedType__": "cc.SpriteFrame"
  2637. },
  2638. "lab_score": {
  2639. "__id__": 79
  2640. },
  2641. "lab_car_name": {
  2642. "__id__": 85
  2643. },
  2644. "_id": ""
  2645. },
  2646. {
  2647. "__type__": "cc.CompPrefabInfo",
  2648. "fileId": "45A/rwpcpLFb1jKVDIbLDg"
  2649. },
  2650. {
  2651. "__type__": "cc.BlockInputEvents",
  2652. "_name": "",
  2653. "_objFlags": 0,
  2654. "__editorExtras__": {},
  2655. "node": {
  2656. "__id__": 1
  2657. },
  2658. "_enabled": true,
  2659. "__prefab": {
  2660. "__id__": 111
  2661. },
  2662. "_id": ""
  2663. },
  2664. {
  2665. "__type__": "cc.CompPrefabInfo",
  2666. "fileId": "8eJxQGMzVAubJMptc1NYZ3"
  2667. },
  2668. {
  2669. "__type__": "cc.Animation",
  2670. "_name": "",
  2671. "_objFlags": 0,
  2672. "__editorExtras__": {},
  2673. "node": {
  2674. "__id__": 1
  2675. },
  2676. "_enabled": true,
  2677. "__prefab": {
  2678. "__id__": 113
  2679. },
  2680. "playOnLoad": true,
  2681. "_clips": [
  2682. {
  2683. "__uuid__": "2a290986-2f60-4b6c-a9aa-c8dbef477bc7",
  2684. "__expectedType__": "cc.AnimationClip"
  2685. }
  2686. ],
  2687. "_defaultClip": {
  2688. "__uuid__": "2a290986-2f60-4b6c-a9aa-c8dbef477bc7",
  2689. "__expectedType__": "cc.AnimationClip"
  2690. },
  2691. "_id": ""
  2692. },
  2693. {
  2694. "__type__": "cc.CompPrefabInfo",
  2695. "fileId": "c7VYxA1vhOq4Ul6qMyfeRf"
  2696. },
  2697. {
  2698. "__type__": "cc.PrefabInfo",
  2699. "root": {
  2700. "__id__": 1
  2701. },
  2702. "asset": {
  2703. "__id__": 0
  2704. },
  2705. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  2706. "instance": null,
  2707. "targetOverrides": null
  2708. }
  2709. ]