game.prefab 63 KB

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