page_game.prefab 51 KB

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