UI_Game.prefab 53 KB

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