GameBg.prefab 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "GameBg",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "persistent": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "GameBg",
  16. "_objFlags": 0,
  17. "__editorExtras__": {},
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 12
  25. },
  26. {
  27. "__id__": 18
  28. },
  29. {
  30. "__id__": 24
  31. },
  32. {
  33. "__id__": 30
  34. },
  35. {
  36. "__id__": 36
  37. },
  38. {
  39. "__id__": 42
  40. },
  41. {
  42. "__id__": 48
  43. },
  44. {
  45. "__id__": 54
  46. },
  47. {
  48. "__id__": 100
  49. }
  50. ],
  51. "_active": true,
  52. "_components": [
  53. {
  54. "__id__": 149
  55. },
  56. {
  57. "__id__": 151
  58. },
  59. {
  60. "__id__": 153
  61. }
  62. ],
  63. "_prefab": {
  64. "__id__": 155
  65. },
  66. "_lpos": {
  67. "__type__": "cc.Vec3",
  68. "x": 0,
  69. "y": 0,
  70. "z": 0
  71. },
  72. "_lrot": {
  73. "__type__": "cc.Quat",
  74. "x": 0,
  75. "y": 0,
  76. "z": 0,
  77. "w": 1
  78. },
  79. "_lscale": {
  80. "__type__": "cc.Vec3",
  81. "x": 1,
  82. "y": 1,
  83. "z": 1
  84. },
  85. "_mobility": 0,
  86. "_layer": 33554432,
  87. "_euler": {
  88. "__type__": "cc.Vec3",
  89. "x": 0,
  90. "y": 0,
  91. "z": 0
  92. },
  93. "_id": ""
  94. },
  95. {
  96. "__type__": "cc.Node",
  97. "_name": "HammerRoot",
  98. "_objFlags": 0,
  99. "_parent": {
  100. "__id__": 1
  101. },
  102. "_children": [
  103. {
  104. "__id__": 3
  105. }
  106. ],
  107. "_active": false,
  108. "_components": [
  109. {
  110. "__id__": 9
  111. }
  112. ],
  113. "_prefab": {
  114. "__id__": 11
  115. },
  116. "_lpos": {
  117. "__type__": "cc.Vec3",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0
  121. },
  122. "_lrot": {
  123. "__type__": "cc.Quat",
  124. "x": 0,
  125. "y": 0,
  126. "z": 0,
  127. "w": 1
  128. },
  129. "_lscale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_mobility": 0,
  136. "_layer": 33554432,
  137. "_euler": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_id": ""
  144. },
  145. {
  146. "__type__": "cc.Node",
  147. "_name": "Hammer",
  148. "_objFlags": 0,
  149. "_parent": {
  150. "__id__": 2
  151. },
  152. "_children": [],
  153. "_active": true,
  154. "_components": [
  155. {
  156. "__id__": 4
  157. },
  158. {
  159. "__id__": 6
  160. }
  161. ],
  162. "_prefab": {
  163. "__id__": 8
  164. },
  165. "_lpos": {
  166. "__type__": "cc.Vec3",
  167. "x": 59.885,
  168. "y": 55.278,
  169. "z": 0
  170. },
  171. "_lrot": {
  172. "__type__": "cc.Quat",
  173. "x": 0,
  174. "y": 0,
  175. "z": 0,
  176. "w": 1
  177. },
  178. "_lscale": {
  179. "__type__": "cc.Vec3",
  180. "x": 1.5,
  181. "y": 1.5,
  182. "z": 1
  183. },
  184. "_mobility": 0,
  185. "_layer": 33554432,
  186. "_euler": {
  187. "__type__": "cc.Vec3",
  188. "x": 0,
  189. "y": 0,
  190. "z": 0
  191. },
  192. "_id": ""
  193. },
  194. {
  195. "__type__": "cc.UITransform",
  196. "_name": "",
  197. "_objFlags": 0,
  198. "node": {
  199. "__id__": 3
  200. },
  201. "_enabled": true,
  202. "__prefab": {
  203. "__id__": 5
  204. },
  205. "_contentSize": {
  206. "__type__": "cc.Size",
  207. "width": 255,
  208. "height": 172
  209. },
  210. "_anchorPoint": {
  211. "__type__": "cc.Vec2",
  212. "x": 0.5,
  213. "y": 0.5
  214. },
  215. "_id": ""
  216. },
  217. {
  218. "__type__": "cc.CompPrefabInfo",
  219. "fileId": "8btVxwqzJD5ZsSgc2e3/EU"
  220. },
  221. {
  222. "__type__": "cc.Sprite",
  223. "_name": "",
  224. "_objFlags": 0,
  225. "node": {
  226. "__id__": 3
  227. },
  228. "_enabled": true,
  229. "__prefab": {
  230. "__id__": 7
  231. },
  232. "_customMaterial": null,
  233. "_srcBlendFactor": 2,
  234. "_dstBlendFactor": 4,
  235. "_color": {
  236. "__type__": "cc.Color",
  237. "r": 255,
  238. "g": 255,
  239. "b": 255,
  240. "a": 255
  241. },
  242. "_spriteFrame": {
  243. "__uuid__": "6d2b5691-53e7-477a-825d-7344ca857682@f9941",
  244. "__expectedType__": "cc.SpriteFrame"
  245. },
  246. "_type": 0,
  247. "_fillType": 0,
  248. "_sizeMode": 1,
  249. "_fillCenter": {
  250. "__type__": "cc.Vec2",
  251. "x": 0,
  252. "y": 0
  253. },
  254. "_fillStart": 0,
  255. "_fillRange": 0,
  256. "_isTrimmedMode": true,
  257. "_useGrayscale": false,
  258. "_atlas": null,
  259. "_id": ""
  260. },
  261. {
  262. "__type__": "cc.CompPrefabInfo",
  263. "fileId": "a5vhTZUv1AHrqkT1w4F1UU"
  264. },
  265. {
  266. "__type__": "cc.PrefabInfo",
  267. "root": {
  268. "__id__": 1
  269. },
  270. "asset": {
  271. "__id__": 0
  272. },
  273. "fileId": "c2RSCLz4FNFYAxJpLyi/Zg",
  274. "instance": null,
  275. "targetOverrides": null,
  276. "nestedPrefabInstanceRoots": null
  277. },
  278. {
  279. "__type__": "cc.UITransform",
  280. "_name": "",
  281. "_objFlags": 0,
  282. "node": {
  283. "__id__": 2
  284. },
  285. "_enabled": true,
  286. "__prefab": {
  287. "__id__": 10
  288. },
  289. "_contentSize": {
  290. "__type__": "cc.Size",
  291. "width": 100,
  292. "height": 100
  293. },
  294. "_anchorPoint": {
  295. "__type__": "cc.Vec2",
  296. "x": 0.5,
  297. "y": 0.5
  298. },
  299. "_id": ""
  300. },
  301. {
  302. "__type__": "cc.CompPrefabInfo",
  303. "fileId": "3dZrM1tW5DcIvq/BeE/hzb"
  304. },
  305. {
  306. "__type__": "cc.PrefabInfo",
  307. "root": {
  308. "__id__": 1
  309. },
  310. "asset": {
  311. "__id__": 0
  312. },
  313. "fileId": "76aHjX4vVIXbk0Fx4M7Hew",
  314. "instance": null,
  315. "targetOverrides": null,
  316. "nestedPrefabInstanceRoots": null
  317. },
  318. {
  319. "__type__": "cc.Node",
  320. "_name": "women",
  321. "_objFlags": 0,
  322. "_parent": {
  323. "__id__": 1
  324. },
  325. "_children": [],
  326. "_active": true,
  327. "_components": [
  328. {
  329. "__id__": 13
  330. },
  331. {
  332. "__id__": 15
  333. }
  334. ],
  335. "_prefab": {
  336. "__id__": 17
  337. },
  338. "_lpos": {
  339. "__type__": "cc.Vec3",
  340. "x": -531.492,
  341. "y": -351.778,
  342. "z": 0
  343. },
  344. "_lrot": {
  345. "__type__": "cc.Quat",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0,
  349. "w": 1
  350. },
  351. "_lscale": {
  352. "__type__": "cc.Vec3",
  353. "x": 1,
  354. "y": 1,
  355. "z": 1
  356. },
  357. "_mobility": 0,
  358. "_layer": 33554432,
  359. "_euler": {
  360. "__type__": "cc.Vec3",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0
  364. },
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.UITransform",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 12
  373. },
  374. "_enabled": true,
  375. "__prefab": {
  376. "__id__": 14
  377. },
  378. "_contentSize": {
  379. "__type__": "cc.Size",
  380. "width": 315,
  381. "height": 509
  382. },
  383. "_anchorPoint": {
  384. "__type__": "cc.Vec2",
  385. "x": 0.5,
  386. "y": 0.5
  387. },
  388. "_id": ""
  389. },
  390. {
  391. "__type__": "cc.CompPrefabInfo",
  392. "fileId": "a4592PvNZCJKgwvS6iklNo"
  393. },
  394. {
  395. "__type__": "cc.Sprite",
  396. "_name": "",
  397. "_objFlags": 0,
  398. "node": {
  399. "__id__": 12
  400. },
  401. "_enabled": true,
  402. "__prefab": {
  403. "__id__": 16
  404. },
  405. "_customMaterial": null,
  406. "_srcBlendFactor": 2,
  407. "_dstBlendFactor": 4,
  408. "_color": {
  409. "__type__": "cc.Color",
  410. "r": 255,
  411. "g": 255,
  412. "b": 255,
  413. "a": 255
  414. },
  415. "_spriteFrame": {
  416. "__uuid__": "61e89a0f-8565-43c9-85a1-62cfd97d7b6c@f9941",
  417. "__expectedType__": "cc.SpriteFrame"
  418. },
  419. "_type": 0,
  420. "_fillType": 0,
  421. "_sizeMode": 1,
  422. "_fillCenter": {
  423. "__type__": "cc.Vec2",
  424. "x": 0,
  425. "y": 0
  426. },
  427. "_fillStart": 0,
  428. "_fillRange": 0,
  429. "_isTrimmedMode": true,
  430. "_useGrayscale": false,
  431. "_atlas": null,
  432. "_id": ""
  433. },
  434. {
  435. "__type__": "cc.CompPrefabInfo",
  436. "fileId": "b4nGXWWW5GSr31d2XX8Zrr"
  437. },
  438. {
  439. "__type__": "cc.PrefabInfo",
  440. "root": {
  441. "__id__": 1
  442. },
  443. "asset": {
  444. "__id__": 0
  445. },
  446. "fileId": "b8cix/JAlKQ4vJQsbgAQjB",
  447. "instance": null,
  448. "targetOverrides": null,
  449. "nestedPrefabInstanceRoots": null
  450. },
  451. {
  452. "__type__": "cc.Node",
  453. "_name": "pao",
  454. "_objFlags": 0,
  455. "_parent": {
  456. "__id__": 1
  457. },
  458. "_children": [],
  459. "_active": true,
  460. "_components": [
  461. {
  462. "__id__": 19
  463. },
  464. {
  465. "__id__": 21
  466. }
  467. ],
  468. "_prefab": {
  469. "__id__": 23
  470. },
  471. "_lpos": {
  472. "__type__": "cc.Vec3",
  473. "x": -286.776,
  474. "y": 248.54,
  475. "z": 0
  476. },
  477. "_lrot": {
  478. "__type__": "cc.Quat",
  479. "x": 0,
  480. "y": 0,
  481. "z": 0,
  482. "w": 1
  483. },
  484. "_lscale": {
  485. "__type__": "cc.Vec3",
  486. "x": 1,
  487. "y": 1,
  488. "z": 1
  489. },
  490. "_mobility": 0,
  491. "_layer": 33554432,
  492. "_euler": {
  493. "__type__": "cc.Vec3",
  494. "x": 0,
  495. "y": 0,
  496. "z": 0
  497. },
  498. "_id": ""
  499. },
  500. {
  501. "__type__": "cc.UITransform",
  502. "_name": "",
  503. "_objFlags": 0,
  504. "node": {
  505. "__id__": 18
  506. },
  507. "_enabled": true,
  508. "__prefab": {
  509. "__id__": 20
  510. },
  511. "_contentSize": {
  512. "__type__": "cc.Size",
  513. "width": 55,
  514. "height": 58
  515. },
  516. "_anchorPoint": {
  517. "__type__": "cc.Vec2",
  518. "x": 0.5,
  519. "y": 0.5
  520. },
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.CompPrefabInfo",
  525. "fileId": "e9YdxOsZ9P5J28AiITsi4s"
  526. },
  527. {
  528. "__type__": "cc.Sprite",
  529. "_name": "",
  530. "_objFlags": 0,
  531. "node": {
  532. "__id__": 18
  533. },
  534. "_enabled": true,
  535. "__prefab": {
  536. "__id__": 22
  537. },
  538. "_customMaterial": null,
  539. "_srcBlendFactor": 2,
  540. "_dstBlendFactor": 4,
  541. "_color": {
  542. "__type__": "cc.Color",
  543. "r": 255,
  544. "g": 255,
  545. "b": 255,
  546. "a": 255
  547. },
  548. "_spriteFrame": {
  549. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  550. "__expectedType__": "cc.SpriteFrame"
  551. },
  552. "_type": 0,
  553. "_fillType": 0,
  554. "_sizeMode": 1,
  555. "_fillCenter": {
  556. "__type__": "cc.Vec2",
  557. "x": 0,
  558. "y": 0
  559. },
  560. "_fillStart": 0,
  561. "_fillRange": 0,
  562. "_isTrimmedMode": true,
  563. "_useGrayscale": false,
  564. "_atlas": null,
  565. "_id": ""
  566. },
  567. {
  568. "__type__": "cc.CompPrefabInfo",
  569. "fileId": "b3ldnCQflK1bkqprmwq9hT"
  570. },
  571. {
  572. "__type__": "cc.PrefabInfo",
  573. "root": {
  574. "__id__": 1
  575. },
  576. "asset": {
  577. "__id__": 0
  578. },
  579. "fileId": "daGhTAjuRJC5LXVkZRrKoB",
  580. "instance": null,
  581. "targetOverrides": null,
  582. "nestedPrefabInstanceRoots": null
  583. },
  584. {
  585. "__type__": "cc.Node",
  586. "_name": "pao-001",
  587. "_objFlags": 0,
  588. "_parent": {
  589. "__id__": 1
  590. },
  591. "_children": [],
  592. "_active": true,
  593. "_components": [
  594. {
  595. "__id__": 25
  596. },
  597. {
  598. "__id__": 27
  599. }
  600. ],
  601. "_prefab": {
  602. "__id__": 29
  603. },
  604. "_lpos": {
  605. "__type__": "cc.Vec3",
  606. "x": -61.179,
  607. "y": 214.127,
  608. "z": 0
  609. },
  610. "_lrot": {
  611. "__type__": "cc.Quat",
  612. "x": 0,
  613. "y": 0,
  614. "z": 0,
  615. "w": 1
  616. },
  617. "_lscale": {
  618. "__type__": "cc.Vec3",
  619. "x": 1,
  620. "y": 1,
  621. "z": 1
  622. },
  623. "_mobility": 0,
  624. "_layer": 33554432,
  625. "_euler": {
  626. "__type__": "cc.Vec3",
  627. "x": 0,
  628. "y": 0,
  629. "z": 0
  630. },
  631. "_id": ""
  632. },
  633. {
  634. "__type__": "cc.UITransform",
  635. "_name": "",
  636. "_objFlags": 0,
  637. "node": {
  638. "__id__": 24
  639. },
  640. "_enabled": true,
  641. "__prefab": {
  642. "__id__": 26
  643. },
  644. "_contentSize": {
  645. "__type__": "cc.Size",
  646. "width": 55,
  647. "height": 58
  648. },
  649. "_anchorPoint": {
  650. "__type__": "cc.Vec2",
  651. "x": 0.5,
  652. "y": 0.5
  653. },
  654. "_id": ""
  655. },
  656. {
  657. "__type__": "cc.CompPrefabInfo",
  658. "fileId": "76u0sbHK9ClqaKRCmIMNa8"
  659. },
  660. {
  661. "__type__": "cc.Sprite",
  662. "_name": "",
  663. "_objFlags": 0,
  664. "node": {
  665. "__id__": 24
  666. },
  667. "_enabled": true,
  668. "__prefab": {
  669. "__id__": 28
  670. },
  671. "_customMaterial": null,
  672. "_srcBlendFactor": 2,
  673. "_dstBlendFactor": 4,
  674. "_color": {
  675. "__type__": "cc.Color",
  676. "r": 255,
  677. "g": 255,
  678. "b": 255,
  679. "a": 255
  680. },
  681. "_spriteFrame": {
  682. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  683. "__expectedType__": "cc.SpriteFrame"
  684. },
  685. "_type": 0,
  686. "_fillType": 0,
  687. "_sizeMode": 1,
  688. "_fillCenter": {
  689. "__type__": "cc.Vec2",
  690. "x": 0,
  691. "y": 0
  692. },
  693. "_fillStart": 0,
  694. "_fillRange": 0,
  695. "_isTrimmedMode": true,
  696. "_useGrayscale": false,
  697. "_atlas": null,
  698. "_id": ""
  699. },
  700. {
  701. "__type__": "cc.CompPrefabInfo",
  702. "fileId": "1dc94Vrt9Cc4/4IC7Y7e4V"
  703. },
  704. {
  705. "__type__": "cc.PrefabInfo",
  706. "root": {
  707. "__id__": 1
  708. },
  709. "asset": {
  710. "__id__": 0
  711. },
  712. "fileId": "1b1A2pa3BIyoqkNGVVMJjX",
  713. "instance": null,
  714. "targetOverrides": null,
  715. "nestedPrefabInstanceRoots": null
  716. },
  717. {
  718. "__type__": "cc.Node",
  719. "_name": "pao-002",
  720. "_objFlags": 0,
  721. "_parent": {
  722. "__id__": 1
  723. },
  724. "_children": [],
  725. "_active": true,
  726. "_components": [
  727. {
  728. "__id__": 31
  729. },
  730. {
  731. "__id__": 33
  732. }
  733. ],
  734. "_prefab": {
  735. "__id__": 35
  736. },
  737. "_lpos": {
  738. "__type__": "cc.Vec3",
  739. "x": -240.892,
  740. "y": -15.294,
  741. "z": 0
  742. },
  743. "_lrot": {
  744. "__type__": "cc.Quat",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0,
  748. "w": 1
  749. },
  750. "_lscale": {
  751. "__type__": "cc.Vec3",
  752. "x": 1,
  753. "y": 1,
  754. "z": 1
  755. },
  756. "_mobility": 0,
  757. "_layer": 33554432,
  758. "_euler": {
  759. "__type__": "cc.Vec3",
  760. "x": 0,
  761. "y": 0,
  762. "z": 0
  763. },
  764. "_id": ""
  765. },
  766. {
  767. "__type__": "cc.UITransform",
  768. "_name": "",
  769. "_objFlags": 0,
  770. "node": {
  771. "__id__": 30
  772. },
  773. "_enabled": true,
  774. "__prefab": {
  775. "__id__": 32
  776. },
  777. "_contentSize": {
  778. "__type__": "cc.Size",
  779. "width": 55,
  780. "height": 58
  781. },
  782. "_anchorPoint": {
  783. "__type__": "cc.Vec2",
  784. "x": 0.5,
  785. "y": 0.5
  786. },
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.CompPrefabInfo",
  791. "fileId": "2aq3DRVDtDbLTtIICYA28Y"
  792. },
  793. {
  794. "__type__": "cc.Sprite",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "node": {
  798. "__id__": 30
  799. },
  800. "_enabled": true,
  801. "__prefab": {
  802. "__id__": 34
  803. },
  804. "_customMaterial": null,
  805. "_srcBlendFactor": 2,
  806. "_dstBlendFactor": 4,
  807. "_color": {
  808. "__type__": "cc.Color",
  809. "r": 255,
  810. "g": 255,
  811. "b": 255,
  812. "a": 255
  813. },
  814. "_spriteFrame": {
  815. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  816. "__expectedType__": "cc.SpriteFrame"
  817. },
  818. "_type": 0,
  819. "_fillType": 0,
  820. "_sizeMode": 1,
  821. "_fillCenter": {
  822. "__type__": "cc.Vec2",
  823. "x": 0,
  824. "y": 0
  825. },
  826. "_fillStart": 0,
  827. "_fillRange": 0,
  828. "_isTrimmedMode": true,
  829. "_useGrayscale": false,
  830. "_atlas": null,
  831. "_id": ""
  832. },
  833. {
  834. "__type__": "cc.CompPrefabInfo",
  835. "fileId": "efTieQhlpEapnCLxyK2wq/"
  836. },
  837. {
  838. "__type__": "cc.PrefabInfo",
  839. "root": {
  840. "__id__": 1
  841. },
  842. "asset": {
  843. "__id__": 0
  844. },
  845. "fileId": "a6p92Q18VJLrL0PzEFB8u0",
  846. "instance": null,
  847. "targetOverrides": null,
  848. "nestedPrefabInstanceRoots": null
  849. },
  850. {
  851. "__type__": "cc.Node",
  852. "_name": "pao-003",
  853. "_objFlags": 0,
  854. "_parent": {
  855. "__id__": 1
  856. },
  857. "_children": [],
  858. "_active": true,
  859. "_components": [
  860. {
  861. "__id__": 37
  862. },
  863. {
  864. "__id__": 39
  865. }
  866. ],
  867. "_prefab": {
  868. "__id__": 41
  869. },
  870. "_lpos": {
  871. "__type__": "cc.Vec3",
  872. "x": 252.363,
  873. "y": 240.893,
  874. "z": 0
  875. },
  876. "_lrot": {
  877. "__type__": "cc.Quat",
  878. "x": 0,
  879. "y": 0,
  880. "z": 0,
  881. "w": 1
  882. },
  883. "_lscale": {
  884. "__type__": "cc.Vec3",
  885. "x": 1,
  886. "y": 1,
  887. "z": 1
  888. },
  889. "_mobility": 0,
  890. "_layer": 33554432,
  891. "_euler": {
  892. "__type__": "cc.Vec3",
  893. "x": 0,
  894. "y": 0,
  895. "z": 0
  896. },
  897. "_id": ""
  898. },
  899. {
  900. "__type__": "cc.UITransform",
  901. "_name": "",
  902. "_objFlags": 0,
  903. "node": {
  904. "__id__": 36
  905. },
  906. "_enabled": true,
  907. "__prefab": {
  908. "__id__": 38
  909. },
  910. "_contentSize": {
  911. "__type__": "cc.Size",
  912. "width": 55,
  913. "height": 58
  914. },
  915. "_anchorPoint": {
  916. "__type__": "cc.Vec2",
  917. "x": 0.5,
  918. "y": 0.5
  919. },
  920. "_id": ""
  921. },
  922. {
  923. "__type__": "cc.CompPrefabInfo",
  924. "fileId": "58K1gpkbFI1Y1Kli1C6r0C"
  925. },
  926. {
  927. "__type__": "cc.Sprite",
  928. "_name": "",
  929. "_objFlags": 0,
  930. "node": {
  931. "__id__": 36
  932. },
  933. "_enabled": true,
  934. "__prefab": {
  935. "__id__": 40
  936. },
  937. "_customMaterial": null,
  938. "_srcBlendFactor": 2,
  939. "_dstBlendFactor": 4,
  940. "_color": {
  941. "__type__": "cc.Color",
  942. "r": 255,
  943. "g": 255,
  944. "b": 255,
  945. "a": 255
  946. },
  947. "_spriteFrame": {
  948. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  949. "__expectedType__": "cc.SpriteFrame"
  950. },
  951. "_type": 0,
  952. "_fillType": 0,
  953. "_sizeMode": 1,
  954. "_fillCenter": {
  955. "__type__": "cc.Vec2",
  956. "x": 0,
  957. "y": 0
  958. },
  959. "_fillStart": 0,
  960. "_fillRange": 0,
  961. "_isTrimmedMode": true,
  962. "_useGrayscale": false,
  963. "_atlas": null,
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.CompPrefabInfo",
  968. "fileId": "d2nhg3KjdM+a9sZpxVttfb"
  969. },
  970. {
  971. "__type__": "cc.PrefabInfo",
  972. "root": {
  973. "__id__": 1
  974. },
  975. "asset": {
  976. "__id__": 0
  977. },
  978. "fileId": "e8dZq+1nVFL4Agc6k8Vxud",
  979. "instance": null,
  980. "targetOverrides": null,
  981. "nestedPrefabInstanceRoots": null
  982. },
  983. {
  984. "__type__": "cc.Node",
  985. "_name": "pao-004",
  986. "_objFlags": 0,
  987. "_parent": {
  988. "__id__": 1
  989. },
  990. "_children": [],
  991. "_active": true,
  992. "_components": [
  993. {
  994. "__id__": 43
  995. },
  996. {
  997. "__id__": 45
  998. }
  999. ],
  1000. "_prefab": {
  1001. "__id__": 47
  1002. },
  1003. "_lpos": {
  1004. "__type__": "cc.Vec3",
  1005. "x": 84.121,
  1006. "y": -26.765,
  1007. "z": 0
  1008. },
  1009. "_lrot": {
  1010. "__type__": "cc.Quat",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0,
  1014. "w": 1
  1015. },
  1016. "_lscale": {
  1017. "__type__": "cc.Vec3",
  1018. "x": 1,
  1019. "y": 1,
  1020. "z": 1
  1021. },
  1022. "_mobility": 0,
  1023. "_layer": 33554432,
  1024. "_euler": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 0,
  1027. "y": 0,
  1028. "z": 0
  1029. },
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.UITransform",
  1034. "_name": "",
  1035. "_objFlags": 0,
  1036. "node": {
  1037. "__id__": 42
  1038. },
  1039. "_enabled": true,
  1040. "__prefab": {
  1041. "__id__": 44
  1042. },
  1043. "_contentSize": {
  1044. "__type__": "cc.Size",
  1045. "width": 55,
  1046. "height": 58
  1047. },
  1048. "_anchorPoint": {
  1049. "__type__": "cc.Vec2",
  1050. "x": 0.5,
  1051. "y": 0.5
  1052. },
  1053. "_id": ""
  1054. },
  1055. {
  1056. "__type__": "cc.CompPrefabInfo",
  1057. "fileId": "89NF0BdUpDpLmFZr6xZ1Z9"
  1058. },
  1059. {
  1060. "__type__": "cc.Sprite",
  1061. "_name": "",
  1062. "_objFlags": 0,
  1063. "node": {
  1064. "__id__": 42
  1065. },
  1066. "_enabled": true,
  1067. "__prefab": {
  1068. "__id__": 46
  1069. },
  1070. "_customMaterial": null,
  1071. "_srcBlendFactor": 2,
  1072. "_dstBlendFactor": 4,
  1073. "_color": {
  1074. "__type__": "cc.Color",
  1075. "r": 255,
  1076. "g": 255,
  1077. "b": 255,
  1078. "a": 255
  1079. },
  1080. "_spriteFrame": {
  1081. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1082. "__expectedType__": "cc.SpriteFrame"
  1083. },
  1084. "_type": 0,
  1085. "_fillType": 0,
  1086. "_sizeMode": 1,
  1087. "_fillCenter": {
  1088. "__type__": "cc.Vec2",
  1089. "x": 0,
  1090. "y": 0
  1091. },
  1092. "_fillStart": 0,
  1093. "_fillRange": 0,
  1094. "_isTrimmedMode": true,
  1095. "_useGrayscale": false,
  1096. "_atlas": null,
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.CompPrefabInfo",
  1101. "fileId": "7fzqtoAgNJTIaAUQbieTtb"
  1102. },
  1103. {
  1104. "__type__": "cc.PrefabInfo",
  1105. "root": {
  1106. "__id__": 1
  1107. },
  1108. "asset": {
  1109. "__id__": 0
  1110. },
  1111. "fileId": "aeaStOx39Av4fQ/3TUTykk",
  1112. "instance": null,
  1113. "targetOverrides": null,
  1114. "nestedPrefabInstanceRoots": null
  1115. },
  1116. {
  1117. "__type__": "cc.Node",
  1118. "_name": "pao-005",
  1119. "_objFlags": 0,
  1120. "_parent": {
  1121. "__id__": 1
  1122. },
  1123. "_children": [],
  1124. "_active": true,
  1125. "_components": [
  1126. {
  1127. "__id__": 49
  1128. },
  1129. {
  1130. "__id__": 51
  1131. }
  1132. ],
  1133. "_prefab": {
  1134. "__id__": 53
  1135. },
  1136. "_lpos": {
  1137. "__type__": "cc.Vec3",
  1138. "x": 401.487,
  1139. "y": -49.707,
  1140. "z": 0
  1141. },
  1142. "_lrot": {
  1143. "__type__": "cc.Quat",
  1144. "x": 0,
  1145. "y": 0,
  1146. "z": 0,
  1147. "w": 1
  1148. },
  1149. "_lscale": {
  1150. "__type__": "cc.Vec3",
  1151. "x": 1,
  1152. "y": 1,
  1153. "z": 1
  1154. },
  1155. "_mobility": 0,
  1156. "_layer": 33554432,
  1157. "_euler": {
  1158. "__type__": "cc.Vec3",
  1159. "x": 0,
  1160. "y": 0,
  1161. "z": 0
  1162. },
  1163. "_id": ""
  1164. },
  1165. {
  1166. "__type__": "cc.UITransform",
  1167. "_name": "",
  1168. "_objFlags": 0,
  1169. "node": {
  1170. "__id__": 48
  1171. },
  1172. "_enabled": true,
  1173. "__prefab": {
  1174. "__id__": 50
  1175. },
  1176. "_contentSize": {
  1177. "__type__": "cc.Size",
  1178. "width": 55,
  1179. "height": 58
  1180. },
  1181. "_anchorPoint": {
  1182. "__type__": "cc.Vec2",
  1183. "x": 0.5,
  1184. "y": 0.5
  1185. },
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.CompPrefabInfo",
  1190. "fileId": "d7TgjwathHWKZ1ZXUOU200"
  1191. },
  1192. {
  1193. "__type__": "cc.Sprite",
  1194. "_name": "",
  1195. "_objFlags": 0,
  1196. "node": {
  1197. "__id__": 48
  1198. },
  1199. "_enabled": true,
  1200. "__prefab": {
  1201. "__id__": 52
  1202. },
  1203. "_customMaterial": null,
  1204. "_srcBlendFactor": 2,
  1205. "_dstBlendFactor": 4,
  1206. "_color": {
  1207. "__type__": "cc.Color",
  1208. "r": 255,
  1209. "g": 255,
  1210. "b": 255,
  1211. "a": 255
  1212. },
  1213. "_spriteFrame": {
  1214. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1215. "__expectedType__": "cc.SpriteFrame"
  1216. },
  1217. "_type": 0,
  1218. "_fillType": 0,
  1219. "_sizeMode": 1,
  1220. "_fillCenter": {
  1221. "__type__": "cc.Vec2",
  1222. "x": 0,
  1223. "y": 0
  1224. },
  1225. "_fillStart": 0,
  1226. "_fillRange": 0,
  1227. "_isTrimmedMode": true,
  1228. "_useGrayscale": false,
  1229. "_atlas": null,
  1230. "_id": ""
  1231. },
  1232. {
  1233. "__type__": "cc.CompPrefabInfo",
  1234. "fileId": "bbJnIhHqRENKRdBM+5jv9v"
  1235. },
  1236. {
  1237. "__type__": "cc.PrefabInfo",
  1238. "root": {
  1239. "__id__": 1
  1240. },
  1241. "asset": {
  1242. "__id__": 0
  1243. },
  1244. "fileId": "63kQo0y1BCU5lNByrV6sUR",
  1245. "instance": null,
  1246. "targetOverrides": null,
  1247. "nestedPrefabInstanceRoots": null
  1248. },
  1249. {
  1250. "__type__": "cc.Node",
  1251. "_name": "fishNode",
  1252. "_objFlags": 0,
  1253. "_parent": {
  1254. "__id__": 1
  1255. },
  1256. "_children": [
  1257. {
  1258. "__id__": 55
  1259. },
  1260. {
  1261. "__id__": 61
  1262. },
  1263. {
  1264. "__id__": 67
  1265. },
  1266. {
  1267. "__id__": 73
  1268. },
  1269. {
  1270. "__id__": 79
  1271. },
  1272. {
  1273. "__id__": 85
  1274. },
  1275. {
  1276. "__id__": 91
  1277. }
  1278. ],
  1279. "_active": true,
  1280. "_components": [
  1281. {
  1282. "__id__": 97
  1283. }
  1284. ],
  1285. "_prefab": {
  1286. "__id__": 99
  1287. },
  1288. "_lpos": {
  1289. "__type__": "cc.Vec3",
  1290. "x": 1066,
  1291. "y": 0,
  1292. "z": 0
  1293. },
  1294. "_lrot": {
  1295. "__type__": "cc.Quat",
  1296. "x": 0,
  1297. "y": 0,
  1298. "z": 0,
  1299. "w": 1
  1300. },
  1301. "_lscale": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 1,
  1304. "y": 1,
  1305. "z": 1
  1306. },
  1307. "_mobility": 0,
  1308. "_layer": 33554432,
  1309. "_euler": {
  1310. "__type__": "cc.Vec3",
  1311. "x": 0,
  1312. "y": 0,
  1313. "z": 0
  1314. },
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.Node",
  1319. "_name": "fish",
  1320. "_objFlags": 0,
  1321. "_parent": {
  1322. "__id__": 54
  1323. },
  1324. "_children": [],
  1325. "_active": true,
  1326. "_components": [
  1327. {
  1328. "__id__": 56
  1329. },
  1330. {
  1331. "__id__": 58
  1332. }
  1333. ],
  1334. "_prefab": {
  1335. "__id__": 60
  1336. },
  1337. "_lpos": {
  1338. "__type__": "cc.Vec3",
  1339. "x": -152.948,
  1340. "y": 152.947,
  1341. "z": 0
  1342. },
  1343. "_lrot": {
  1344. "__type__": "cc.Quat",
  1345. "x": 0,
  1346. "y": 0,
  1347. "z": 0,
  1348. "w": 1
  1349. },
  1350. "_lscale": {
  1351. "__type__": "cc.Vec3",
  1352. "x": 1,
  1353. "y": 1,
  1354. "z": 1
  1355. },
  1356. "_mobility": 0,
  1357. "_layer": 33554432,
  1358. "_euler": {
  1359. "__type__": "cc.Vec3",
  1360. "x": 0,
  1361. "y": 0,
  1362. "z": 0
  1363. },
  1364. "_id": ""
  1365. },
  1366. {
  1367. "__type__": "cc.UITransform",
  1368. "_name": "",
  1369. "_objFlags": 0,
  1370. "node": {
  1371. "__id__": 55
  1372. },
  1373. "_enabled": true,
  1374. "__prefab": {
  1375. "__id__": 57
  1376. },
  1377. "_contentSize": {
  1378. "__type__": "cc.Size",
  1379. "width": 242,
  1380. "height": 194
  1381. },
  1382. "_anchorPoint": {
  1383. "__type__": "cc.Vec2",
  1384. "x": 0.5,
  1385. "y": 0.5
  1386. },
  1387. "_id": ""
  1388. },
  1389. {
  1390. "__type__": "cc.CompPrefabInfo",
  1391. "fileId": "54O/NzBFZLH70pwEJhJhDZ"
  1392. },
  1393. {
  1394. "__type__": "cc.Sprite",
  1395. "_name": "",
  1396. "_objFlags": 0,
  1397. "node": {
  1398. "__id__": 55
  1399. },
  1400. "_enabled": true,
  1401. "__prefab": {
  1402. "__id__": 59
  1403. },
  1404. "_customMaterial": null,
  1405. "_srcBlendFactor": 2,
  1406. "_dstBlendFactor": 4,
  1407. "_color": {
  1408. "__type__": "cc.Color",
  1409. "r": 255,
  1410. "g": 255,
  1411. "b": 255,
  1412. "a": 255
  1413. },
  1414. "_spriteFrame": {
  1415. "__uuid__": "d309e3da-b829-478d-9286-cfa03a2c0e7b@f9941",
  1416. "__expectedType__": "cc.SpriteFrame"
  1417. },
  1418. "_type": 0,
  1419. "_fillType": 0,
  1420. "_sizeMode": 1,
  1421. "_fillCenter": {
  1422. "__type__": "cc.Vec2",
  1423. "x": 0,
  1424. "y": 0
  1425. },
  1426. "_fillStart": 0,
  1427. "_fillRange": 0,
  1428. "_isTrimmedMode": true,
  1429. "_useGrayscale": false,
  1430. "_atlas": null,
  1431. "_id": ""
  1432. },
  1433. {
  1434. "__type__": "cc.CompPrefabInfo",
  1435. "fileId": "28hzIi0CxHB4wxNuaSTkSh"
  1436. },
  1437. {
  1438. "__type__": "cc.PrefabInfo",
  1439. "root": {
  1440. "__id__": 1
  1441. },
  1442. "asset": {
  1443. "__id__": 0
  1444. },
  1445. "fileId": "7cOTHJ8RtDJLXZ6O+xyO4b",
  1446. "instance": null,
  1447. "targetOverrides": null,
  1448. "nestedPrefabInstanceRoots": null
  1449. },
  1450. {
  1451. "__type__": "cc.Node",
  1452. "_name": "fish-001",
  1453. "_objFlags": 0,
  1454. "_parent": {
  1455. "__id__": 54
  1456. },
  1457. "_children": [],
  1458. "_active": true,
  1459. "_components": [
  1460. {
  1461. "__id__": 62
  1462. },
  1463. {
  1464. "__id__": 64
  1465. }
  1466. ],
  1467. "_prefab": {
  1468. "__id__": 66
  1469. },
  1470. "_lpos": {
  1471. "__type__": "cc.Vec3",
  1472. "x": 7.648,
  1473. "y": 435.899,
  1474. "z": 0
  1475. },
  1476. "_lrot": {
  1477. "__type__": "cc.Quat",
  1478. "x": 0,
  1479. "y": 0,
  1480. "z": 0,
  1481. "w": 1
  1482. },
  1483. "_lscale": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 1,
  1486. "y": 1,
  1487. "z": 1
  1488. },
  1489. "_mobility": 0,
  1490. "_layer": 33554432,
  1491. "_euler": {
  1492. "__type__": "cc.Vec3",
  1493. "x": 0,
  1494. "y": 0,
  1495. "z": 0
  1496. },
  1497. "_id": ""
  1498. },
  1499. {
  1500. "__type__": "cc.UITransform",
  1501. "_name": "",
  1502. "_objFlags": 0,
  1503. "node": {
  1504. "__id__": 61
  1505. },
  1506. "_enabled": true,
  1507. "__prefab": {
  1508. "__id__": 63
  1509. },
  1510. "_contentSize": {
  1511. "__type__": "cc.Size",
  1512. "width": 237,
  1513. "height": 163
  1514. },
  1515. "_anchorPoint": {
  1516. "__type__": "cc.Vec2",
  1517. "x": 0.5,
  1518. "y": 0.5
  1519. },
  1520. "_id": ""
  1521. },
  1522. {
  1523. "__type__": "cc.CompPrefabInfo",
  1524. "fileId": "91dRrUuiRLDK5whBDrgw9P"
  1525. },
  1526. {
  1527. "__type__": "cc.Sprite",
  1528. "_name": "",
  1529. "_objFlags": 0,
  1530. "node": {
  1531. "__id__": 61
  1532. },
  1533. "_enabled": true,
  1534. "__prefab": {
  1535. "__id__": 65
  1536. },
  1537. "_customMaterial": null,
  1538. "_srcBlendFactor": 2,
  1539. "_dstBlendFactor": 4,
  1540. "_color": {
  1541. "__type__": "cc.Color",
  1542. "r": 255,
  1543. "g": 255,
  1544. "b": 255,
  1545. "a": 255
  1546. },
  1547. "_spriteFrame": {
  1548. "__uuid__": "5e85a591-67df-4f39-b9b8-78b8ffc9d25c@f9941",
  1549. "__expectedType__": "cc.SpriteFrame"
  1550. },
  1551. "_type": 0,
  1552. "_fillType": 0,
  1553. "_sizeMode": 1,
  1554. "_fillCenter": {
  1555. "__type__": "cc.Vec2",
  1556. "x": 0,
  1557. "y": 0
  1558. },
  1559. "_fillStart": 0,
  1560. "_fillRange": 0,
  1561. "_isTrimmedMode": true,
  1562. "_useGrayscale": false,
  1563. "_atlas": null,
  1564. "_id": ""
  1565. },
  1566. {
  1567. "__type__": "cc.CompPrefabInfo",
  1568. "fileId": "59LYcyv5JHTYm/osr9xBqi"
  1569. },
  1570. {
  1571. "__type__": "cc.PrefabInfo",
  1572. "root": {
  1573. "__id__": 1
  1574. },
  1575. "asset": {
  1576. "__id__": 0
  1577. },
  1578. "fileId": "47N8BePuxFs70dkwxAAXbF",
  1579. "instance": null,
  1580. "targetOverrides": null,
  1581. "nestedPrefabInstanceRoots": null
  1582. },
  1583. {
  1584. "__type__": "cc.Node",
  1585. "_name": "fish-002",
  1586. "_objFlags": 0,
  1587. "_parent": {
  1588. "__id__": 54
  1589. },
  1590. "_children": [],
  1591. "_active": true,
  1592. "_components": [
  1593. {
  1594. "__id__": 68
  1595. },
  1596. {
  1597. "__id__": 70
  1598. }
  1599. ],
  1600. "_prefab": {
  1601. "__id__": 72
  1602. },
  1603. "_lpos": {
  1604. "__type__": "cc.Vec3",
  1605. "x": 7.648,
  1606. "y": -175.889,
  1607. "z": 0
  1608. },
  1609. "_lrot": {
  1610. "__type__": "cc.Quat",
  1611. "x": 0,
  1612. "y": 0,
  1613. "z": 0,
  1614. "w": 1
  1615. },
  1616. "_lscale": {
  1617. "__type__": "cc.Vec3",
  1618. "x": 1,
  1619. "y": 1,
  1620. "z": 1
  1621. },
  1622. "_mobility": 0,
  1623. "_layer": 33554432,
  1624. "_euler": {
  1625. "__type__": "cc.Vec3",
  1626. "x": 0,
  1627. "y": 0,
  1628. "z": 0
  1629. },
  1630. "_id": ""
  1631. },
  1632. {
  1633. "__type__": "cc.UITransform",
  1634. "_name": "",
  1635. "_objFlags": 0,
  1636. "node": {
  1637. "__id__": 67
  1638. },
  1639. "_enabled": true,
  1640. "__prefab": {
  1641. "__id__": 69
  1642. },
  1643. "_contentSize": {
  1644. "__type__": "cc.Size",
  1645. "width": 245,
  1646. "height": 277
  1647. },
  1648. "_anchorPoint": {
  1649. "__type__": "cc.Vec2",
  1650. "x": 0.5,
  1651. "y": 0.5
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.CompPrefabInfo",
  1657. "fileId": "92fYwbVI1NVIDjiLoR7oBm"
  1658. },
  1659. {
  1660. "__type__": "cc.Sprite",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "node": {
  1664. "__id__": 67
  1665. },
  1666. "_enabled": true,
  1667. "__prefab": {
  1668. "__id__": 71
  1669. },
  1670. "_customMaterial": null,
  1671. "_srcBlendFactor": 2,
  1672. "_dstBlendFactor": 4,
  1673. "_color": {
  1674. "__type__": "cc.Color",
  1675. "r": 255,
  1676. "g": 255,
  1677. "b": 255,
  1678. "a": 255
  1679. },
  1680. "_spriteFrame": {
  1681. "__uuid__": "8651921e-2e78-427c-8a2c-819dbc9b395f@f9941",
  1682. "__expectedType__": "cc.SpriteFrame"
  1683. },
  1684. "_type": 0,
  1685. "_fillType": 0,
  1686. "_sizeMode": 1,
  1687. "_fillCenter": {
  1688. "__type__": "cc.Vec2",
  1689. "x": 0,
  1690. "y": 0
  1691. },
  1692. "_fillStart": 0,
  1693. "_fillRange": 0,
  1694. "_isTrimmedMode": true,
  1695. "_useGrayscale": false,
  1696. "_atlas": null,
  1697. "_id": ""
  1698. },
  1699. {
  1700. "__type__": "cc.CompPrefabInfo",
  1701. "fileId": "04HCzqK6BERIk9yljqJeiq"
  1702. },
  1703. {
  1704. "__type__": "cc.PrefabInfo",
  1705. "root": {
  1706. "__id__": 1
  1707. },
  1708. "asset": {
  1709. "__id__": 0
  1710. },
  1711. "fileId": "15oLoR4nRKk7BHaKvdcAUk",
  1712. "instance": null,
  1713. "targetOverrides": null,
  1714. "nestedPrefabInstanceRoots": null
  1715. },
  1716. {
  1717. "__type__": "cc.Node",
  1718. "_name": "fish-003",
  1719. "_objFlags": 0,
  1720. "_parent": {
  1721. "__id__": 54
  1722. },
  1723. "_children": [],
  1724. "_active": true,
  1725. "_components": [
  1726. {
  1727. "__id__": 74
  1728. },
  1729. {
  1730. "__id__": 76
  1731. }
  1732. ],
  1733. "_prefab": {
  1734. "__id__": 78
  1735. },
  1736. "_lpos": {
  1737. "__type__": "cc.Vec3",
  1738. "x": 332.661,
  1739. "y": 210.303,
  1740. "z": 0
  1741. },
  1742. "_lrot": {
  1743. "__type__": "cc.Quat",
  1744. "x": 0,
  1745. "y": 0,
  1746. "z": 0,
  1747. "w": 1
  1748. },
  1749. "_lscale": {
  1750. "__type__": "cc.Vec3",
  1751. "x": 1,
  1752. "y": 1,
  1753. "z": 1
  1754. },
  1755. "_mobility": 0,
  1756. "_layer": 33554432,
  1757. "_euler": {
  1758. "__type__": "cc.Vec3",
  1759. "x": 0,
  1760. "y": 0,
  1761. "z": 0
  1762. },
  1763. "_id": ""
  1764. },
  1765. {
  1766. "__type__": "cc.UITransform",
  1767. "_name": "",
  1768. "_objFlags": 0,
  1769. "node": {
  1770. "__id__": 73
  1771. },
  1772. "_enabled": true,
  1773. "__prefab": {
  1774. "__id__": 75
  1775. },
  1776. "_contentSize": {
  1777. "__type__": "cc.Size",
  1778. "width": 237,
  1779. "height": 163
  1780. },
  1781. "_anchorPoint": {
  1782. "__type__": "cc.Vec2",
  1783. "x": 0.5,
  1784. "y": 0.5
  1785. },
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.CompPrefabInfo",
  1790. "fileId": "e8PyfrAoNGOa4w8rfZbQ/I"
  1791. },
  1792. {
  1793. "__type__": "cc.Sprite",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "node": {
  1797. "__id__": 73
  1798. },
  1799. "_enabled": true,
  1800. "__prefab": {
  1801. "__id__": 77
  1802. },
  1803. "_customMaterial": null,
  1804. "_srcBlendFactor": 2,
  1805. "_dstBlendFactor": 4,
  1806. "_color": {
  1807. "__type__": "cc.Color",
  1808. "r": 255,
  1809. "g": 255,
  1810. "b": 255,
  1811. "a": 255
  1812. },
  1813. "_spriteFrame": {
  1814. "__uuid__": "5e85a591-67df-4f39-b9b8-78b8ffc9d25c@f9941",
  1815. "__expectedType__": "cc.SpriteFrame"
  1816. },
  1817. "_type": 0,
  1818. "_fillType": 0,
  1819. "_sizeMode": 1,
  1820. "_fillCenter": {
  1821. "__type__": "cc.Vec2",
  1822. "x": 0,
  1823. "y": 0
  1824. },
  1825. "_fillStart": 0,
  1826. "_fillRange": 0,
  1827. "_isTrimmedMode": true,
  1828. "_useGrayscale": false,
  1829. "_atlas": null,
  1830. "_id": ""
  1831. },
  1832. {
  1833. "__type__": "cc.CompPrefabInfo",
  1834. "fileId": "21QLYWdV9CtolanILElB8T"
  1835. },
  1836. {
  1837. "__type__": "cc.PrefabInfo",
  1838. "root": {
  1839. "__id__": 1
  1840. },
  1841. "asset": {
  1842. "__id__": 0
  1843. },
  1844. "fileId": "4bVWoKAP1Mzpe1e3i8cHHd",
  1845. "instance": null,
  1846. "targetOverrides": null,
  1847. "nestedPrefabInstanceRoots": null
  1848. },
  1849. {
  1850. "__type__": "cc.Node",
  1851. "_name": "fish-004",
  1852. "_objFlags": 0,
  1853. "_parent": {
  1854. "__id__": 54
  1855. },
  1856. "_children": [],
  1857. "_active": true,
  1858. "_components": [
  1859. {
  1860. "__id__": 80
  1861. },
  1862. {
  1863. "__id__": 82
  1864. }
  1865. ],
  1866. "_prefab": {
  1867. "__id__": 84
  1868. },
  1869. "_lpos": {
  1870. "__type__": "cc.Vec3",
  1871. "x": 688.264,
  1872. "y": -30.589,
  1873. "z": 0
  1874. },
  1875. "_lrot": {
  1876. "__type__": "cc.Quat",
  1877. "x": 0,
  1878. "y": 0,
  1879. "z": 0,
  1880. "w": 1
  1881. },
  1882. "_lscale": {
  1883. "__type__": "cc.Vec3",
  1884. "x": 1,
  1885. "y": 1,
  1886. "z": 1
  1887. },
  1888. "_mobility": 0,
  1889. "_layer": 33554432,
  1890. "_euler": {
  1891. "__type__": "cc.Vec3",
  1892. "x": 0,
  1893. "y": 0,
  1894. "z": 0
  1895. },
  1896. "_id": ""
  1897. },
  1898. {
  1899. "__type__": "cc.UITransform",
  1900. "_name": "",
  1901. "_objFlags": 0,
  1902. "node": {
  1903. "__id__": 79
  1904. },
  1905. "_enabled": true,
  1906. "__prefab": {
  1907. "__id__": 81
  1908. },
  1909. "_contentSize": {
  1910. "__type__": "cc.Size",
  1911. "width": 254,
  1912. "height": 119
  1913. },
  1914. "_anchorPoint": {
  1915. "__type__": "cc.Vec2",
  1916. "x": 0.5,
  1917. "y": 0.5
  1918. },
  1919. "_id": ""
  1920. },
  1921. {
  1922. "__type__": "cc.CompPrefabInfo",
  1923. "fileId": "98lstt4UhCyIG1osDLhIRA"
  1924. },
  1925. {
  1926. "__type__": "cc.Sprite",
  1927. "_name": "",
  1928. "_objFlags": 0,
  1929. "node": {
  1930. "__id__": 79
  1931. },
  1932. "_enabled": true,
  1933. "__prefab": {
  1934. "__id__": 83
  1935. },
  1936. "_customMaterial": null,
  1937. "_srcBlendFactor": 2,
  1938. "_dstBlendFactor": 4,
  1939. "_color": {
  1940. "__type__": "cc.Color",
  1941. "r": 255,
  1942. "g": 255,
  1943. "b": 255,
  1944. "a": 255
  1945. },
  1946. "_spriteFrame": {
  1947. "__uuid__": "a29862b1-9a17-4a49-a34f-0007e87e5a96@f9941",
  1948. "__expectedType__": "cc.SpriteFrame"
  1949. },
  1950. "_type": 0,
  1951. "_fillType": 0,
  1952. "_sizeMode": 1,
  1953. "_fillCenter": {
  1954. "__type__": "cc.Vec2",
  1955. "x": 0,
  1956. "y": 0
  1957. },
  1958. "_fillStart": 0,
  1959. "_fillRange": 0,
  1960. "_isTrimmedMode": true,
  1961. "_useGrayscale": false,
  1962. "_atlas": null,
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.CompPrefabInfo",
  1967. "fileId": "09nTB4K1pL0ajlByJ1rNaG"
  1968. },
  1969. {
  1970. "__type__": "cc.PrefabInfo",
  1971. "root": {
  1972. "__id__": 1
  1973. },
  1974. "asset": {
  1975. "__id__": 0
  1976. },
  1977. "fileId": "63Czj15epHGZT7Su1WbdTB",
  1978. "instance": null,
  1979. "targetOverrides": null,
  1980. "nestedPrefabInstanceRoots": null
  1981. },
  1982. {
  1983. "__type__": "cc.Node",
  1984. "_name": "fish-005",
  1985. "_objFlags": 0,
  1986. "_parent": {
  1987. "__id__": 54
  1988. },
  1989. "_children": [],
  1990. "_active": true,
  1991. "_components": [
  1992. {
  1993. "__id__": 86
  1994. },
  1995. {
  1996. "__id__": 88
  1997. }
  1998. ],
  1999. "_prefab": {
  2000. "__id__": 90
  2001. },
  2002. "_lpos": {
  2003. "__type__": "cc.Vec3",
  2004. "x": 344.133,
  2005. "y": -172.065,
  2006. "z": 0
  2007. },
  2008. "_lrot": {
  2009. "__type__": "cc.Quat",
  2010. "x": 0,
  2011. "y": 0,
  2012. "z": 0,
  2013. "w": 1
  2014. },
  2015. "_lscale": {
  2016. "__type__": "cc.Vec3",
  2017. "x": 1,
  2018. "y": 1,
  2019. "z": 1
  2020. },
  2021. "_mobility": 0,
  2022. "_layer": 33554432,
  2023. "_euler": {
  2024. "__type__": "cc.Vec3",
  2025. "x": 0,
  2026. "y": 0,
  2027. "z": 0
  2028. },
  2029. "_id": ""
  2030. },
  2031. {
  2032. "__type__": "cc.UITransform",
  2033. "_name": "",
  2034. "_objFlags": 0,
  2035. "node": {
  2036. "__id__": 85
  2037. },
  2038. "_enabled": true,
  2039. "__prefab": {
  2040. "__id__": 87
  2041. },
  2042. "_contentSize": {
  2043. "__type__": "cc.Size",
  2044. "width": 242,
  2045. "height": 194
  2046. },
  2047. "_anchorPoint": {
  2048. "__type__": "cc.Vec2",
  2049. "x": 0.5,
  2050. "y": 0.5
  2051. },
  2052. "_id": ""
  2053. },
  2054. {
  2055. "__type__": "cc.CompPrefabInfo",
  2056. "fileId": "cc3HMKdeJIabdwJe6KcpTj"
  2057. },
  2058. {
  2059. "__type__": "cc.Sprite",
  2060. "_name": "",
  2061. "_objFlags": 0,
  2062. "node": {
  2063. "__id__": 85
  2064. },
  2065. "_enabled": true,
  2066. "__prefab": {
  2067. "__id__": 89
  2068. },
  2069. "_customMaterial": null,
  2070. "_srcBlendFactor": 2,
  2071. "_dstBlendFactor": 4,
  2072. "_color": {
  2073. "__type__": "cc.Color",
  2074. "r": 255,
  2075. "g": 255,
  2076. "b": 255,
  2077. "a": 255
  2078. },
  2079. "_spriteFrame": {
  2080. "__uuid__": "d309e3da-b829-478d-9286-cfa03a2c0e7b@f9941",
  2081. "__expectedType__": "cc.SpriteFrame"
  2082. },
  2083. "_type": 0,
  2084. "_fillType": 0,
  2085. "_sizeMode": 1,
  2086. "_fillCenter": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0,
  2089. "y": 0
  2090. },
  2091. "_fillStart": 0,
  2092. "_fillRange": 0,
  2093. "_isTrimmedMode": true,
  2094. "_useGrayscale": false,
  2095. "_atlas": null,
  2096. "_id": ""
  2097. },
  2098. {
  2099. "__type__": "cc.CompPrefabInfo",
  2100. "fileId": "19f/ePt3lIpIBrfyKu6QA+"
  2101. },
  2102. {
  2103. "__type__": "cc.PrefabInfo",
  2104. "root": {
  2105. "__id__": 1
  2106. },
  2107. "asset": {
  2108. "__id__": 0
  2109. },
  2110. "fileId": "cf0l3V8MNOxIFlZEjZX7HS",
  2111. "instance": null,
  2112. "targetOverrides": null,
  2113. "nestedPrefabInstanceRoots": null
  2114. },
  2115. {
  2116. "__type__": "cc.Node",
  2117. "_name": "fish-006",
  2118. "_objFlags": 0,
  2119. "_parent": {
  2120. "__id__": 54
  2121. },
  2122. "_children": [],
  2123. "_active": true,
  2124. "_components": [
  2125. {
  2126. "__id__": 92
  2127. },
  2128. {
  2129. "__id__": 94
  2130. }
  2131. ],
  2132. "_prefab": {
  2133. "__id__": 96
  2134. },
  2135. "_lpos": {
  2136. "__type__": "cc.Vec3",
  2137. "x": 600.319,
  2138. "y": 409.135,
  2139. "z": 0
  2140. },
  2141. "_lrot": {
  2142. "__type__": "cc.Quat",
  2143. "x": 0,
  2144. "y": 0,
  2145. "z": 0,
  2146. "w": 1
  2147. },
  2148. "_lscale": {
  2149. "__type__": "cc.Vec3",
  2150. "x": 1,
  2151. "y": 1,
  2152. "z": 1
  2153. },
  2154. "_mobility": 0,
  2155. "_layer": 33554432,
  2156. "_euler": {
  2157. "__type__": "cc.Vec3",
  2158. "x": 0,
  2159. "y": 0,
  2160. "z": 0
  2161. },
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.UITransform",
  2166. "_name": "",
  2167. "_objFlags": 0,
  2168. "node": {
  2169. "__id__": 91
  2170. },
  2171. "_enabled": true,
  2172. "__prefab": {
  2173. "__id__": 93
  2174. },
  2175. "_contentSize": {
  2176. "__type__": "cc.Size",
  2177. "width": 229,
  2178. "height": 154
  2179. },
  2180. "_anchorPoint": {
  2181. "__type__": "cc.Vec2",
  2182. "x": 0.5,
  2183. "y": 0.5
  2184. },
  2185. "_id": ""
  2186. },
  2187. {
  2188. "__type__": "cc.CompPrefabInfo",
  2189. "fileId": "c3dkTNr8NKF4vst4mzMfoB"
  2190. },
  2191. {
  2192. "__type__": "cc.Sprite",
  2193. "_name": "",
  2194. "_objFlags": 0,
  2195. "node": {
  2196. "__id__": 91
  2197. },
  2198. "_enabled": true,
  2199. "__prefab": {
  2200. "__id__": 95
  2201. },
  2202. "_customMaterial": null,
  2203. "_srcBlendFactor": 2,
  2204. "_dstBlendFactor": 4,
  2205. "_color": {
  2206. "__type__": "cc.Color",
  2207. "r": 255,
  2208. "g": 255,
  2209. "b": 255,
  2210. "a": 255
  2211. },
  2212. "_spriteFrame": {
  2213. "__uuid__": "6e7271d0-e4ff-4645-a370-ba7a6d0f3abb@f9941",
  2214. "__expectedType__": "cc.SpriteFrame"
  2215. },
  2216. "_type": 0,
  2217. "_fillType": 0,
  2218. "_sizeMode": 1,
  2219. "_fillCenter": {
  2220. "__type__": "cc.Vec2",
  2221. "x": 0,
  2222. "y": 0
  2223. },
  2224. "_fillStart": 0,
  2225. "_fillRange": 0,
  2226. "_isTrimmedMode": true,
  2227. "_useGrayscale": false,
  2228. "_atlas": null,
  2229. "_id": ""
  2230. },
  2231. {
  2232. "__type__": "cc.CompPrefabInfo",
  2233. "fileId": "346+kPhDlItr1jOy7hOSlF"
  2234. },
  2235. {
  2236. "__type__": "cc.PrefabInfo",
  2237. "root": {
  2238. "__id__": 1
  2239. },
  2240. "asset": {
  2241. "__id__": 0
  2242. },
  2243. "fileId": "9e0Sb+/z5ELZZPawLRFPmu",
  2244. "instance": null,
  2245. "targetOverrides": null,
  2246. "nestedPrefabInstanceRoots": null
  2247. },
  2248. {
  2249. "__type__": "cc.UITransform",
  2250. "_name": "",
  2251. "_objFlags": 0,
  2252. "node": {
  2253. "__id__": 54
  2254. },
  2255. "_enabled": true,
  2256. "__prefab": {
  2257. "__id__": 98
  2258. },
  2259. "_contentSize": {
  2260. "__type__": "cc.Size",
  2261. "width": 100,
  2262. "height": 100
  2263. },
  2264. "_anchorPoint": {
  2265. "__type__": "cc.Vec2",
  2266. "x": 0.5,
  2267. "y": 0.5
  2268. },
  2269. "_id": ""
  2270. },
  2271. {
  2272. "__type__": "cc.CompPrefabInfo",
  2273. "fileId": "16BfKJboJKG7D9yVCJBnZP"
  2274. },
  2275. {
  2276. "__type__": "cc.PrefabInfo",
  2277. "root": {
  2278. "__id__": 1
  2279. },
  2280. "asset": {
  2281. "__id__": 0
  2282. },
  2283. "fileId": "f6rH89XpBCPI0pDCUEsvf/",
  2284. "instance": null,
  2285. "targetOverrides": null,
  2286. "nestedPrefabInstanceRoots": null
  2287. },
  2288. {
  2289. "__type__": "cc.Node",
  2290. "_name": "resultNode",
  2291. "_objFlags": 0,
  2292. "_parent": {
  2293. "__id__": 1
  2294. },
  2295. "_children": [
  2296. {
  2297. "__id__": 101
  2298. },
  2299. {
  2300. "__id__": 116
  2301. },
  2302. {
  2303. "__id__": 131
  2304. }
  2305. ],
  2306. "_active": false,
  2307. "_components": [
  2308. {
  2309. "__id__": 146
  2310. }
  2311. ],
  2312. "_prefab": {
  2313. "__id__": 148
  2314. },
  2315. "_lpos": {
  2316. "__type__": "cc.Vec3",
  2317. "x": 0,
  2318. "y": 0,
  2319. "z": 0
  2320. },
  2321. "_lrot": {
  2322. "__type__": "cc.Quat",
  2323. "x": 0,
  2324. "y": 0,
  2325. "z": 0,
  2326. "w": 1
  2327. },
  2328. "_lscale": {
  2329. "__type__": "cc.Vec3",
  2330. "x": 1,
  2331. "y": 1,
  2332. "z": 1
  2333. },
  2334. "_mobility": 0,
  2335. "_layer": 33554432,
  2336. "_euler": {
  2337. "__type__": "cc.Vec3",
  2338. "x": 0,
  2339. "y": 0,
  2340. "z": 0
  2341. },
  2342. "_id": ""
  2343. },
  2344. {
  2345. "__type__": "cc.Node",
  2346. "_name": "Button",
  2347. "_objFlags": 0,
  2348. "_parent": {
  2349. "__id__": 100
  2350. },
  2351. "_children": [
  2352. {
  2353. "__id__": 102
  2354. }
  2355. ],
  2356. "_active": true,
  2357. "_components": [
  2358. {
  2359. "__id__": 108
  2360. },
  2361. {
  2362. "__id__": 110
  2363. },
  2364. {
  2365. "__id__": 112
  2366. }
  2367. ],
  2368. "_prefab": {
  2369. "__id__": 115
  2370. },
  2371. "_lpos": {
  2372. "__type__": "cc.Vec3",
  2373. "x": -157.789,
  2374. "y": -489.146,
  2375. "z": 0
  2376. },
  2377. "_lrot": {
  2378. "__type__": "cc.Quat",
  2379. "x": 0,
  2380. "y": 0,
  2381. "z": 0,
  2382. "w": 1
  2383. },
  2384. "_lscale": {
  2385. "__type__": "cc.Vec3",
  2386. "x": 1,
  2387. "y": 1,
  2388. "z": 1
  2389. },
  2390. "_mobility": 0,
  2391. "_layer": 33554432,
  2392. "_euler": {
  2393. "__type__": "cc.Vec3",
  2394. "x": 0,
  2395. "y": 0,
  2396. "z": 0
  2397. },
  2398. "_id": ""
  2399. },
  2400. {
  2401. "__type__": "cc.Node",
  2402. "_name": "Label",
  2403. "_objFlags": 0,
  2404. "_parent": {
  2405. "__id__": 101
  2406. },
  2407. "_children": [],
  2408. "_active": true,
  2409. "_components": [
  2410. {
  2411. "__id__": 103
  2412. },
  2413. {
  2414. "__id__": 105
  2415. }
  2416. ],
  2417. "_prefab": {
  2418. "__id__": 107
  2419. },
  2420. "_lpos": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 3.9445000000000014,
  2423. "y": -3.9444999999999997,
  2424. "z": 0
  2425. },
  2426. "_lrot": {
  2427. "__type__": "cc.Quat",
  2428. "x": 0,
  2429. "y": 0,
  2430. "z": 0,
  2431. "w": 1
  2432. },
  2433. "_lscale": {
  2434. "__type__": "cc.Vec3",
  2435. "x": 1,
  2436. "y": 1,
  2437. "z": 1
  2438. },
  2439. "_mobility": 0,
  2440. "_layer": 33554432,
  2441. "_euler": {
  2442. "__type__": "cc.Vec3",
  2443. "x": 0,
  2444. "y": 0,
  2445. "z": 0
  2446. },
  2447. "_id": ""
  2448. },
  2449. {
  2450. "__type__": "cc.UITransform",
  2451. "_name": "",
  2452. "_objFlags": 0,
  2453. "node": {
  2454. "__id__": 102
  2455. },
  2456. "_enabled": true,
  2457. "__prefab": {
  2458. "__id__": 104
  2459. },
  2460. "_contentSize": {
  2461. "__type__": "cc.Size",
  2462. "width": 223.601,
  2463. "height": 89.967
  2464. },
  2465. "_anchorPoint": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 0.5,
  2468. "y": 0.5
  2469. },
  2470. "_id": ""
  2471. },
  2472. {
  2473. "__type__": "cc.CompPrefabInfo",
  2474. "fileId": "e5xUHAYCZBYYttRsYhC6zg"
  2475. },
  2476. {
  2477. "__type__": "cc.Label",
  2478. "_name": "",
  2479. "_objFlags": 0,
  2480. "node": {
  2481. "__id__": 102
  2482. },
  2483. "_enabled": true,
  2484. "__prefab": {
  2485. "__id__": 106
  2486. },
  2487. "_customMaterial": null,
  2488. "_srcBlendFactor": 2,
  2489. "_dstBlendFactor": 4,
  2490. "_color": {
  2491. "__type__": "cc.Color",
  2492. "r": 0,
  2493. "g": 0,
  2494. "b": 0,
  2495. "a": 255
  2496. },
  2497. "_string": "111",
  2498. "_horizontalAlign": 1,
  2499. "_verticalAlign": 1,
  2500. "_actualFontSize": 60,
  2501. "_fontSize": 60,
  2502. "_fontFamily": "Arial",
  2503. "_lineHeight": 40,
  2504. "_overflow": 1,
  2505. "_enableWrapText": false,
  2506. "_font": null,
  2507. "_isSystemFontUsed": true,
  2508. "_spacingX": 0,
  2509. "_isItalic": false,
  2510. "_isBold": false,
  2511. "_isUnderline": false,
  2512. "_underlineHeight": 2,
  2513. "_cacheMode": 0,
  2514. "_id": ""
  2515. },
  2516. {
  2517. "__type__": "cc.CompPrefabInfo",
  2518. "fileId": "8dYK5zaEFF2roqBGBXOrJc"
  2519. },
  2520. {
  2521. "__type__": "cc.PrefabInfo",
  2522. "root": {
  2523. "__id__": 1
  2524. },
  2525. "asset": {
  2526. "__id__": 0
  2527. },
  2528. "fileId": "20ceFkAW5B2rdj+IbSV+Ch",
  2529. "instance": null,
  2530. "targetOverrides": null,
  2531. "nestedPrefabInstanceRoots": null
  2532. },
  2533. {
  2534. "__type__": "cc.UITransform",
  2535. "_name": "",
  2536. "_objFlags": 0,
  2537. "node": {
  2538. "__id__": 101
  2539. },
  2540. "_enabled": true,
  2541. "__prefab": {
  2542. "__id__": 109
  2543. },
  2544. "_contentSize": {
  2545. "__type__": "cc.Size",
  2546. "width": 312,
  2547. "height": 136
  2548. },
  2549. "_anchorPoint": {
  2550. "__type__": "cc.Vec2",
  2551. "x": 0.5,
  2552. "y": 0.5
  2553. },
  2554. "_id": ""
  2555. },
  2556. {
  2557. "__type__": "cc.CompPrefabInfo",
  2558. "fileId": "8c47zNlT9DzoI1l8zBvLel"
  2559. },
  2560. {
  2561. "__type__": "cc.Sprite",
  2562. "_name": "",
  2563. "_objFlags": 0,
  2564. "node": {
  2565. "__id__": 101
  2566. },
  2567. "_enabled": true,
  2568. "__prefab": {
  2569. "__id__": 111
  2570. },
  2571. "_customMaterial": null,
  2572. "_srcBlendFactor": 2,
  2573. "_dstBlendFactor": 4,
  2574. "_color": {
  2575. "__type__": "cc.Color",
  2576. "r": 255,
  2577. "g": 255,
  2578. "b": 255,
  2579. "a": 255
  2580. },
  2581. "_spriteFrame": {
  2582. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2583. "__expectedType__": "cc.SpriteFrame"
  2584. },
  2585. "_type": 1,
  2586. "_fillType": 0,
  2587. "_sizeMode": 2,
  2588. "_fillCenter": {
  2589. "__type__": "cc.Vec2",
  2590. "x": 0,
  2591. "y": 0
  2592. },
  2593. "_fillStart": 0,
  2594. "_fillRange": 0,
  2595. "_isTrimmedMode": true,
  2596. "_useGrayscale": false,
  2597. "_atlas": null,
  2598. "_id": ""
  2599. },
  2600. {
  2601. "__type__": "cc.CompPrefabInfo",
  2602. "fileId": "108bv+gTVOnYT5mMmuZxk+"
  2603. },
  2604. {
  2605. "__type__": "cc.Button",
  2606. "_name": "",
  2607. "_objFlags": 0,
  2608. "node": {
  2609. "__id__": 101
  2610. },
  2611. "_enabled": true,
  2612. "__prefab": {
  2613. "__id__": 113
  2614. },
  2615. "clickEvents": [
  2616. {
  2617. "__id__": 114
  2618. }
  2619. ],
  2620. "_interactable": true,
  2621. "_transition": 3,
  2622. "_normalColor": {
  2623. "__type__": "cc.Color",
  2624. "r": 214,
  2625. "g": 214,
  2626. "b": 214,
  2627. "a": 255
  2628. },
  2629. "_hoverColor": {
  2630. "__type__": "cc.Color",
  2631. "r": 211,
  2632. "g": 211,
  2633. "b": 211,
  2634. "a": 255
  2635. },
  2636. "_pressedColor": {
  2637. "__type__": "cc.Color",
  2638. "r": 255,
  2639. "g": 255,
  2640. "b": 255,
  2641. "a": 255
  2642. },
  2643. "_disabledColor": {
  2644. "__type__": "cc.Color",
  2645. "r": 124,
  2646. "g": 124,
  2647. "b": 124,
  2648. "a": 255
  2649. },
  2650. "_normalSprite": {
  2651. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2652. "__expectedType__": "cc.SpriteFrame"
  2653. },
  2654. "_hoverSprite": {
  2655. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2656. "__expectedType__": "cc.SpriteFrame"
  2657. },
  2658. "_pressedSprite": {
  2659. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2660. "__expectedType__": "cc.SpriteFrame"
  2661. },
  2662. "_disabledSprite": {
  2663. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2664. "__expectedType__": "cc.SpriteFrame"
  2665. },
  2666. "_duration": 0.1,
  2667. "_zoomScale": 1.2,
  2668. "_target": {
  2669. "__id__": 101
  2670. },
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.CompPrefabInfo",
  2675. "fileId": "41sb7qQadJd6/Qv+sSukBz"
  2676. },
  2677. {
  2678. "__type__": "cc.ClickEvent",
  2679. "target": null,
  2680. "component": "",
  2681. "_componentId": "",
  2682. "handler": "",
  2683. "customEventData": ""
  2684. },
  2685. {
  2686. "__type__": "cc.PrefabInfo",
  2687. "root": {
  2688. "__id__": 1
  2689. },
  2690. "asset": {
  2691. "__id__": 0
  2692. },
  2693. "fileId": "02X/V30PtHO4ZLJnTHBVgn",
  2694. "instance": null,
  2695. "targetOverrides": null,
  2696. "nestedPrefabInstanceRoots": null
  2697. },
  2698. {
  2699. "__type__": "cc.Node",
  2700. "_name": "Button-001",
  2701. "_objFlags": 0,
  2702. "_parent": {
  2703. "__id__": 100
  2704. },
  2705. "_children": [
  2706. {
  2707. "__id__": 117
  2708. }
  2709. ],
  2710. "_active": true,
  2711. "_components": [
  2712. {
  2713. "__id__": 123
  2714. },
  2715. {
  2716. "__id__": 125
  2717. },
  2718. {
  2719. "__id__": 127
  2720. }
  2721. ],
  2722. "_prefab": {
  2723. "__id__": 130
  2724. },
  2725. "_lpos": {
  2726. "__type__": "cc.Vec3",
  2727. "x": 202.496,
  2728. "y": -489.146,
  2729. "z": 0
  2730. },
  2731. "_lrot": {
  2732. "__type__": "cc.Quat",
  2733. "x": 0,
  2734. "y": 0,
  2735. "z": 0,
  2736. "w": 1
  2737. },
  2738. "_lscale": {
  2739. "__type__": "cc.Vec3",
  2740. "x": 1,
  2741. "y": 1,
  2742. "z": 1
  2743. },
  2744. "_mobility": 0,
  2745. "_layer": 33554432,
  2746. "_euler": {
  2747. "__type__": "cc.Vec3",
  2748. "x": 0,
  2749. "y": 0,
  2750. "z": 0
  2751. },
  2752. "_id": ""
  2753. },
  2754. {
  2755. "__type__": "cc.Node",
  2756. "_name": "Label",
  2757. "_objFlags": 0,
  2758. "_parent": {
  2759. "__id__": 116
  2760. },
  2761. "_children": [],
  2762. "_active": true,
  2763. "_components": [
  2764. {
  2765. "__id__": 118
  2766. },
  2767. {
  2768. "__id__": 120
  2769. }
  2770. ],
  2771. "_prefab": {
  2772. "__id__": 122
  2773. },
  2774. "_lpos": {
  2775. "__type__": "cc.Vec3",
  2776. "x": 3.9445000000000014,
  2777. "y": -3.9444999999999997,
  2778. "z": 0
  2779. },
  2780. "_lrot": {
  2781. "__type__": "cc.Quat",
  2782. "x": 0,
  2783. "y": 0,
  2784. "z": 0,
  2785. "w": 1
  2786. },
  2787. "_lscale": {
  2788. "__type__": "cc.Vec3",
  2789. "x": 1,
  2790. "y": 1,
  2791. "z": 1
  2792. },
  2793. "_mobility": 0,
  2794. "_layer": 33554432,
  2795. "_euler": {
  2796. "__type__": "cc.Vec3",
  2797. "x": 0,
  2798. "y": 0,
  2799. "z": 0
  2800. },
  2801. "_id": ""
  2802. },
  2803. {
  2804. "__type__": "cc.UITransform",
  2805. "_name": "",
  2806. "_objFlags": 0,
  2807. "node": {
  2808. "__id__": 117
  2809. },
  2810. "_enabled": true,
  2811. "__prefab": {
  2812. "__id__": 119
  2813. },
  2814. "_contentSize": {
  2815. "__type__": "cc.Size",
  2816. "width": 223.601,
  2817. "height": 89.967
  2818. },
  2819. "_anchorPoint": {
  2820. "__type__": "cc.Vec2",
  2821. "x": 0.5,
  2822. "y": 0.5
  2823. },
  2824. "_id": ""
  2825. },
  2826. {
  2827. "__type__": "cc.CompPrefabInfo",
  2828. "fileId": "d2tFFyi2pPyY5gxyPSaNpG"
  2829. },
  2830. {
  2831. "__type__": "cc.Label",
  2832. "_name": "",
  2833. "_objFlags": 0,
  2834. "node": {
  2835. "__id__": 117
  2836. },
  2837. "_enabled": true,
  2838. "__prefab": {
  2839. "__id__": 121
  2840. },
  2841. "_customMaterial": null,
  2842. "_srcBlendFactor": 2,
  2843. "_dstBlendFactor": 4,
  2844. "_color": {
  2845. "__type__": "cc.Color",
  2846. "r": 0,
  2847. "g": 0,
  2848. "b": 0,
  2849. "a": 255
  2850. },
  2851. "_string": "111",
  2852. "_horizontalAlign": 1,
  2853. "_verticalAlign": 1,
  2854. "_actualFontSize": 60,
  2855. "_fontSize": 60,
  2856. "_fontFamily": "Arial",
  2857. "_lineHeight": 40,
  2858. "_overflow": 1,
  2859. "_enableWrapText": false,
  2860. "_font": null,
  2861. "_isSystemFontUsed": true,
  2862. "_spacingX": 0,
  2863. "_isItalic": false,
  2864. "_isBold": false,
  2865. "_isUnderline": false,
  2866. "_underlineHeight": 2,
  2867. "_cacheMode": 0,
  2868. "_id": ""
  2869. },
  2870. {
  2871. "__type__": "cc.CompPrefabInfo",
  2872. "fileId": "43ZPwFqtZJt5aNXCd4F6Hy"
  2873. },
  2874. {
  2875. "__type__": "cc.PrefabInfo",
  2876. "root": {
  2877. "__id__": 1
  2878. },
  2879. "asset": {
  2880. "__id__": 0
  2881. },
  2882. "fileId": "faBScC1KBFXbEeDIZ0qoRB",
  2883. "instance": null,
  2884. "targetOverrides": null,
  2885. "nestedPrefabInstanceRoots": null
  2886. },
  2887. {
  2888. "__type__": "cc.UITransform",
  2889. "_name": "",
  2890. "_objFlags": 0,
  2891. "node": {
  2892. "__id__": 116
  2893. },
  2894. "_enabled": true,
  2895. "__prefab": {
  2896. "__id__": 124
  2897. },
  2898. "_contentSize": {
  2899. "__type__": "cc.Size",
  2900. "width": 312,
  2901. "height": 136
  2902. },
  2903. "_anchorPoint": {
  2904. "__type__": "cc.Vec2",
  2905. "x": 0.5,
  2906. "y": 0.5
  2907. },
  2908. "_id": ""
  2909. },
  2910. {
  2911. "__type__": "cc.CompPrefabInfo",
  2912. "fileId": "99dVRaueBGeZ1g50sQObh2"
  2913. },
  2914. {
  2915. "__type__": "cc.Sprite",
  2916. "_name": "",
  2917. "_objFlags": 0,
  2918. "node": {
  2919. "__id__": 116
  2920. },
  2921. "_enabled": true,
  2922. "__prefab": {
  2923. "__id__": 126
  2924. },
  2925. "_customMaterial": null,
  2926. "_srcBlendFactor": 2,
  2927. "_dstBlendFactor": 4,
  2928. "_color": {
  2929. "__type__": "cc.Color",
  2930. "r": 255,
  2931. "g": 255,
  2932. "b": 255,
  2933. "a": 255
  2934. },
  2935. "_spriteFrame": {
  2936. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2937. "__expectedType__": "cc.SpriteFrame"
  2938. },
  2939. "_type": 1,
  2940. "_fillType": 0,
  2941. "_sizeMode": 2,
  2942. "_fillCenter": {
  2943. "__type__": "cc.Vec2",
  2944. "x": 0,
  2945. "y": 0
  2946. },
  2947. "_fillStart": 0,
  2948. "_fillRange": 0,
  2949. "_isTrimmedMode": true,
  2950. "_useGrayscale": false,
  2951. "_atlas": null,
  2952. "_id": ""
  2953. },
  2954. {
  2955. "__type__": "cc.CompPrefabInfo",
  2956. "fileId": "c4MPzdwltAR4S719MJu+GZ"
  2957. },
  2958. {
  2959. "__type__": "cc.Button",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "node": {
  2963. "__id__": 116
  2964. },
  2965. "_enabled": true,
  2966. "__prefab": {
  2967. "__id__": 128
  2968. },
  2969. "clickEvents": [
  2970. {
  2971. "__id__": 129
  2972. }
  2973. ],
  2974. "_interactable": true,
  2975. "_transition": 3,
  2976. "_normalColor": {
  2977. "__type__": "cc.Color",
  2978. "r": 214,
  2979. "g": 214,
  2980. "b": 214,
  2981. "a": 255
  2982. },
  2983. "_hoverColor": {
  2984. "__type__": "cc.Color",
  2985. "r": 211,
  2986. "g": 211,
  2987. "b": 211,
  2988. "a": 255
  2989. },
  2990. "_pressedColor": {
  2991. "__type__": "cc.Color",
  2992. "r": 255,
  2993. "g": 255,
  2994. "b": 255,
  2995. "a": 255
  2996. },
  2997. "_disabledColor": {
  2998. "__type__": "cc.Color",
  2999. "r": 124,
  3000. "g": 124,
  3001. "b": 124,
  3002. "a": 255
  3003. },
  3004. "_normalSprite": {
  3005. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3006. "__expectedType__": "cc.SpriteFrame"
  3007. },
  3008. "_hoverSprite": {
  3009. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3010. "__expectedType__": "cc.SpriteFrame"
  3011. },
  3012. "_pressedSprite": {
  3013. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3014. "__expectedType__": "cc.SpriteFrame"
  3015. },
  3016. "_disabledSprite": {
  3017. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3018. "__expectedType__": "cc.SpriteFrame"
  3019. },
  3020. "_duration": 0.1,
  3021. "_zoomScale": 1.2,
  3022. "_target": {
  3023. "__id__": 116
  3024. },
  3025. "_id": ""
  3026. },
  3027. {
  3028. "__type__": "cc.CompPrefabInfo",
  3029. "fileId": "40KhvfxhlANrubDKjwPRS3"
  3030. },
  3031. {
  3032. "__type__": "cc.ClickEvent",
  3033. "target": null,
  3034. "component": "",
  3035. "_componentId": "",
  3036. "handler": "",
  3037. "customEventData": ""
  3038. },
  3039. {
  3040. "__type__": "cc.PrefabInfo",
  3041. "root": {
  3042. "__id__": 1
  3043. },
  3044. "asset": {
  3045. "__id__": 0
  3046. },
  3047. "fileId": "20g6cMYbRPTp95ctEputu9",
  3048. "instance": null,
  3049. "targetOverrides": null,
  3050. "nestedPrefabInstanceRoots": null
  3051. },
  3052. {
  3053. "__type__": "cc.Node",
  3054. "_name": "Button-002",
  3055. "_objFlags": 0,
  3056. "_parent": {
  3057. "__id__": 100
  3058. },
  3059. "_children": [
  3060. {
  3061. "__id__": 132
  3062. }
  3063. ],
  3064. "_active": true,
  3065. "_components": [
  3066. {
  3067. "__id__": 138
  3068. },
  3069. {
  3070. "__id__": 140
  3071. },
  3072. {
  3073. "__id__": 142
  3074. }
  3075. ],
  3076. "_prefab": {
  3077. "__id__": 145
  3078. },
  3079. "_lpos": {
  3080. "__type__": "cc.Vec3",
  3081. "x": 536.483,
  3082. "y": -489.146,
  3083. "z": 0
  3084. },
  3085. "_lrot": {
  3086. "__type__": "cc.Quat",
  3087. "x": 0,
  3088. "y": 0,
  3089. "z": 0,
  3090. "w": 1
  3091. },
  3092. "_lscale": {
  3093. "__type__": "cc.Vec3",
  3094. "x": 1,
  3095. "y": 1,
  3096. "z": 1
  3097. },
  3098. "_mobility": 0,
  3099. "_layer": 33554432,
  3100. "_euler": {
  3101. "__type__": "cc.Vec3",
  3102. "x": 0,
  3103. "y": 0,
  3104. "z": 0
  3105. },
  3106. "_id": ""
  3107. },
  3108. {
  3109. "__type__": "cc.Node",
  3110. "_name": "Label",
  3111. "_objFlags": 0,
  3112. "_parent": {
  3113. "__id__": 131
  3114. },
  3115. "_children": [],
  3116. "_active": true,
  3117. "_components": [
  3118. {
  3119. "__id__": 133
  3120. },
  3121. {
  3122. "__id__": 135
  3123. }
  3124. ],
  3125. "_prefab": {
  3126. "__id__": 137
  3127. },
  3128. "_lpos": {
  3129. "__type__": "cc.Vec3",
  3130. "x": 3.9445000000000014,
  3131. "y": -3.9444999999999997,
  3132. "z": 0
  3133. },
  3134. "_lrot": {
  3135. "__type__": "cc.Quat",
  3136. "x": 0,
  3137. "y": 0,
  3138. "z": 0,
  3139. "w": 1
  3140. },
  3141. "_lscale": {
  3142. "__type__": "cc.Vec3",
  3143. "x": 1,
  3144. "y": 1,
  3145. "z": 1
  3146. },
  3147. "_mobility": 0,
  3148. "_layer": 33554432,
  3149. "_euler": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0
  3154. },
  3155. "_id": ""
  3156. },
  3157. {
  3158. "__type__": "cc.UITransform",
  3159. "_name": "",
  3160. "_objFlags": 0,
  3161. "node": {
  3162. "__id__": 132
  3163. },
  3164. "_enabled": true,
  3165. "__prefab": {
  3166. "__id__": 134
  3167. },
  3168. "_contentSize": {
  3169. "__type__": "cc.Size",
  3170. "width": 223.601,
  3171. "height": 89.967
  3172. },
  3173. "_anchorPoint": {
  3174. "__type__": "cc.Vec2",
  3175. "x": 0.5,
  3176. "y": 0.5
  3177. },
  3178. "_id": ""
  3179. },
  3180. {
  3181. "__type__": "cc.CompPrefabInfo",
  3182. "fileId": "b7iSVP745NPr/o8AyMRExr"
  3183. },
  3184. {
  3185. "__type__": "cc.Label",
  3186. "_name": "",
  3187. "_objFlags": 0,
  3188. "node": {
  3189. "__id__": 132
  3190. },
  3191. "_enabled": true,
  3192. "__prefab": {
  3193. "__id__": 136
  3194. },
  3195. "_customMaterial": null,
  3196. "_srcBlendFactor": 2,
  3197. "_dstBlendFactor": 4,
  3198. "_color": {
  3199. "__type__": "cc.Color",
  3200. "r": 0,
  3201. "g": 0,
  3202. "b": 0,
  3203. "a": 255
  3204. },
  3205. "_string": "111",
  3206. "_horizontalAlign": 1,
  3207. "_verticalAlign": 1,
  3208. "_actualFontSize": 60,
  3209. "_fontSize": 60,
  3210. "_fontFamily": "Arial",
  3211. "_lineHeight": 40,
  3212. "_overflow": 1,
  3213. "_enableWrapText": false,
  3214. "_font": null,
  3215. "_isSystemFontUsed": true,
  3216. "_spacingX": 0,
  3217. "_isItalic": false,
  3218. "_isBold": false,
  3219. "_isUnderline": false,
  3220. "_underlineHeight": 2,
  3221. "_cacheMode": 0,
  3222. "_id": ""
  3223. },
  3224. {
  3225. "__type__": "cc.CompPrefabInfo",
  3226. "fileId": "3157Tyn7BJfLGR1bYXv49w"
  3227. },
  3228. {
  3229. "__type__": "cc.PrefabInfo",
  3230. "root": {
  3231. "__id__": 1
  3232. },
  3233. "asset": {
  3234. "__id__": 0
  3235. },
  3236. "fileId": "95/WH3VxBBDJXJ73RyMTL0",
  3237. "instance": null,
  3238. "targetOverrides": null,
  3239. "nestedPrefabInstanceRoots": null
  3240. },
  3241. {
  3242. "__type__": "cc.UITransform",
  3243. "_name": "",
  3244. "_objFlags": 0,
  3245. "node": {
  3246. "__id__": 131
  3247. },
  3248. "_enabled": true,
  3249. "__prefab": {
  3250. "__id__": 139
  3251. },
  3252. "_contentSize": {
  3253. "__type__": "cc.Size",
  3254. "width": 312,
  3255. "height": 136
  3256. },
  3257. "_anchorPoint": {
  3258. "__type__": "cc.Vec2",
  3259. "x": 0.5,
  3260. "y": 0.5
  3261. },
  3262. "_id": ""
  3263. },
  3264. {
  3265. "__type__": "cc.CompPrefabInfo",
  3266. "fileId": "faH+o1LYpAFLSOfoWrTsEj"
  3267. },
  3268. {
  3269. "__type__": "cc.Sprite",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "node": {
  3273. "__id__": 131
  3274. },
  3275. "_enabled": true,
  3276. "__prefab": {
  3277. "__id__": 141
  3278. },
  3279. "_customMaterial": null,
  3280. "_srcBlendFactor": 2,
  3281. "_dstBlendFactor": 4,
  3282. "_color": {
  3283. "__type__": "cc.Color",
  3284. "r": 255,
  3285. "g": 255,
  3286. "b": 255,
  3287. "a": 255
  3288. },
  3289. "_spriteFrame": {
  3290. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3291. "__expectedType__": "cc.SpriteFrame"
  3292. },
  3293. "_type": 1,
  3294. "_fillType": 0,
  3295. "_sizeMode": 2,
  3296. "_fillCenter": {
  3297. "__type__": "cc.Vec2",
  3298. "x": 0,
  3299. "y": 0
  3300. },
  3301. "_fillStart": 0,
  3302. "_fillRange": 0,
  3303. "_isTrimmedMode": true,
  3304. "_useGrayscale": false,
  3305. "_atlas": null,
  3306. "_id": ""
  3307. },
  3308. {
  3309. "__type__": "cc.CompPrefabInfo",
  3310. "fileId": "6bR3BGPl1K95l93H4isphD"
  3311. },
  3312. {
  3313. "__type__": "cc.Button",
  3314. "_name": "",
  3315. "_objFlags": 0,
  3316. "node": {
  3317. "__id__": 131
  3318. },
  3319. "_enabled": true,
  3320. "__prefab": {
  3321. "__id__": 143
  3322. },
  3323. "clickEvents": [
  3324. {
  3325. "__id__": 144
  3326. }
  3327. ],
  3328. "_interactable": true,
  3329. "_transition": 3,
  3330. "_normalColor": {
  3331. "__type__": "cc.Color",
  3332. "r": 214,
  3333. "g": 214,
  3334. "b": 214,
  3335. "a": 255
  3336. },
  3337. "_hoverColor": {
  3338. "__type__": "cc.Color",
  3339. "r": 211,
  3340. "g": 211,
  3341. "b": 211,
  3342. "a": 255
  3343. },
  3344. "_pressedColor": {
  3345. "__type__": "cc.Color",
  3346. "r": 255,
  3347. "g": 255,
  3348. "b": 255,
  3349. "a": 255
  3350. },
  3351. "_disabledColor": {
  3352. "__type__": "cc.Color",
  3353. "r": 124,
  3354. "g": 124,
  3355. "b": 124,
  3356. "a": 255
  3357. },
  3358. "_normalSprite": {
  3359. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3360. "__expectedType__": "cc.SpriteFrame"
  3361. },
  3362. "_hoverSprite": {
  3363. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3364. "__expectedType__": "cc.SpriteFrame"
  3365. },
  3366. "_pressedSprite": {
  3367. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3368. "__expectedType__": "cc.SpriteFrame"
  3369. },
  3370. "_disabledSprite": {
  3371. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3372. "__expectedType__": "cc.SpriteFrame"
  3373. },
  3374. "_duration": 0.1,
  3375. "_zoomScale": 1.2,
  3376. "_target": {
  3377. "__id__": 131
  3378. },
  3379. "_id": ""
  3380. },
  3381. {
  3382. "__type__": "cc.CompPrefabInfo",
  3383. "fileId": "0bTkHo0dRGup3aJZ272rcU"
  3384. },
  3385. {
  3386. "__type__": "cc.ClickEvent",
  3387. "target": null,
  3388. "component": "",
  3389. "_componentId": "",
  3390. "handler": "",
  3391. "customEventData": ""
  3392. },
  3393. {
  3394. "__type__": "cc.PrefabInfo",
  3395. "root": {
  3396. "__id__": 1
  3397. },
  3398. "asset": {
  3399. "__id__": 0
  3400. },
  3401. "fileId": "78TUB0F69OXKuRHB+DhNfb",
  3402. "instance": null,
  3403. "targetOverrides": null,
  3404. "nestedPrefabInstanceRoots": null
  3405. },
  3406. {
  3407. "__type__": "cc.UITransform",
  3408. "_name": "",
  3409. "_objFlags": 0,
  3410. "node": {
  3411. "__id__": 100
  3412. },
  3413. "_enabled": true,
  3414. "__prefab": {
  3415. "__id__": 147
  3416. },
  3417. "_contentSize": {
  3418. "__type__": "cc.Size",
  3419. "width": 100,
  3420. "height": 100
  3421. },
  3422. "_anchorPoint": {
  3423. "__type__": "cc.Vec2",
  3424. "x": 0.5,
  3425. "y": 0.5
  3426. },
  3427. "_id": ""
  3428. },
  3429. {
  3430. "__type__": "cc.CompPrefabInfo",
  3431. "fileId": "beEKtYnkRHzqA/dwV5wFpb"
  3432. },
  3433. {
  3434. "__type__": "cc.PrefabInfo",
  3435. "root": {
  3436. "__id__": 1
  3437. },
  3438. "asset": {
  3439. "__id__": 0
  3440. },
  3441. "fileId": "54PeL3VsBJOpth0Y5XZ7JO",
  3442. "instance": null,
  3443. "targetOverrides": null,
  3444. "nestedPrefabInstanceRoots": null
  3445. },
  3446. {
  3447. "__type__": "cc.UITransform",
  3448. "_name": "",
  3449. "_objFlags": 0,
  3450. "node": {
  3451. "__id__": 1
  3452. },
  3453. "_enabled": true,
  3454. "__prefab": {
  3455. "__id__": 150
  3456. },
  3457. "_contentSize": {
  3458. "__type__": "cc.Size",
  3459. "width": 1408,
  3460. "height": 1220
  3461. },
  3462. "_anchorPoint": {
  3463. "__type__": "cc.Vec2",
  3464. "x": 0.5,
  3465. "y": 0.5
  3466. },
  3467. "_id": ""
  3468. },
  3469. {
  3470. "__type__": "cc.CompPrefabInfo",
  3471. "fileId": "3dPUF+5mNAt6Mfg80DGkwN"
  3472. },
  3473. {
  3474. "__type__": "cc.Sprite",
  3475. "_name": "",
  3476. "_objFlags": 0,
  3477. "node": {
  3478. "__id__": 1
  3479. },
  3480. "_enabled": true,
  3481. "__prefab": {
  3482. "__id__": 152
  3483. },
  3484. "_customMaterial": null,
  3485. "_srcBlendFactor": 2,
  3486. "_dstBlendFactor": 4,
  3487. "_color": {
  3488. "__type__": "cc.Color",
  3489. "r": 255,
  3490. "g": 255,
  3491. "b": 255,
  3492. "a": 255
  3493. },
  3494. "_spriteFrame": {
  3495. "__uuid__": "91aee3af-9bc1-4ad4-8ee2-e379cc830af7@f9941",
  3496. "__expectedType__": "cc.SpriteFrame"
  3497. },
  3498. "_type": 0,
  3499. "_fillType": 0,
  3500. "_sizeMode": 1,
  3501. "_fillCenter": {
  3502. "__type__": "cc.Vec2",
  3503. "x": 0,
  3504. "y": 0
  3505. },
  3506. "_fillStart": 0,
  3507. "_fillRange": 0,
  3508. "_isTrimmedMode": true,
  3509. "_useGrayscale": false,
  3510. "_atlas": null,
  3511. "_id": ""
  3512. },
  3513. {
  3514. "__type__": "cc.CompPrefabInfo",
  3515. "fileId": "12Ksji6ohIZKB+M6AN7MTh"
  3516. },
  3517. {
  3518. "__type__": "cc.AudioSource",
  3519. "_name": "",
  3520. "_objFlags": 0,
  3521. "node": {
  3522. "__id__": 1
  3523. },
  3524. "_enabled": true,
  3525. "__prefab": {
  3526. "__id__": 154
  3527. },
  3528. "_clip": {
  3529. "__uuid__": "ad658f7c-81ae-4787-a8f2-ca18f6d581f8",
  3530. "__expectedType__": "cc.AudioClip"
  3531. },
  3532. "_loop": true,
  3533. "_playOnAwake": true,
  3534. "_volume": 1,
  3535. "_id": ""
  3536. },
  3537. {
  3538. "__type__": "cc.CompPrefabInfo",
  3539. "fileId": "a4TntYrz5C9IGCRg5Hjliu"
  3540. },
  3541. {
  3542. "__type__": "cc.PrefabInfo",
  3543. "root": {
  3544. "__id__": 1
  3545. },
  3546. "asset": {
  3547. "__id__": 0
  3548. },
  3549. "fileId": "52c3R0caFALJkQBoIB8nwi",
  3550. "targetOverrides": null
  3551. }
  3552. ]