level2.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "persistent": false,
  12. "asyncLoadAssets": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "level2",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 6
  26. },
  27. {
  28. "__id__": 28
  29. },
  30. {
  31. "__id__": 80
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 114
  38. },
  39. {
  40. "__id__": 116
  41. },
  42. {
  43. "__id__": 118
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 120
  48. },
  49. "_lpos": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 803.31,
  53. "z": 0
  54. },
  55. "_lrot": {
  56. "__type__": "cc.Quat",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0,
  60. "w": 1
  61. },
  62. "_lscale": {
  63. "__type__": "cc.Vec3",
  64. "x": 1,
  65. "y": 1,
  66. "z": 1
  67. },
  68. "_layer": 33554432,
  69. "_euler": {
  70. "__type__": "cc.Vec3",
  71. "x": 0,
  72. "y": 0,
  73. "z": 0
  74. },
  75. "_id": ""
  76. },
  77. {
  78. "__type__": "cc.Node",
  79. "_name": "empty",
  80. "_objFlags": 0,
  81. "_parent": {
  82. "__id__": 1
  83. },
  84. "_children": [],
  85. "_active": true,
  86. "_components": [
  87. {
  88. "__id__": 3
  89. }
  90. ],
  91. "_prefab": {
  92. "__id__": 5
  93. },
  94. "_lpos": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": -250,
  98. "z": 0
  99. },
  100. "_lrot": {
  101. "__type__": "cc.Quat",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0,
  105. "w": 1
  106. },
  107. "_lscale": {
  108. "__type__": "cc.Vec3",
  109. "x": 1,
  110. "y": 1,
  111. "z": 1
  112. },
  113. "_layer": 33554432,
  114. "_euler": {
  115. "__type__": "cc.Vec3",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0
  119. },
  120. "_id": ""
  121. },
  122. {
  123. "__type__": "cc.UITransform",
  124. "_name": "",
  125. "_objFlags": 0,
  126. "__editorExtras__": {},
  127. "node": {
  128. "__id__": 2
  129. },
  130. "_enabled": true,
  131. "__prefab": {
  132. "__id__": 4
  133. },
  134. "_contentSize": {
  135. "__type__": "cc.Size",
  136. "width": 720,
  137. "height": 500
  138. },
  139. "_anchorPoint": {
  140. "__type__": "cc.Vec2",
  141. "x": 0.5,
  142. "y": 0.5
  143. },
  144. "_id": ""
  145. },
  146. {
  147. "__type__": "cc.CompPrefabInfo",
  148. "fileId": "e9blwPeldJaZt4/6NXU0CT"
  149. },
  150. {
  151. "__type__": "cc.PrefabInfo",
  152. "root": {
  153. "__id__": 1
  154. },
  155. "asset": {
  156. "__id__": 0
  157. },
  158. "fileId": "e8pH4iOhRH45WSYdUTm31s"
  159. },
  160. {
  161. "__type__": "cc.Node",
  162. "_name": "f",
  163. "_objFlags": 0,
  164. "_parent": {
  165. "__id__": 1
  166. },
  167. "_children": [
  168. {
  169. "__id__": 7
  170. }
  171. ],
  172. "_active": true,
  173. "_components": [
  174. {
  175. "__id__": 25
  176. }
  177. ],
  178. "_prefab": {
  179. "__id__": 27
  180. },
  181. "_lpos": {
  182. "__type__": "cc.Vec3",
  183. "x": 0,
  184. "y": -650,
  185. "z": 0
  186. },
  187. "_lrot": {
  188. "__type__": "cc.Quat",
  189. "x": 0,
  190. "y": 0,
  191. "z": 0,
  192. "w": 1
  193. },
  194. "_lscale": {
  195. "__type__": "cc.Vec3",
  196. "x": 1,
  197. "y": 1,
  198. "z": 1
  199. },
  200. "_layer": 33554432,
  201. "_euler": {
  202. "__type__": "cc.Vec3",
  203. "x": 0,
  204. "y": 0,
  205. "z": 0
  206. },
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "cc.Node",
  211. "_name": "g",
  212. "_objFlags": 0,
  213. "_parent": {
  214. "__id__": 6
  215. },
  216. "_children": [
  217. {
  218. "__id__": 8
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 20
  225. },
  226. {
  227. "__id__": 22
  228. }
  229. ],
  230. "_prefab": {
  231. "__id__": 24
  232. },
  233. "_lpos": {
  234. "__type__": "cc.Vec3",
  235. "x": -210,
  236. "y": 0,
  237. "z": 0
  238. },
  239. "_lrot": {
  240. "__type__": "cc.Quat",
  241. "x": 0,
  242. "y": 0,
  243. "z": 0,
  244. "w": 1
  245. },
  246. "_lscale": {
  247. "__type__": "cc.Vec3",
  248. "x": 1,
  249. "y": 1,
  250. "z": 1
  251. },
  252. "_layer": 33554432,
  253. "_euler": {
  254. "__type__": "cc.Vec3",
  255. "x": 0,
  256. "y": 0,
  257. "z": 0
  258. },
  259. "_id": ""
  260. },
  261. {
  262. "__type__": "cc.Node",
  263. "_objFlags": 0,
  264. "_parent": {
  265. "__id__": 7
  266. },
  267. "_prefab": {
  268. "__id__": 9
  269. },
  270. "__editorExtras__": {}
  271. },
  272. {
  273. "__type__": "cc.PrefabInfo",
  274. "root": {
  275. "__id__": 8
  276. },
  277. "asset": {
  278. "__uuid__": "63632dab-cec1-4aab-951d-5bf0064e8f61",
  279. "__expectedType__": "cc.Prefab"
  280. },
  281. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  282. "instance": {
  283. "__id__": 10
  284. }
  285. },
  286. {
  287. "__type__": "cc.PrefabInstance",
  288. "fileId": "84Zv+3K69JManaEZkrfMIS",
  289. "prefabRootNode": {
  290. "__id__": 1
  291. },
  292. "mountedChildren": [],
  293. "mountedComponents": [],
  294. "propertyOverrides": [
  295. {
  296. "__id__": 11
  297. },
  298. {
  299. "__id__": 13
  300. },
  301. {
  302. "__id__": 14
  303. },
  304. {
  305. "__id__": 15
  306. },
  307. {
  308. "__id__": 16
  309. },
  310. {
  311. "__id__": 18
  312. }
  313. ],
  314. "removedComponents": []
  315. },
  316. {
  317. "__type__": "CCPropertyOverrideInfo",
  318. "targetInfo": {
  319. "__id__": 12
  320. },
  321. "propertyPath": [
  322. "_name"
  323. ],
  324. "value": "role_equip"
  325. },
  326. {
  327. "__type__": "cc.TargetInfo",
  328. "localID": [
  329. "23Shh68qVKLJ0cCLTsPddX"
  330. ]
  331. },
  332. {
  333. "__type__": "CCPropertyOverrideInfo",
  334. "targetInfo": {
  335. "__id__": 12
  336. },
  337. "propertyPath": [
  338. "_lpos"
  339. ],
  340. "value": {
  341. "__type__": "cc.Vec3",
  342. "x": 0,
  343. "y": 0,
  344. "z": 0
  345. }
  346. },
  347. {
  348. "__type__": "CCPropertyOverrideInfo",
  349. "targetInfo": {
  350. "__id__": 12
  351. },
  352. "propertyPath": [
  353. "_lrot"
  354. ],
  355. "value": {
  356. "__type__": "cc.Quat",
  357. "x": 0,
  358. "y": 0,
  359. "z": 0,
  360. "w": 1
  361. }
  362. },
  363. {
  364. "__type__": "CCPropertyOverrideInfo",
  365. "targetInfo": {
  366. "__id__": 12
  367. },
  368. "propertyPath": [
  369. "_euler"
  370. ],
  371. "value": {
  372. "__type__": "cc.Vec3",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0
  376. }
  377. },
  378. {
  379. "__type__": "CCPropertyOverrideInfo",
  380. "targetInfo": {
  381. "__id__": 17
  382. },
  383. "propertyPath": [
  384. "_string"
  385. ],
  386. "value": "+5"
  387. },
  388. {
  389. "__type__": "cc.TargetInfo",
  390. "localID": [
  391. "3cxFYWW1RLiLNjw6kMjSKk"
  392. ]
  393. },
  394. {
  395. "__type__": "CCPropertyOverrideInfo",
  396. "targetInfo": {
  397. "__id__": 19
  398. },
  399. "propertyPath": [
  400. "_contentSize"
  401. ],
  402. "value": {
  403. "__type__": "cc.Size",
  404. "width": 48.89,
  405. "height": 40
  406. }
  407. },
  408. {
  409. "__type__": "cc.TargetInfo",
  410. "localID": [
  411. "d9R+nrXWtEf6ZgmiV+Scpc"
  412. ]
  413. },
  414. {
  415. "__type__": "cc.UITransform",
  416. "_name": "",
  417. "_objFlags": 0,
  418. "__editorExtras__": {},
  419. "node": {
  420. "__id__": 7
  421. },
  422. "_enabled": true,
  423. "__prefab": {
  424. "__id__": 21
  425. },
  426. "_contentSize": {
  427. "__type__": "cc.Size",
  428. "width": 253,
  429. "height": 142
  430. },
  431. "_anchorPoint": {
  432. "__type__": "cc.Vec2",
  433. "x": 0.5,
  434. "y": 0.8
  435. },
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.CompPrefabInfo",
  440. "fileId": "28h57ssF5M1KdhzC9Cuf6z"
  441. },
  442. {
  443. "__type__": "cc.Sprite",
  444. "_name": "",
  445. "_objFlags": 0,
  446. "__editorExtras__": {},
  447. "node": {
  448. "__id__": 7
  449. },
  450. "_enabled": true,
  451. "__prefab": {
  452. "__id__": 23
  453. },
  454. "_visFlags": 0,
  455. "_customMaterial": null,
  456. "_srcBlendFactor": 2,
  457. "_dstBlendFactor": 4,
  458. "_color": {
  459. "__type__": "cc.Color",
  460. "r": 255,
  461. "g": 255,
  462. "b": 255,
  463. "a": 255
  464. },
  465. "_spriteFrame": {
  466. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  467. "__expectedType__": "cc.SpriteFrame"
  468. },
  469. "_type": 0,
  470. "_fillType": 0,
  471. "_sizeMode": 2,
  472. "_fillCenter": {
  473. "__type__": "cc.Vec2",
  474. "x": 0,
  475. "y": 0
  476. },
  477. "_fillStart": 0,
  478. "_fillRange": 0,
  479. "_isTrimmedMode": false,
  480. "_useGrayscale": false,
  481. "_atlas": null,
  482. "_id": ""
  483. },
  484. {
  485. "__type__": "cc.CompPrefabInfo",
  486. "fileId": "69g7HYuCNBnpo9m5yKnSnY"
  487. },
  488. {
  489. "__type__": "cc.PrefabInfo",
  490. "root": {
  491. "__id__": 1
  492. },
  493. "asset": {
  494. "__id__": 0
  495. },
  496. "fileId": "e2/GesnT9K6LcJYzGRm+Lb"
  497. },
  498. {
  499. "__type__": "cc.UITransform",
  500. "_name": "",
  501. "_objFlags": 0,
  502. "__editorExtras__": {},
  503. "node": {
  504. "__id__": 6
  505. },
  506. "_enabled": true,
  507. "__prefab": {
  508. "__id__": 26
  509. },
  510. "_contentSize": {
  511. "__type__": "cc.Size",
  512. "width": 747,
  513. "height": 300
  514. },
  515. "_anchorPoint": {
  516. "__type__": "cc.Vec2",
  517. "x": 0.5,
  518. "y": 0.5
  519. },
  520. "_id": ""
  521. },
  522. {
  523. "__type__": "cc.CompPrefabInfo",
  524. "fileId": "f5SXrqwZtGEYK6KcpWtbsl"
  525. },
  526. {
  527. "__type__": "cc.PrefabInfo",
  528. "root": {
  529. "__id__": 1
  530. },
  531. "asset": {
  532. "__id__": 0
  533. },
  534. "fileId": "16kxY0qVJGWKOXQrbX36vs"
  535. },
  536. {
  537. "__type__": "cc.Node",
  538. "_name": "f",
  539. "_objFlags": 0,
  540. "_parent": {
  541. "__id__": 1
  542. },
  543. "_children": [
  544. {
  545. "__id__": 29
  546. },
  547. {
  548. "__id__": 50
  549. }
  550. ],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 77
  555. }
  556. ],
  557. "_prefab": {
  558. "__id__": 79
  559. },
  560. "_lpos": {
  561. "__type__": "cc.Vec3",
  562. "x": 0,
  563. "y": -950,
  564. "z": 0
  565. },
  566. "_lrot": {
  567. "__type__": "cc.Quat",
  568. "x": 0,
  569. "y": 0,
  570. "z": 0,
  571. "w": 1
  572. },
  573. "_lscale": {
  574. "__type__": "cc.Vec3",
  575. "x": 1,
  576. "y": 1,
  577. "z": 1
  578. },
  579. "_layer": 33554432,
  580. "_euler": {
  581. "__type__": "cc.Vec3",
  582. "x": 0,
  583. "y": 0,
  584. "z": 0
  585. },
  586. "_id": ""
  587. },
  588. {
  589. "__type__": "cc.Node",
  590. "_name": "g",
  591. "_objFlags": 0,
  592. "_parent": {
  593. "__id__": 28
  594. },
  595. "_children": [
  596. {
  597. "__id__": 30
  598. }
  599. ],
  600. "_active": true,
  601. "_components": [
  602. {
  603. "__id__": 45
  604. },
  605. {
  606. "__id__": 47
  607. }
  608. ],
  609. "_prefab": {
  610. "__id__": 49
  611. },
  612. "_lpos": {
  613. "__type__": "cc.Vec3",
  614. "x": -220,
  615. "y": 0,
  616. "z": 0
  617. },
  618. "_lrot": {
  619. "__type__": "cc.Quat",
  620. "x": 0,
  621. "y": 0,
  622. "z": 0,
  623. "w": 1
  624. },
  625. "_lscale": {
  626. "__type__": "cc.Vec3",
  627. "x": 1,
  628. "y": 1,
  629. "z": 1
  630. },
  631. "_layer": 33554432,
  632. "_euler": {
  633. "__type__": "cc.Vec3",
  634. "x": 0,
  635. "y": 0,
  636. "z": 0
  637. },
  638. "_id": ""
  639. },
  640. {
  641. "__type__": "cc.Node",
  642. "_objFlags": 0,
  643. "_parent": {
  644. "__id__": 29
  645. },
  646. "_prefab": {
  647. "__id__": 31
  648. },
  649. "__editorExtras__": {}
  650. },
  651. {
  652. "__type__": "cc.PrefabInfo",
  653. "root": {
  654. "__id__": 30
  655. },
  656. "asset": {
  657. "__uuid__": "765453ef-514e-459a-9d7d-c58b9104dd34",
  658. "__expectedType__": "cc.Prefab"
  659. },
  660. "fileId": "20cVgNMc9LLYnnK6S4McTL",
  661. "instance": {
  662. "__id__": 32
  663. }
  664. },
  665. {
  666. "__type__": "cc.PrefabInstance",
  667. "fileId": "a9L5oiMhZBbrZpMo1XEQdK",
  668. "prefabRootNode": {
  669. "__id__": 1
  670. },
  671. "mountedChildren": [],
  672. "mountedComponents": [],
  673. "propertyOverrides": [
  674. {
  675. "__id__": 33
  676. },
  677. {
  678. "__id__": 35
  679. },
  680. {
  681. "__id__": 36
  682. },
  683. {
  684. "__id__": 37
  685. },
  686. {
  687. "__id__": 38
  688. },
  689. {
  690. "__id__": 40
  691. },
  692. {
  693. "__id__": 42
  694. },
  695. {
  696. "__id__": 44
  697. }
  698. ],
  699. "removedComponents": []
  700. },
  701. {
  702. "__type__": "CCPropertyOverrideInfo",
  703. "targetInfo": {
  704. "__id__": 34
  705. },
  706. "propertyPath": [
  707. "_name"
  708. ],
  709. "value": "role_player"
  710. },
  711. {
  712. "__type__": "cc.TargetInfo",
  713. "localID": [
  714. "20cVgNMc9LLYnnK6S4McTL"
  715. ]
  716. },
  717. {
  718. "__type__": "CCPropertyOverrideInfo",
  719. "targetInfo": {
  720. "__id__": 34
  721. },
  722. "propertyPath": [
  723. "_lpos"
  724. ],
  725. "value": {
  726. "__type__": "cc.Vec3",
  727. "x": 0,
  728. "y": 0,
  729. "z": 0
  730. }
  731. },
  732. {
  733. "__type__": "CCPropertyOverrideInfo",
  734. "targetInfo": {
  735. "__id__": 34
  736. },
  737. "propertyPath": [
  738. "_lrot"
  739. ],
  740. "value": {
  741. "__type__": "cc.Quat",
  742. "x": 0,
  743. "y": 0,
  744. "z": 0,
  745. "w": 1
  746. }
  747. },
  748. {
  749. "__type__": "CCPropertyOverrideInfo",
  750. "targetInfo": {
  751. "__id__": 34
  752. },
  753. "propertyPath": [
  754. "_euler"
  755. ],
  756. "value": {
  757. "__type__": "cc.Vec3",
  758. "x": 0,
  759. "y": 0,
  760. "z": 0
  761. }
  762. },
  763. {
  764. "__type__": "CCPropertyOverrideInfo",
  765. "targetInfo": {
  766. "__id__": 39
  767. },
  768. "propertyPath": [
  769. "_string"
  770. ],
  771. "value": "3"
  772. },
  773. {
  774. "__type__": "cc.TargetInfo",
  775. "localID": [
  776. "ebDK9ERglCvIaTlwSdEF+S"
  777. ]
  778. },
  779. {
  780. "__type__": "CCPropertyOverrideInfo",
  781. "targetInfo": {
  782. "__id__": 41
  783. },
  784. "propertyPath": [
  785. "_contentSize"
  786. ],
  787. "value": {
  788. "__type__": "cc.Size",
  789. "width": 24.44,
  790. "height": 40
  791. }
  792. },
  793. {
  794. "__type__": "cc.TargetInfo",
  795. "localID": [
  796. "0855lmLBBESolir6c7gFnt"
  797. ]
  798. },
  799. {
  800. "__type__": "CCPropertyOverrideInfo",
  801. "targetInfo": {
  802. "__id__": 43
  803. },
  804. "propertyPath": [
  805. "_name"
  806. ],
  807. "value": "body"
  808. },
  809. {
  810. "__type__": "cc.TargetInfo",
  811. "localID": [
  812. "ab11MmQKpKW58TBu7sIYxC"
  813. ]
  814. },
  815. {
  816. "__type__": "CCPropertyOverrideInfo",
  817. "targetInfo": {
  818. "__id__": 43
  819. },
  820. "propertyPath": [
  821. "_lpos"
  822. ],
  823. "value": {
  824. "__type__": "cc.Vec3",
  825. "x": 0,
  826. "y": 47.751999999999995,
  827. "z": 0
  828. }
  829. },
  830. {
  831. "__type__": "cc.UITransform",
  832. "_name": "",
  833. "_objFlags": 0,
  834. "__editorExtras__": {},
  835. "node": {
  836. "__id__": 29
  837. },
  838. "_enabled": true,
  839. "__prefab": {
  840. "__id__": 46
  841. },
  842. "_contentSize": {
  843. "__type__": "cc.Size",
  844. "width": 253,
  845. "height": 142
  846. },
  847. "_anchorPoint": {
  848. "__type__": "cc.Vec2",
  849. "x": 0.5,
  850. "y": 0.8
  851. },
  852. "_id": ""
  853. },
  854. {
  855. "__type__": "cc.CompPrefabInfo",
  856. "fileId": "1e6uZw+OtGBp58cYo+LMXz"
  857. },
  858. {
  859. "__type__": "cc.Sprite",
  860. "_name": "",
  861. "_objFlags": 0,
  862. "__editorExtras__": {},
  863. "node": {
  864. "__id__": 29
  865. },
  866. "_enabled": true,
  867. "__prefab": {
  868. "__id__": 48
  869. },
  870. "_visFlags": 0,
  871. "_customMaterial": null,
  872. "_srcBlendFactor": 2,
  873. "_dstBlendFactor": 4,
  874. "_color": {
  875. "__type__": "cc.Color",
  876. "r": 255,
  877. "g": 255,
  878. "b": 255,
  879. "a": 255
  880. },
  881. "_spriteFrame": {
  882. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  883. "__expectedType__": "cc.SpriteFrame"
  884. },
  885. "_type": 0,
  886. "_fillType": 0,
  887. "_sizeMode": 2,
  888. "_fillCenter": {
  889. "__type__": "cc.Vec2",
  890. "x": 0,
  891. "y": 0
  892. },
  893. "_fillStart": 0,
  894. "_fillRange": 0,
  895. "_isTrimmedMode": false,
  896. "_useGrayscale": false,
  897. "_atlas": null,
  898. "_id": ""
  899. },
  900. {
  901. "__type__": "cc.CompPrefabInfo",
  902. "fileId": "2bbdc2nlRAAY2uNqZ+8kOo"
  903. },
  904. {
  905. "__type__": "cc.PrefabInfo",
  906. "root": {
  907. "__id__": 1
  908. },
  909. "asset": {
  910. "__id__": 0
  911. },
  912. "fileId": "4cdhCDpKdGkI3bmDUTsRWp"
  913. },
  914. {
  915. "__type__": "cc.Node",
  916. "_name": "g",
  917. "_objFlags": 0,
  918. "_parent": {
  919. "__id__": 28
  920. },
  921. "_children": [
  922. {
  923. "__id__": 51
  924. }
  925. ],
  926. "_active": true,
  927. "_components": [
  928. {
  929. "__id__": 72
  930. },
  931. {
  932. "__id__": 74
  933. }
  934. ],
  935. "_prefab": {
  936. "__id__": 76
  937. },
  938. "_lpos": {
  939. "__type__": "cc.Vec3",
  940. "x": 220,
  941. "y": 0,
  942. "z": 0
  943. },
  944. "_lrot": {
  945. "__type__": "cc.Quat",
  946. "x": 0,
  947. "y": 0,
  948. "z": 0,
  949. "w": 1
  950. },
  951. "_lscale": {
  952. "__type__": "cc.Vec3",
  953. "x": 1,
  954. "y": 1,
  955. "z": 1
  956. },
  957. "_layer": 33554432,
  958. "_euler": {
  959. "__type__": "cc.Vec3",
  960. "x": 0,
  961. "y": 0,
  962. "z": 0
  963. },
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.Node",
  968. "_objFlags": 0,
  969. "_parent": {
  970. "__id__": 50
  971. },
  972. "_prefab": {
  973. "__id__": 52
  974. },
  975. "__editorExtras__": {}
  976. },
  977. {
  978. "__type__": "cc.PrefabInfo",
  979. "root": {
  980. "__id__": 51
  981. },
  982. "asset": {
  983. "__uuid__": "5f192278-7ef6-446d-9252-71e331226a67",
  984. "__expectedType__": "cc.Prefab"
  985. },
  986. "fileId": "84e6Gm3CtJ2opACdVLG5f/",
  987. "instance": {
  988. "__id__": 53
  989. }
  990. },
  991. {
  992. "__type__": "cc.PrefabInstance",
  993. "fileId": "8bRClAAPhGvo1SxcOkDBIm",
  994. "prefabRootNode": {
  995. "__id__": 1
  996. },
  997. "mountedChildren": [],
  998. "mountedComponents": [],
  999. "propertyOverrides": [
  1000. {
  1001. "__id__": 54
  1002. },
  1003. {
  1004. "__id__": 56
  1005. },
  1006. {
  1007. "__id__": 57
  1008. },
  1009. {
  1010. "__id__": 58
  1011. },
  1012. {
  1013. "__id__": 59
  1014. },
  1015. {
  1016. "__id__": 61
  1017. },
  1018. {
  1019. "__id__": 63
  1020. },
  1021. {
  1022. "__id__": 65
  1023. },
  1024. {
  1025. "__id__": 67
  1026. },
  1027. {
  1028. "__id__": 69
  1029. },
  1030. {
  1031. "__id__": 70
  1032. }
  1033. ],
  1034. "removedComponents": []
  1035. },
  1036. {
  1037. "__type__": "CCPropertyOverrideInfo",
  1038. "targetInfo": {
  1039. "__id__": 55
  1040. },
  1041. "propertyPath": [
  1042. "_name"
  1043. ],
  1044. "value": "role_lang"
  1045. },
  1046. {
  1047. "__type__": "cc.TargetInfo",
  1048. "localID": [
  1049. "84e6Gm3CtJ2opACdVLG5f/"
  1050. ]
  1051. },
  1052. {
  1053. "__type__": "CCPropertyOverrideInfo",
  1054. "targetInfo": {
  1055. "__id__": 55
  1056. },
  1057. "propertyPath": [
  1058. "_lpos"
  1059. ],
  1060. "value": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 50.401,
  1063. "y": 0,
  1064. "z": 0
  1065. }
  1066. },
  1067. {
  1068. "__type__": "CCPropertyOverrideInfo",
  1069. "targetInfo": {
  1070. "__id__": 55
  1071. },
  1072. "propertyPath": [
  1073. "_lrot"
  1074. ],
  1075. "value": {
  1076. "__type__": "cc.Quat",
  1077. "x": 0,
  1078. "y": 0,
  1079. "z": 0,
  1080. "w": 1
  1081. }
  1082. },
  1083. {
  1084. "__type__": "CCPropertyOverrideInfo",
  1085. "targetInfo": {
  1086. "__id__": 55
  1087. },
  1088. "propertyPath": [
  1089. "_euler"
  1090. ],
  1091. "value": {
  1092. "__type__": "cc.Vec3",
  1093. "x": 0,
  1094. "y": 0,
  1095. "z": 0
  1096. }
  1097. },
  1098. {
  1099. "__type__": "CCPropertyOverrideInfo",
  1100. "targetInfo": {
  1101. "__id__": 60
  1102. },
  1103. "propertyPath": [
  1104. "_string"
  1105. ],
  1106. "value": "14"
  1107. },
  1108. {
  1109. "__type__": "cc.TargetInfo",
  1110. "localID": [
  1111. "7eyftaaShMbqQ0iQPCELlY"
  1112. ]
  1113. },
  1114. {
  1115. "__type__": "CCPropertyOverrideInfo",
  1116. "targetInfo": {
  1117. "__id__": 62
  1118. },
  1119. "propertyPath": [
  1120. "_contentSize"
  1121. ],
  1122. "value": {
  1123. "__type__": "cc.Size",
  1124. "width": 48.89,
  1125. "height": 40
  1126. }
  1127. },
  1128. {
  1129. "__type__": "cc.TargetInfo",
  1130. "localID": [
  1131. "11Z9Y5S1JLs7bwR+zlJGob"
  1132. ]
  1133. },
  1134. {
  1135. "__type__": "CCPropertyOverrideInfo",
  1136. "targetInfo": {
  1137. "__id__": 64
  1138. },
  1139. "propertyPath": [
  1140. "_lscale"
  1141. ],
  1142. "value": {
  1143. "__type__": "cc.Vec3",
  1144. "x": 0.6,
  1145. "y": 0.6,
  1146. "z": 1
  1147. }
  1148. },
  1149. {
  1150. "__type__": "cc.TargetInfo",
  1151. "localID": [
  1152. "cbsVGkOf1OJa9bME8UBVP7"
  1153. ]
  1154. },
  1155. {
  1156. "__type__": "CCPropertyOverrideInfo",
  1157. "targetInfo": {
  1158. "__id__": 66
  1159. },
  1160. "propertyPath": [
  1161. "_lpos"
  1162. ],
  1163. "value": {
  1164. "__type__": "cc.Vec3",
  1165. "x": 0,
  1166. "y": 145.668,
  1167. "z": 0
  1168. }
  1169. },
  1170. {
  1171. "__type__": "cc.TargetInfo",
  1172. "localID": [
  1173. "1bLJ/PdH1PW5vbudtvy+UN"
  1174. ]
  1175. },
  1176. {
  1177. "__type__": "CCPropertyOverrideInfo",
  1178. "targetInfo": {
  1179. "__id__": 68
  1180. },
  1181. "propertyPath": [
  1182. "_size"
  1183. ],
  1184. "value": {
  1185. "__type__": "cc.Size",
  1186. "width": 180,
  1187. "height": 80
  1188. }
  1189. },
  1190. {
  1191. "__type__": "cc.TargetInfo",
  1192. "localID": [
  1193. "ffwL4KJ49HG6/l/lEvRKDO"
  1194. ]
  1195. },
  1196. {
  1197. "__type__": "CCPropertyOverrideInfo",
  1198. "targetInfo": {
  1199. "__id__": 68
  1200. },
  1201. "propertyPath": [
  1202. "_offset"
  1203. ],
  1204. "value": {
  1205. "__type__": "cc.Vec2",
  1206. "x": 0,
  1207. "y": 40
  1208. }
  1209. },
  1210. {
  1211. "__type__": "CCPropertyOverrideInfo",
  1212. "targetInfo": {
  1213. "__id__": 71
  1214. },
  1215. "propertyPath": [
  1216. "_contentSize"
  1217. ],
  1218. "value": {
  1219. "__type__": "cc.Size",
  1220. "width": 180,
  1221. "height": 80
  1222. }
  1223. },
  1224. {
  1225. "__type__": "cc.TargetInfo",
  1226. "localID": [
  1227. "c3XZSFkxFFHos3Lm69LPHj"
  1228. ]
  1229. },
  1230. {
  1231. "__type__": "cc.UITransform",
  1232. "_name": "",
  1233. "_objFlags": 0,
  1234. "__editorExtras__": {},
  1235. "node": {
  1236. "__id__": 50
  1237. },
  1238. "_enabled": true,
  1239. "__prefab": {
  1240. "__id__": 73
  1241. },
  1242. "_contentSize": {
  1243. "__type__": "cc.Size",
  1244. "width": 253,
  1245. "height": 142
  1246. },
  1247. "_anchorPoint": {
  1248. "__type__": "cc.Vec2",
  1249. "x": 0.5,
  1250. "y": 0.8
  1251. },
  1252. "_id": ""
  1253. },
  1254. {
  1255. "__type__": "cc.CompPrefabInfo",
  1256. "fileId": "1dKGwWa9lK9Z3SSK/t1R2s"
  1257. },
  1258. {
  1259. "__type__": "cc.Sprite",
  1260. "_name": "",
  1261. "_objFlags": 0,
  1262. "__editorExtras__": {},
  1263. "node": {
  1264. "__id__": 50
  1265. },
  1266. "_enabled": true,
  1267. "__prefab": {
  1268. "__id__": 75
  1269. },
  1270. "_visFlags": 0,
  1271. "_customMaterial": null,
  1272. "_srcBlendFactor": 2,
  1273. "_dstBlendFactor": 4,
  1274. "_color": {
  1275. "__type__": "cc.Color",
  1276. "r": 255,
  1277. "g": 255,
  1278. "b": 255,
  1279. "a": 255
  1280. },
  1281. "_spriteFrame": {
  1282. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  1283. "__expectedType__": "cc.SpriteFrame"
  1284. },
  1285. "_type": 0,
  1286. "_fillType": 0,
  1287. "_sizeMode": 2,
  1288. "_fillCenter": {
  1289. "__type__": "cc.Vec2",
  1290. "x": 0,
  1291. "y": 0
  1292. },
  1293. "_fillStart": 0,
  1294. "_fillRange": 0,
  1295. "_isTrimmedMode": false,
  1296. "_useGrayscale": false,
  1297. "_atlas": null,
  1298. "_id": ""
  1299. },
  1300. {
  1301. "__type__": "cc.CompPrefabInfo",
  1302. "fileId": "aboRsCfrJJZ7IhM/LujnRf"
  1303. },
  1304. {
  1305. "__type__": "cc.PrefabInfo",
  1306. "root": {
  1307. "__id__": 1
  1308. },
  1309. "asset": {
  1310. "__id__": 0
  1311. },
  1312. "fileId": "31yr2i/mBPloLoXAmchnEO"
  1313. },
  1314. {
  1315. "__type__": "cc.UITransform",
  1316. "_name": "",
  1317. "_objFlags": 0,
  1318. "__editorExtras__": {},
  1319. "node": {
  1320. "__id__": 28
  1321. },
  1322. "_enabled": true,
  1323. "__prefab": {
  1324. "__id__": 78
  1325. },
  1326. "_contentSize": {
  1327. "__type__": "cc.Size",
  1328. "width": 747,
  1329. "height": 300
  1330. },
  1331. "_anchorPoint": {
  1332. "__type__": "cc.Vec2",
  1333. "x": 0.5,
  1334. "y": 0.5
  1335. },
  1336. "_id": ""
  1337. },
  1338. {
  1339. "__type__": "cc.CompPrefabInfo",
  1340. "fileId": "0dJ/hxxItNSr8f/Klnalb3"
  1341. },
  1342. {
  1343. "__type__": "cc.PrefabInfo",
  1344. "root": {
  1345. "__id__": 1
  1346. },
  1347. "asset": {
  1348. "__id__": 0
  1349. },
  1350. "fileId": "905KfZRhdALYMYTJ3+lR6Q"
  1351. },
  1352. {
  1353. "__type__": "cc.Node",
  1354. "_name": "f",
  1355. "_objFlags": 0,
  1356. "_parent": {
  1357. "__id__": 1
  1358. },
  1359. "_children": [
  1360. {
  1361. "__id__": 81
  1362. }
  1363. ],
  1364. "_active": true,
  1365. "_components": [
  1366. {
  1367. "__id__": 111
  1368. }
  1369. ],
  1370. "_prefab": {
  1371. "__id__": 113
  1372. },
  1373. "_lpos": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 0,
  1376. "y": -1250,
  1377. "z": 0
  1378. },
  1379. "_lrot": {
  1380. "__type__": "cc.Quat",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0,
  1384. "w": 1
  1385. },
  1386. "_lscale": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 1,
  1389. "y": 1,
  1390. "z": 1
  1391. },
  1392. "_layer": 33554432,
  1393. "_euler": {
  1394. "__type__": "cc.Vec3",
  1395. "x": 0,
  1396. "y": 0,
  1397. "z": 0
  1398. },
  1399. "_id": ""
  1400. },
  1401. {
  1402. "__type__": "cc.Node",
  1403. "_name": "g",
  1404. "_objFlags": 0,
  1405. "_parent": {
  1406. "__id__": 80
  1407. },
  1408. "_children": [
  1409. {
  1410. "__id__": 82
  1411. },
  1412. {
  1413. "__id__": 94
  1414. }
  1415. ],
  1416. "_active": true,
  1417. "_components": [
  1418. {
  1419. "__id__": 106
  1420. },
  1421. {
  1422. "__id__": 108
  1423. }
  1424. ],
  1425. "_prefab": {
  1426. "__id__": 110
  1427. },
  1428. "_lpos": {
  1429. "__type__": "cc.Vec3",
  1430. "x": 0,
  1431. "y": 0,
  1432. "z": 0
  1433. },
  1434. "_lrot": {
  1435. "__type__": "cc.Quat",
  1436. "x": 0,
  1437. "y": 0,
  1438. "z": 0,
  1439. "w": 1
  1440. },
  1441. "_lscale": {
  1442. "__type__": "cc.Vec3",
  1443. "x": 1,
  1444. "y": 1,
  1445. "z": 1
  1446. },
  1447. "_layer": 33554432,
  1448. "_euler": {
  1449. "__type__": "cc.Vec3",
  1450. "x": 0,
  1451. "y": 0,
  1452. "z": 0
  1453. },
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.Node",
  1458. "_objFlags": 0,
  1459. "_parent": {
  1460. "__id__": 81
  1461. },
  1462. "_prefab": {
  1463. "__id__": 83
  1464. },
  1465. "__editorExtras__": {}
  1466. },
  1467. {
  1468. "__type__": "cc.PrefabInfo",
  1469. "root": {
  1470. "__id__": 82
  1471. },
  1472. "asset": {
  1473. "__uuid__": "e2c779ec-d352-473e-926a-ba4aad61bac8",
  1474. "__expectedType__": "cc.Prefab"
  1475. },
  1476. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1477. "instance": {
  1478. "__id__": 84
  1479. }
  1480. },
  1481. {
  1482. "__type__": "cc.PrefabInstance",
  1483. "fileId": "4ee4MT9spJx4vI8ZP4saLf",
  1484. "prefabRootNode": {
  1485. "__id__": 1
  1486. },
  1487. "mountedChildren": [],
  1488. "mountedComponents": [],
  1489. "propertyOverrides": [
  1490. {
  1491. "__id__": 85
  1492. },
  1493. {
  1494. "__id__": 87
  1495. },
  1496. {
  1497. "__id__": 88
  1498. },
  1499. {
  1500. "__id__": 89
  1501. },
  1502. {
  1503. "__id__": 90
  1504. },
  1505. {
  1506. "__id__": 92
  1507. }
  1508. ],
  1509. "removedComponents": []
  1510. },
  1511. {
  1512. "__type__": "CCPropertyOverrideInfo",
  1513. "targetInfo": {
  1514. "__id__": 86
  1515. },
  1516. "propertyPath": [
  1517. "_name"
  1518. ],
  1519. "value": "role_yezhu"
  1520. },
  1521. {
  1522. "__type__": "cc.TargetInfo",
  1523. "localID": [
  1524. "23Shh68qVKLJ0cCLTsPddX"
  1525. ]
  1526. },
  1527. {
  1528. "__type__": "CCPropertyOverrideInfo",
  1529. "targetInfo": {
  1530. "__id__": 86
  1531. },
  1532. "propertyPath": [
  1533. "_lpos"
  1534. ],
  1535. "value": {
  1536. "__type__": "cc.Vec3",
  1537. "x": -28.371,
  1538. "y": 0,
  1539. "z": 0
  1540. }
  1541. },
  1542. {
  1543. "__type__": "CCPropertyOverrideInfo",
  1544. "targetInfo": {
  1545. "__id__": 86
  1546. },
  1547. "propertyPath": [
  1548. "_lrot"
  1549. ],
  1550. "value": {
  1551. "__type__": "cc.Quat",
  1552. "x": 0,
  1553. "y": 0,
  1554. "z": 0,
  1555. "w": 1
  1556. }
  1557. },
  1558. {
  1559. "__type__": "CCPropertyOverrideInfo",
  1560. "targetInfo": {
  1561. "__id__": 86
  1562. },
  1563. "propertyPath": [
  1564. "_euler"
  1565. ],
  1566. "value": {
  1567. "__type__": "cc.Vec3",
  1568. "x": 0,
  1569. "y": 0,
  1570. "z": 0
  1571. }
  1572. },
  1573. {
  1574. "__type__": "CCPropertyOverrideInfo",
  1575. "targetInfo": {
  1576. "__id__": 91
  1577. },
  1578. "propertyPath": [
  1579. "_string"
  1580. ],
  1581. "value": "5"
  1582. },
  1583. {
  1584. "__type__": "cc.TargetInfo",
  1585. "localID": [
  1586. "3cxFYWW1RLiLNjw6kMjSKk"
  1587. ]
  1588. },
  1589. {
  1590. "__type__": "CCPropertyOverrideInfo",
  1591. "targetInfo": {
  1592. "__id__": 93
  1593. },
  1594. "propertyPath": [
  1595. "_contentSize"
  1596. ],
  1597. "value": {
  1598. "__type__": "cc.Size",
  1599. "width": 24.44,
  1600. "height": 40
  1601. }
  1602. },
  1603. {
  1604. "__type__": "cc.TargetInfo",
  1605. "localID": [
  1606. "d9R+nrXWtEf6ZgmiV+Scpc"
  1607. ]
  1608. },
  1609. {
  1610. "__type__": "cc.Node",
  1611. "_objFlags": 0,
  1612. "_parent": {
  1613. "__id__": 81
  1614. },
  1615. "_prefab": {
  1616. "__id__": 95
  1617. },
  1618. "__editorExtras__": {}
  1619. },
  1620. {
  1621. "__type__": "cc.PrefabInfo",
  1622. "root": {
  1623. "__id__": 94
  1624. },
  1625. "asset": {
  1626. "__uuid__": "5f192278-7ef6-446d-9252-71e331226a67",
  1627. "__expectedType__": "cc.Prefab"
  1628. },
  1629. "fileId": "84e6Gm3CtJ2opACdVLG5f/",
  1630. "instance": {
  1631. "__id__": 96
  1632. }
  1633. },
  1634. {
  1635. "__type__": "cc.PrefabInstance",
  1636. "fileId": "e3GphoY35DMIgsq1CoxiOT",
  1637. "prefabRootNode": {
  1638. "__id__": 1
  1639. },
  1640. "mountedChildren": [],
  1641. "mountedComponents": [],
  1642. "propertyOverrides": [
  1643. {
  1644. "__id__": 97
  1645. },
  1646. {
  1647. "__id__": 99
  1648. },
  1649. {
  1650. "__id__": 100
  1651. },
  1652. {
  1653. "__id__": 101
  1654. },
  1655. {
  1656. "__id__": 102
  1657. },
  1658. {
  1659. "__id__": 104
  1660. }
  1661. ],
  1662. "removedComponents": []
  1663. },
  1664. {
  1665. "__type__": "CCPropertyOverrideInfo",
  1666. "targetInfo": {
  1667. "__id__": 98
  1668. },
  1669. "propertyPath": [
  1670. "_name"
  1671. ],
  1672. "value": "role_lang"
  1673. },
  1674. {
  1675. "__type__": "cc.TargetInfo",
  1676. "localID": [
  1677. "84e6Gm3CtJ2opACdVLG5f/"
  1678. ]
  1679. },
  1680. {
  1681. "__type__": "CCPropertyOverrideInfo",
  1682. "targetInfo": {
  1683. "__id__": 98
  1684. },
  1685. "propertyPath": [
  1686. "_lpos"
  1687. ],
  1688. "value": {
  1689. "__type__": "cc.Vec3",
  1690. "x": 233.529,
  1691. "y": 0,
  1692. "z": 0
  1693. }
  1694. },
  1695. {
  1696. "__type__": "CCPropertyOverrideInfo",
  1697. "targetInfo": {
  1698. "__id__": 98
  1699. },
  1700. "propertyPath": [
  1701. "_lrot"
  1702. ],
  1703. "value": {
  1704. "__type__": "cc.Quat",
  1705. "x": 0,
  1706. "y": 0,
  1707. "z": 0,
  1708. "w": 1
  1709. }
  1710. },
  1711. {
  1712. "__type__": "CCPropertyOverrideInfo",
  1713. "targetInfo": {
  1714. "__id__": 98
  1715. },
  1716. "propertyPath": [
  1717. "_euler"
  1718. ],
  1719. "value": {
  1720. "__type__": "cc.Vec3",
  1721. "x": 0,
  1722. "y": 0,
  1723. "z": 0
  1724. }
  1725. },
  1726. {
  1727. "__type__": "CCPropertyOverrideInfo",
  1728. "targetInfo": {
  1729. "__id__": 103
  1730. },
  1731. "propertyPath": [
  1732. "_string"
  1733. ],
  1734. "value": "9"
  1735. },
  1736. {
  1737. "__type__": "cc.TargetInfo",
  1738. "localID": [
  1739. "7eyftaaShMbqQ0iQPCELlY"
  1740. ]
  1741. },
  1742. {
  1743. "__type__": "CCPropertyOverrideInfo",
  1744. "targetInfo": {
  1745. "__id__": 105
  1746. },
  1747. "propertyPath": [
  1748. "_contentSize"
  1749. ],
  1750. "value": {
  1751. "__type__": "cc.Size",
  1752. "width": 24.44,
  1753. "height": 40
  1754. }
  1755. },
  1756. {
  1757. "__type__": "cc.TargetInfo",
  1758. "localID": [
  1759. "11Z9Y5S1JLs7bwR+zlJGob"
  1760. ]
  1761. },
  1762. {
  1763. "__type__": "cc.UITransform",
  1764. "_name": "",
  1765. "_objFlags": 0,
  1766. "__editorExtras__": {},
  1767. "node": {
  1768. "__id__": 81
  1769. },
  1770. "_enabled": true,
  1771. "__prefab": {
  1772. "__id__": 107
  1773. },
  1774. "_contentSize": {
  1775. "__type__": "cc.Size",
  1776. "width": 719,
  1777. "height": 394
  1778. },
  1779. "_anchorPoint": {
  1780. "__type__": "cc.Vec2",
  1781. "x": 0.5,
  1782. "y": 0.8
  1783. },
  1784. "_id": ""
  1785. },
  1786. {
  1787. "__type__": "cc.CompPrefabInfo",
  1788. "fileId": "37a/x+NUlACpxEYPr03WHL"
  1789. },
  1790. {
  1791. "__type__": "cc.Sprite",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "__editorExtras__": {},
  1795. "node": {
  1796. "__id__": 81
  1797. },
  1798. "_enabled": true,
  1799. "__prefab": {
  1800. "__id__": 109
  1801. },
  1802. "_visFlags": 0,
  1803. "_customMaterial": null,
  1804. "_srcBlendFactor": 2,
  1805. "_dstBlendFactor": 4,
  1806. "_color": {
  1807. "__type__": "cc.Color",
  1808. "r": 255,
  1809. "g": 255,
  1810. "b": 255,
  1811. "a": 255
  1812. },
  1813. "_spriteFrame": {
  1814. "__uuid__": "3c8c1889-e867-466c-aab5-5a5edcf1e607@f9941",
  1815. "__expectedType__": "cc.SpriteFrame"
  1816. },
  1817. "_type": 0,
  1818. "_fillType": 0,
  1819. "_sizeMode": 2,
  1820. "_fillCenter": {
  1821. "__type__": "cc.Vec2",
  1822. "x": 0,
  1823. "y": 0
  1824. },
  1825. "_fillStart": 0,
  1826. "_fillRange": 0,
  1827. "_isTrimmedMode": false,
  1828. "_useGrayscale": false,
  1829. "_atlas": null,
  1830. "_id": ""
  1831. },
  1832. {
  1833. "__type__": "cc.CompPrefabInfo",
  1834. "fileId": "2bUDBR79dJ4LkHDnfKUlbf"
  1835. },
  1836. {
  1837. "__type__": "cc.PrefabInfo",
  1838. "root": {
  1839. "__id__": 1
  1840. },
  1841. "asset": {
  1842. "__id__": 0
  1843. },
  1844. "fileId": "3bcCDP4G9FBoyT6EOrAUKC"
  1845. },
  1846. {
  1847. "__type__": "cc.UITransform",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "__editorExtras__": {},
  1851. "node": {
  1852. "__id__": 80
  1853. },
  1854. "_enabled": true,
  1855. "__prefab": {
  1856. "__id__": 112
  1857. },
  1858. "_contentSize": {
  1859. "__type__": "cc.Size",
  1860. "width": 720,
  1861. "height": 300
  1862. },
  1863. "_anchorPoint": {
  1864. "__type__": "cc.Vec2",
  1865. "x": 0.5,
  1866. "y": 0.5
  1867. },
  1868. "_id": ""
  1869. },
  1870. {
  1871. "__type__": "cc.CompPrefabInfo",
  1872. "fileId": "e6FiixuTlJToDImeUFJjPU"
  1873. },
  1874. {
  1875. "__type__": "cc.PrefabInfo",
  1876. "root": {
  1877. "__id__": 1
  1878. },
  1879. "asset": {
  1880. "__id__": 0
  1881. },
  1882. "fileId": "5a18gAgz1K6KB8lYXWvVYP"
  1883. },
  1884. {
  1885. "__type__": "cc.UITransform",
  1886. "_name": "",
  1887. "_objFlags": 0,
  1888. "node": {
  1889. "__id__": 1
  1890. },
  1891. "_enabled": true,
  1892. "__prefab": {
  1893. "__id__": 115
  1894. },
  1895. "_contentSize": {
  1896. "__type__": "cc.Size",
  1897. "width": 720,
  1898. "height": 1400
  1899. },
  1900. "_anchorPoint": {
  1901. "__type__": "cc.Vec2",
  1902. "x": 0.5,
  1903. "y": 1
  1904. },
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.CompPrefabInfo",
  1909. "fileId": "f5C73TBO1BUaTJzq9UqK7o"
  1910. },
  1911. {
  1912. "__type__": "cc.Widget",
  1913. "_name": "",
  1914. "_objFlags": 0,
  1915. "node": {
  1916. "__id__": 1
  1917. },
  1918. "_enabled": true,
  1919. "__prefab": {
  1920. "__id__": 117
  1921. },
  1922. "_alignFlags": 40,
  1923. "_target": null,
  1924. "_left": 0,
  1925. "_right": 0,
  1926. "_top": 0,
  1927. "_bottom": 0,
  1928. "_horizontalCenter": 0,
  1929. "_verticalCenter": 0,
  1930. "_isAbsLeft": true,
  1931. "_isAbsRight": true,
  1932. "_isAbsTop": true,
  1933. "_isAbsBottom": true,
  1934. "_isAbsHorizontalCenter": true,
  1935. "_isAbsVerticalCenter": true,
  1936. "_originalWidth": 100,
  1937. "_originalHeight": 0,
  1938. "_alignMode": 2,
  1939. "_lockFlags": 0,
  1940. "_id": ""
  1941. },
  1942. {
  1943. "__type__": "cc.CompPrefabInfo",
  1944. "fileId": "514IyosJ9FLJyJjdTuWe/D"
  1945. },
  1946. {
  1947. "__type__": "cc.Layout",
  1948. "_name": "",
  1949. "_objFlags": 0,
  1950. "node": {
  1951. "__id__": 1
  1952. },
  1953. "_enabled": true,
  1954. "__prefab": {
  1955. "__id__": 119
  1956. },
  1957. "_resizeMode": 1,
  1958. "_layoutType": 2,
  1959. "_cellSize": {
  1960. "__type__": "cc.Size",
  1961. "width": 40,
  1962. "height": 40
  1963. },
  1964. "_startAxis": 0,
  1965. "_paddingLeft": 0,
  1966. "_paddingRight": 0,
  1967. "_paddingTop": 0,
  1968. "_paddingBottom": 0,
  1969. "_spacingX": 0,
  1970. "_spacingY": 0,
  1971. "_verticalDirection": 1,
  1972. "_horizontalDirection": 0,
  1973. "_constraint": 0,
  1974. "_constraintNum": 2,
  1975. "_affectedByScale": false,
  1976. "_isAlign": false,
  1977. "_id": ""
  1978. },
  1979. {
  1980. "__type__": "cc.CompPrefabInfo",
  1981. "fileId": "3e40aiiXNPZK59rLGry/jm"
  1982. },
  1983. {
  1984. "__type__": "cc.PrefabInfo",
  1985. "root": {
  1986. "__id__": 1
  1987. },
  1988. "asset": {
  1989. "__id__": 0
  1990. },
  1991. "fileId": "96sI46BKJGa6hjFwLecxx8",
  1992. "nestedPrefabInstanceRoots": [
  1993. {
  1994. "__id__": 8
  1995. },
  1996. {
  1997. "__id__": 30
  1998. },
  1999. {
  2000. "__id__": 51
  2001. },
  2002. {
  2003. "__id__": 82
  2004. },
  2005. {
  2006. "__id__": 94
  2007. }
  2008. ]
  2009. }
  2010. ]