tossBoomerangUI.prefab 50 KB

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