game.prefab 55 KB

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