level_1.prefab 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "level_1",
  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": "level_1",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 22
  26. },
  27. {
  28. "__id__": 111
  29. },
  30. {
  31. "__id__": 115
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 171
  38. },
  39. {
  40. "__id__": 173
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 175
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 1073741824,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "Camera",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. }
  87. ],
  88. "_active": true,
  89. "_components": [
  90. {
  91. "__id__": 19
  92. }
  93. ],
  94. "_prefab": {
  95. "__id__": 21
  96. },
  97. "_lpos": {
  98. "__type__": "cc.Vec3",
  99. "x": 13.039685409948731,
  100. "y": 7.46931071245956,
  101. "z": 19.671765671858555
  102. },
  103. "_lrot": {
  104. "__type__": "cc.Quat",
  105. "x": -0.12285479828967974,
  106. "y": 0.2961630826983778,
  107. "z": 0.03844482155057762,
  108. "w": 0.9464228033388355
  109. },
  110. "_lscale": {
  111. "__type__": "cc.Vec3",
  112. "x": 1,
  113. "y": 1,
  114. "z": 1
  115. },
  116. "_mobility": 0,
  117. "_layer": 1073741824,
  118. "_euler": {
  119. "__type__": "cc.Vec3",
  120. "x": -14.792372002831248,
  121. "y": 34.75282345750882,
  122. "z": 7.951386703658792e-16
  123. },
  124. "_id": ""
  125. },
  126. {
  127. "__type__": "cc.Node",
  128. "_objFlags": 0,
  129. "_parent": {
  130. "__id__": 2
  131. },
  132. "_prefab": {
  133. "__id__": 4
  134. },
  135. "__editorExtras__": {}
  136. },
  137. {
  138. "__type__": "cc.PrefabInfo",
  139. "root": {
  140. "__id__": 3
  141. },
  142. "asset": {
  143. "__uuid__": "e444abad-cc59-49e7-b1d3-3991fb889333@281d6",
  144. "__expectedType__": "cc.Prefab"
  145. },
  146. "fileId": "90EgWO34JdrbULtMnlTGCL",
  147. "instance": {
  148. "__id__": 5
  149. },
  150. "targetOverrides": null
  151. },
  152. {
  153. "__type__": "cc.PrefabInstance",
  154. "fileId": "e6p3neo8RJT7nF1qzNCZHy",
  155. "prefabRootNode": {
  156. "__id__": 1
  157. },
  158. "mountedChildren": [],
  159. "mountedComponents": [
  160. {
  161. "__id__": 6
  162. }
  163. ],
  164. "propertyOverrides": [
  165. {
  166. "__id__": 10
  167. },
  168. {
  169. "__id__": 12
  170. },
  171. {
  172. "__id__": 13
  173. },
  174. {
  175. "__id__": 14
  176. },
  177. {
  178. "__id__": 15
  179. },
  180. {
  181. "__id__": 17
  182. },
  183. {
  184. "__id__": 18
  185. }
  186. ],
  187. "removedComponents": []
  188. },
  189. {
  190. "__type__": "cc.MountedComponentsInfo",
  191. "targetInfo": {
  192. "__id__": 7
  193. },
  194. "components": [
  195. {
  196. "__id__": 8
  197. }
  198. ]
  199. },
  200. {
  201. "__type__": "cc.TargetInfo",
  202. "localID": [
  203. "90EgWO34JdrbULtMnlTGCL"
  204. ]
  205. },
  206. {
  207. "__type__": "2d900170r9IaYcEBvyODrgE",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "__editorExtras__": {
  211. "mountedRoot": {
  212. "__id__": 3
  213. }
  214. },
  215. "node": {
  216. "__id__": 3
  217. },
  218. "_enabled": true,
  219. "__prefab": {
  220. "__id__": 9
  221. },
  222. "_id": ""
  223. },
  224. {
  225. "__type__": "cc.CompPrefabInfo",
  226. "fileId": "a1KZfB6nlFS4D7f+o5I87B"
  227. },
  228. {
  229. "__type__": "CCPropertyOverrideInfo",
  230. "targetInfo": {
  231. "__id__": 11
  232. },
  233. "propertyPath": [
  234. "_name"
  235. ],
  236. "value": "gun"
  237. },
  238. {
  239. "__type__": "cc.TargetInfo",
  240. "localID": [
  241. "90EgWO34JdrbULtMnlTGCL"
  242. ]
  243. },
  244. {
  245. "__type__": "CCPropertyOverrideInfo",
  246. "targetInfo": {
  247. "__id__": 11
  248. },
  249. "propertyPath": [
  250. "_lpos"
  251. ],
  252. "value": {
  253. "__type__": "cc.Vec3",
  254. "x": 1,
  255. "y": -2.729,
  256. "z": -5.21
  257. }
  258. },
  259. {
  260. "__type__": "CCPropertyOverrideInfo",
  261. "targetInfo": {
  262. "__id__": 11
  263. },
  264. "propertyPath": [
  265. "_lrot"
  266. ],
  267. "value": {
  268. "__type__": "cc.Quat",
  269. "x": 0,
  270. "y": 0,
  271. "z": 0,
  272. "w": 1
  273. }
  274. },
  275. {
  276. "__type__": "CCPropertyOverrideInfo",
  277. "targetInfo": {
  278. "__id__": 11
  279. },
  280. "propertyPath": [
  281. "_euler"
  282. ],
  283. "value": {
  284. "__type__": "cc.Vec3",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0
  288. }
  289. },
  290. {
  291. "__type__": "CCPropertyOverrideInfo",
  292. "targetInfo": {
  293. "__id__": 16
  294. },
  295. "propertyPath": [
  296. "playOnLoad"
  297. ],
  298. "value": false
  299. },
  300. {
  301. "__type__": "cc.TargetInfo",
  302. "localID": [
  303. "94hiJZMINfr5fV51l2Q74K"
  304. ]
  305. },
  306. {
  307. "__type__": "CCPropertyOverrideInfo",
  308. "targetInfo": {
  309. "__id__": 11
  310. },
  311. "propertyPath": [
  312. "_lscale"
  313. ],
  314. "value": {
  315. "__type__": "cc.Vec3",
  316. "x": 0.2,
  317. "y": 0.2,
  318. "z": 0.2
  319. }
  320. },
  321. {
  322. "__type__": "CCPropertyOverrideInfo",
  323. "targetInfo": {
  324. "__id__": 11
  325. },
  326. "propertyPath": [
  327. "_active"
  328. ],
  329. "value": true
  330. },
  331. {
  332. "__type__": "cc.Camera",
  333. "_name": "Camera<CameraComponent>",
  334. "_objFlags": 0,
  335. "__editorExtras__": {},
  336. "node": {
  337. "__id__": 2
  338. },
  339. "_enabled": true,
  340. "__prefab": {
  341. "__id__": 20
  342. },
  343. "_projection": 1,
  344. "_priority": 0,
  345. "_fov": 45,
  346. "_fovAxis": 0,
  347. "_orthoHeight": 10,
  348. "_near": 1,
  349. "_far": 1000,
  350. "_color": {
  351. "__type__": "cc.Color",
  352. "r": 51,
  353. "g": 76,
  354. "b": 120,
  355. "a": 255
  356. },
  357. "_depth": 1,
  358. "_stencil": 0,
  359. "_clearFlags": 7,
  360. "_rect": {
  361. "__type__": "cc.Rect",
  362. "x": 0,
  363. "y": 0,
  364. "width": 1,
  365. "height": 1
  366. },
  367. "_aperture": 19,
  368. "_shutter": 7,
  369. "_iso": 0,
  370. "_screenScale": 1,
  371. "_visibility": 1073741824,
  372. "_targetTexture": null,
  373. "_postProcess": null,
  374. "_usePostProcess": false,
  375. "_cameraType": -1,
  376. "_trackingType": 0,
  377. "_id": ""
  378. },
  379. {
  380. "__type__": "cc.CompPrefabInfo",
  381. "fileId": "1fTlbTCo1MBpg/dCSUvK4j"
  382. },
  383. {
  384. "__type__": "cc.PrefabInfo",
  385. "root": {
  386. "__id__": 1
  387. },
  388. "asset": {
  389. "__id__": 0
  390. },
  391. "fileId": "02VZniVslEUIamHwPF076C",
  392. "instance": null,
  393. "targetOverrides": null,
  394. "nestedPrefabInstanceRoots": null
  395. },
  396. {
  397. "__type__": "cc.Node",
  398. "_name": "ets",
  399. "_objFlags": 0,
  400. "__editorExtras__": {},
  401. "_parent": {
  402. "__id__": 1
  403. },
  404. "_children": [
  405. {
  406. "__id__": 23
  407. },
  408. {
  409. "__id__": 52
  410. },
  411. {
  412. "__id__": 81
  413. }
  414. ],
  415. "_active": true,
  416. "_components": [],
  417. "_prefab": {
  418. "__id__": 110
  419. },
  420. "_lpos": {
  421. "__type__": "cc.Vec3",
  422. "x": 0,
  423. "y": 0,
  424. "z": 0
  425. },
  426. "_lrot": {
  427. "__type__": "cc.Quat",
  428. "x": 0,
  429. "y": 0,
  430. "z": 0,
  431. "w": 1
  432. },
  433. "_lscale": {
  434. "__type__": "cc.Vec3",
  435. "x": 1,
  436. "y": 1,
  437. "z": 1
  438. },
  439. "_mobility": 0,
  440. "_layer": 1073741824,
  441. "_euler": {
  442. "__type__": "cc.Vec3",
  443. "x": 0,
  444. "y": 0,
  445. "z": 0
  446. },
  447. "_id": ""
  448. },
  449. {
  450. "__type__": "cc.Node",
  451. "_objFlags": 0,
  452. "_parent": {
  453. "__id__": 22
  454. },
  455. "_prefab": {
  456. "__id__": 24
  457. },
  458. "__editorExtras__": {}
  459. },
  460. {
  461. "__type__": "cc.PrefabInfo",
  462. "root": {
  463. "__id__": 23
  464. },
  465. "asset": {
  466. "__uuid__": "7cef9a87-b169-4934-a57b-09eafc129e91",
  467. "__expectedType__": "cc.Prefab"
  468. },
  469. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  470. "instance": {
  471. "__id__": 25
  472. },
  473. "targetOverrides": [
  474. {
  475. "__id__": 31
  476. },
  477. {
  478. "__id__": 34
  479. },
  480. {
  481. "__id__": 36
  482. },
  483. {
  484. "__id__": 38
  485. },
  486. {
  487. "__id__": 40
  488. },
  489. {
  490. "__id__": 42
  491. },
  492. {
  493. "__id__": 44
  494. },
  495. {
  496. "__id__": 46
  497. },
  498. {
  499. "__id__": 48
  500. },
  501. {
  502. "__id__": 50
  503. }
  504. ]
  505. },
  506. {
  507. "__type__": "cc.PrefabInstance",
  508. "fileId": "60G7KGTGJAXojBi9nWKo9q",
  509. "prefabRootNode": {
  510. "__id__": 1
  511. },
  512. "mountedChildren": [],
  513. "mountedComponents": [],
  514. "propertyOverrides": [
  515. {
  516. "__id__": 26
  517. },
  518. {
  519. "__id__": 28
  520. },
  521. {
  522. "__id__": 29
  523. },
  524. {
  525. "__id__": 30
  526. }
  527. ],
  528. "removedComponents": []
  529. },
  530. {
  531. "__type__": "CCPropertyOverrideInfo",
  532. "targetInfo": {
  533. "__id__": 27
  534. },
  535. "propertyPath": [
  536. "_name"
  537. ],
  538. "value": "et"
  539. },
  540. {
  541. "__type__": "cc.TargetInfo",
  542. "localID": [
  543. "c46/YsCPVOJYA4mWEpNYRx"
  544. ]
  545. },
  546. {
  547. "__type__": "CCPropertyOverrideInfo",
  548. "targetInfo": {
  549. "__id__": 27
  550. },
  551. "propertyPath": [
  552. "_lpos"
  553. ],
  554. "value": {
  555. "__type__": "cc.Vec3",
  556. "x": 4.63299560546875,
  557. "y": 1.5570068359375,
  558. "z": 0
  559. }
  560. },
  561. {
  562. "__type__": "CCPropertyOverrideInfo",
  563. "targetInfo": {
  564. "__id__": 27
  565. },
  566. "propertyPath": [
  567. "_lrot"
  568. ],
  569. "value": {
  570. "__type__": "cc.Quat",
  571. "x": 0,
  572. "y": 0,
  573. "z": 0,
  574. "w": 1
  575. }
  576. },
  577. {
  578. "__type__": "CCPropertyOverrideInfo",
  579. "targetInfo": {
  580. "__id__": 27
  581. },
  582. "propertyPath": [
  583. "_euler"
  584. ],
  585. "value": {
  586. "__type__": "cc.Vec3",
  587. "x": 0,
  588. "y": 0,
  589. "z": 0
  590. }
  591. },
  592. {
  593. "__type__": "cc.TargetOverrideInfo",
  594. "source": null,
  595. "sourceInfo": null,
  596. "propertyPath": [
  597. "head"
  598. ],
  599. "target": {
  600. "__id__": 32
  601. },
  602. "targetInfo": {
  603. "__id__": 33
  604. }
  605. },
  606. {
  607. "__type__": "cc.Node",
  608. "__editorExtras__": {}
  609. },
  610. {
  611. "__type__": "cc.TargetInfo",
  612. "localID": [
  613. "bfmKQWxv9ZMbMEWU4vbL3x"
  614. ]
  615. },
  616. {
  617. "__type__": "cc.TargetOverrideInfo",
  618. "source": null,
  619. "sourceInfo": null,
  620. "propertyPath": [
  621. "leftHandGuge"
  622. ],
  623. "target": {
  624. "__id__": 32
  625. },
  626. "targetInfo": {
  627. "__id__": 35
  628. }
  629. },
  630. {
  631. "__type__": "cc.TargetInfo",
  632. "localID": [
  633. "e3T0aJoqxS67bXwcMA5jEA"
  634. ]
  635. },
  636. {
  637. "__type__": "cc.TargetOverrideInfo",
  638. "source": null,
  639. "sourceInfo": null,
  640. "propertyPath": [
  641. "rightHandGuge"
  642. ],
  643. "target": {
  644. "__id__": 32
  645. },
  646. "targetInfo": {
  647. "__id__": 37
  648. }
  649. },
  650. {
  651. "__type__": "cc.TargetInfo",
  652. "localID": [
  653. "fcminXK/JTYqkfyfb0GbA1"
  654. ]
  655. },
  656. {
  657. "__type__": "cc.TargetOverrideInfo",
  658. "source": null,
  659. "sourceInfo": null,
  660. "propertyPath": [
  661. "leftFootGuge"
  662. ],
  663. "target": {
  664. "__id__": 32
  665. },
  666. "targetInfo": {
  667. "__id__": 39
  668. }
  669. },
  670. {
  671. "__type__": "cc.TargetInfo",
  672. "localID": [
  673. "5812eQ4N9YzYzuc53jWCyV"
  674. ]
  675. },
  676. {
  677. "__type__": "cc.TargetOverrideInfo",
  678. "source": null,
  679. "sourceInfo": null,
  680. "propertyPath": [
  681. "rightFootGuge"
  682. ],
  683. "target": {
  684. "__id__": 32
  685. },
  686. "targetInfo": {
  687. "__id__": 41
  688. }
  689. },
  690. {
  691. "__type__": "cc.TargetInfo",
  692. "localID": [
  693. "febDa+o2JfT4xIJfcONmNF"
  694. ]
  695. },
  696. {
  697. "__type__": "cc.TargetOverrideInfo",
  698. "source": null,
  699. "sourceInfo": null,
  700. "propertyPath": [
  701. "body"
  702. ],
  703. "target": {
  704. "__id__": 32
  705. },
  706. "targetInfo": {
  707. "__id__": 43
  708. }
  709. },
  710. {
  711. "__type__": "cc.TargetInfo",
  712. "localID": [
  713. "2cryxi6eJQjI0ahBXRHmv0"
  714. ]
  715. },
  716. {
  717. "__type__": "cc.TargetOverrideInfo",
  718. "source": null,
  719. "sourceInfo": null,
  720. "propertyPath": [
  721. "leftHand"
  722. ],
  723. "target": {
  724. "__id__": 32
  725. },
  726. "targetInfo": {
  727. "__id__": 45
  728. }
  729. },
  730. {
  731. "__type__": "cc.TargetInfo",
  732. "localID": [
  733. "2b3DqwMGRdQp3TLOY6F0wq"
  734. ]
  735. },
  736. {
  737. "__type__": "cc.TargetOverrideInfo",
  738. "source": null,
  739. "sourceInfo": null,
  740. "propertyPath": [
  741. "leftFoot"
  742. ],
  743. "target": {
  744. "__id__": 32
  745. },
  746. "targetInfo": {
  747. "__id__": 47
  748. }
  749. },
  750. {
  751. "__type__": "cc.TargetInfo",
  752. "localID": [
  753. "d5hbOlRfZdbbldzztYEURw"
  754. ]
  755. },
  756. {
  757. "__type__": "cc.TargetOverrideInfo",
  758. "source": null,
  759. "sourceInfo": null,
  760. "propertyPath": [
  761. "rightHand"
  762. ],
  763. "target": {
  764. "__id__": 32
  765. },
  766. "targetInfo": {
  767. "__id__": 49
  768. }
  769. },
  770. {
  771. "__type__": "cc.TargetInfo",
  772. "localID": [
  773. "6f/n08RbBWHL3k1F2FCTi7"
  774. ]
  775. },
  776. {
  777. "__type__": "cc.TargetOverrideInfo",
  778. "source": null,
  779. "sourceInfo": null,
  780. "propertyPath": [
  781. "rightFoot"
  782. ],
  783. "target": {
  784. "__id__": 32
  785. },
  786. "targetInfo": {
  787. "__id__": 51
  788. }
  789. },
  790. {
  791. "__type__": "cc.TargetInfo",
  792. "localID": [
  793. "03SqETQX9bBaWKPFWJYF9M"
  794. ]
  795. },
  796. {
  797. "__type__": "cc.Node",
  798. "_objFlags": 0,
  799. "_parent": {
  800. "__id__": 22
  801. },
  802. "_prefab": {
  803. "__id__": 53
  804. },
  805. "__editorExtras__": {}
  806. },
  807. {
  808. "__type__": "cc.PrefabInfo",
  809. "root": {
  810. "__id__": 52
  811. },
  812. "asset": {
  813. "__uuid__": "7cef9a87-b169-4934-a57b-09eafc129e91",
  814. "__expectedType__": "cc.Prefab"
  815. },
  816. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  817. "instance": {
  818. "__id__": 54
  819. },
  820. "targetOverrides": [
  821. {
  822. "__id__": 60
  823. },
  824. {
  825. "__id__": 63
  826. },
  827. {
  828. "__id__": 65
  829. },
  830. {
  831. "__id__": 67
  832. },
  833. {
  834. "__id__": 69
  835. },
  836. {
  837. "__id__": 71
  838. },
  839. {
  840. "__id__": 73
  841. },
  842. {
  843. "__id__": 75
  844. },
  845. {
  846. "__id__": 77
  847. },
  848. {
  849. "__id__": 79
  850. }
  851. ]
  852. },
  853. {
  854. "__type__": "cc.PrefabInstance",
  855. "fileId": "6dEWHN2GBERJICkA49tz1y",
  856. "prefabRootNode": {
  857. "__id__": 1
  858. },
  859. "mountedChildren": [],
  860. "mountedComponents": [],
  861. "propertyOverrides": [
  862. {
  863. "__id__": 55
  864. },
  865. {
  866. "__id__": 57
  867. },
  868. {
  869. "__id__": 58
  870. },
  871. {
  872. "__id__": 59
  873. }
  874. ],
  875. "removedComponents": []
  876. },
  877. {
  878. "__type__": "CCPropertyOverrideInfo",
  879. "targetInfo": {
  880. "__id__": 56
  881. },
  882. "propertyPath": [
  883. "_name"
  884. ],
  885. "value": "et-001"
  886. },
  887. {
  888. "__type__": "cc.TargetInfo",
  889. "localID": [
  890. "c46/YsCPVOJYA4mWEpNYRx"
  891. ]
  892. },
  893. {
  894. "__type__": "CCPropertyOverrideInfo",
  895. "targetInfo": {
  896. "__id__": 56
  897. },
  898. "propertyPath": [
  899. "_lpos"
  900. ],
  901. "value": {
  902. "__type__": "cc.Vec3",
  903. "x": 7.35699462890625,
  904. "y": 1.78997802734375,
  905. "z": -3.2320001125335693
  906. }
  907. },
  908. {
  909. "__type__": "CCPropertyOverrideInfo",
  910. "targetInfo": {
  911. "__id__": 56
  912. },
  913. "propertyPath": [
  914. "_lrot"
  915. ],
  916. "value": {
  917. "__type__": "cc.Quat",
  918. "x": 0,
  919. "y": 0,
  920. "z": 0,
  921. "w": 1
  922. }
  923. },
  924. {
  925. "__type__": "CCPropertyOverrideInfo",
  926. "targetInfo": {
  927. "__id__": 56
  928. },
  929. "propertyPath": [
  930. "_euler"
  931. ],
  932. "value": {
  933. "__type__": "cc.Vec3",
  934. "x": 0,
  935. "y": 0,
  936. "z": 0
  937. }
  938. },
  939. {
  940. "__type__": "cc.TargetOverrideInfo",
  941. "source": null,
  942. "sourceInfo": null,
  943. "propertyPath": [
  944. "head"
  945. ],
  946. "target": {
  947. "__id__": 61
  948. },
  949. "targetInfo": {
  950. "__id__": 62
  951. }
  952. },
  953. {
  954. "__type__": "cc.Node",
  955. "__editorExtras__": {}
  956. },
  957. {
  958. "__type__": "cc.TargetInfo",
  959. "localID": [
  960. "bfmKQWxv9ZMbMEWU4vbL3x"
  961. ]
  962. },
  963. {
  964. "__type__": "cc.TargetOverrideInfo",
  965. "source": null,
  966. "sourceInfo": null,
  967. "propertyPath": [
  968. "leftHandGuge"
  969. ],
  970. "target": {
  971. "__id__": 61
  972. },
  973. "targetInfo": {
  974. "__id__": 64
  975. }
  976. },
  977. {
  978. "__type__": "cc.TargetInfo",
  979. "localID": [
  980. "e3T0aJoqxS67bXwcMA5jEA"
  981. ]
  982. },
  983. {
  984. "__type__": "cc.TargetOverrideInfo",
  985. "source": null,
  986. "sourceInfo": null,
  987. "propertyPath": [
  988. "rightHandGuge"
  989. ],
  990. "target": {
  991. "__id__": 61
  992. },
  993. "targetInfo": {
  994. "__id__": 66
  995. }
  996. },
  997. {
  998. "__type__": "cc.TargetInfo",
  999. "localID": [
  1000. "fcminXK/JTYqkfyfb0GbA1"
  1001. ]
  1002. },
  1003. {
  1004. "__type__": "cc.TargetOverrideInfo",
  1005. "source": null,
  1006. "sourceInfo": null,
  1007. "propertyPath": [
  1008. "leftFootGuge"
  1009. ],
  1010. "target": {
  1011. "__id__": 61
  1012. },
  1013. "targetInfo": {
  1014. "__id__": 68
  1015. }
  1016. },
  1017. {
  1018. "__type__": "cc.TargetInfo",
  1019. "localID": [
  1020. "5812eQ4N9YzYzuc53jWCyV"
  1021. ]
  1022. },
  1023. {
  1024. "__type__": "cc.TargetOverrideInfo",
  1025. "source": null,
  1026. "sourceInfo": null,
  1027. "propertyPath": [
  1028. "rightFootGuge"
  1029. ],
  1030. "target": {
  1031. "__id__": 61
  1032. },
  1033. "targetInfo": {
  1034. "__id__": 70
  1035. }
  1036. },
  1037. {
  1038. "__type__": "cc.TargetInfo",
  1039. "localID": [
  1040. "febDa+o2JfT4xIJfcONmNF"
  1041. ]
  1042. },
  1043. {
  1044. "__type__": "cc.TargetOverrideInfo",
  1045. "source": null,
  1046. "sourceInfo": null,
  1047. "propertyPath": [
  1048. "body"
  1049. ],
  1050. "target": {
  1051. "__id__": 61
  1052. },
  1053. "targetInfo": {
  1054. "__id__": 72
  1055. }
  1056. },
  1057. {
  1058. "__type__": "cc.TargetInfo",
  1059. "localID": [
  1060. "2cryxi6eJQjI0ahBXRHmv0"
  1061. ]
  1062. },
  1063. {
  1064. "__type__": "cc.TargetOverrideInfo",
  1065. "source": null,
  1066. "sourceInfo": null,
  1067. "propertyPath": [
  1068. "leftHand"
  1069. ],
  1070. "target": {
  1071. "__id__": 61
  1072. },
  1073. "targetInfo": {
  1074. "__id__": 74
  1075. }
  1076. },
  1077. {
  1078. "__type__": "cc.TargetInfo",
  1079. "localID": [
  1080. "2b3DqwMGRdQp3TLOY6F0wq"
  1081. ]
  1082. },
  1083. {
  1084. "__type__": "cc.TargetOverrideInfo",
  1085. "source": null,
  1086. "sourceInfo": null,
  1087. "propertyPath": [
  1088. "leftFoot"
  1089. ],
  1090. "target": {
  1091. "__id__": 61
  1092. },
  1093. "targetInfo": {
  1094. "__id__": 76
  1095. }
  1096. },
  1097. {
  1098. "__type__": "cc.TargetInfo",
  1099. "localID": [
  1100. "d5hbOlRfZdbbldzztYEURw"
  1101. ]
  1102. },
  1103. {
  1104. "__type__": "cc.TargetOverrideInfo",
  1105. "source": null,
  1106. "sourceInfo": null,
  1107. "propertyPath": [
  1108. "rightHand"
  1109. ],
  1110. "target": {
  1111. "__id__": 61
  1112. },
  1113. "targetInfo": {
  1114. "__id__": 78
  1115. }
  1116. },
  1117. {
  1118. "__type__": "cc.TargetInfo",
  1119. "localID": [
  1120. "6f/n08RbBWHL3k1F2FCTi7"
  1121. ]
  1122. },
  1123. {
  1124. "__type__": "cc.TargetOverrideInfo",
  1125. "source": null,
  1126. "sourceInfo": null,
  1127. "propertyPath": [
  1128. "rightFoot"
  1129. ],
  1130. "target": {
  1131. "__id__": 61
  1132. },
  1133. "targetInfo": {
  1134. "__id__": 80
  1135. }
  1136. },
  1137. {
  1138. "__type__": "cc.TargetInfo",
  1139. "localID": [
  1140. "03SqETQX9bBaWKPFWJYF9M"
  1141. ]
  1142. },
  1143. {
  1144. "__type__": "cc.Node",
  1145. "_objFlags": 0,
  1146. "_parent": {
  1147. "__id__": 22
  1148. },
  1149. "_prefab": {
  1150. "__id__": 82
  1151. },
  1152. "__editorExtras__": {}
  1153. },
  1154. {
  1155. "__type__": "cc.PrefabInfo",
  1156. "root": {
  1157. "__id__": 81
  1158. },
  1159. "asset": {
  1160. "__uuid__": "7cef9a87-b169-4934-a57b-09eafc129e91",
  1161. "__expectedType__": "cc.Prefab"
  1162. },
  1163. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1164. "instance": {
  1165. "__id__": 83
  1166. },
  1167. "targetOverrides": [
  1168. {
  1169. "__id__": 89
  1170. },
  1171. {
  1172. "__id__": 92
  1173. },
  1174. {
  1175. "__id__": 94
  1176. },
  1177. {
  1178. "__id__": 96
  1179. },
  1180. {
  1181. "__id__": 98
  1182. },
  1183. {
  1184. "__id__": 100
  1185. },
  1186. {
  1187. "__id__": 102
  1188. },
  1189. {
  1190. "__id__": 104
  1191. },
  1192. {
  1193. "__id__": 106
  1194. },
  1195. {
  1196. "__id__": 108
  1197. }
  1198. ]
  1199. },
  1200. {
  1201. "__type__": "cc.PrefabInstance",
  1202. "fileId": "755t8rUWtMN4jQUb2H64c7",
  1203. "prefabRootNode": {
  1204. "__id__": 1
  1205. },
  1206. "mountedChildren": [],
  1207. "mountedComponents": [],
  1208. "propertyOverrides": [
  1209. {
  1210. "__id__": 84
  1211. },
  1212. {
  1213. "__id__": 86
  1214. },
  1215. {
  1216. "__id__": 87
  1217. },
  1218. {
  1219. "__id__": 88
  1220. }
  1221. ],
  1222. "removedComponents": []
  1223. },
  1224. {
  1225. "__type__": "CCPropertyOverrideInfo",
  1226. "targetInfo": {
  1227. "__id__": 85
  1228. },
  1229. "propertyPath": [
  1230. "_name"
  1231. ],
  1232. "value": "et-002"
  1233. },
  1234. {
  1235. "__type__": "cc.TargetInfo",
  1236. "localID": [
  1237. "c46/YsCPVOJYA4mWEpNYRx"
  1238. ]
  1239. },
  1240. {
  1241. "__type__": "CCPropertyOverrideInfo",
  1242. "targetInfo": {
  1243. "__id__": 85
  1244. },
  1245. "propertyPath": [
  1246. "_lpos"
  1247. ],
  1248. "value": {
  1249. "__type__": "cc.Vec3",
  1250. "x": -5.739013671875,
  1251. "y": 0.9520263671875,
  1252. "z": 0.6930000185966492
  1253. }
  1254. },
  1255. {
  1256. "__type__": "CCPropertyOverrideInfo",
  1257. "targetInfo": {
  1258. "__id__": 85
  1259. },
  1260. "propertyPath": [
  1261. "_lrot"
  1262. ],
  1263. "value": {
  1264. "__type__": "cc.Quat",
  1265. "x": 0,
  1266. "y": 0,
  1267. "z": 0,
  1268. "w": 1
  1269. }
  1270. },
  1271. {
  1272. "__type__": "CCPropertyOverrideInfo",
  1273. "targetInfo": {
  1274. "__id__": 85
  1275. },
  1276. "propertyPath": [
  1277. "_euler"
  1278. ],
  1279. "value": {
  1280. "__type__": "cc.Vec3",
  1281. "x": 0,
  1282. "y": 0,
  1283. "z": 0
  1284. }
  1285. },
  1286. {
  1287. "__type__": "cc.TargetOverrideInfo",
  1288. "source": null,
  1289. "sourceInfo": null,
  1290. "propertyPath": [
  1291. "head"
  1292. ],
  1293. "target": {
  1294. "__id__": 90
  1295. },
  1296. "targetInfo": {
  1297. "__id__": 91
  1298. }
  1299. },
  1300. {
  1301. "__type__": "cc.Node",
  1302. "__editorExtras__": {}
  1303. },
  1304. {
  1305. "__type__": "cc.TargetInfo",
  1306. "localID": [
  1307. "bfmKQWxv9ZMbMEWU4vbL3x"
  1308. ]
  1309. },
  1310. {
  1311. "__type__": "cc.TargetOverrideInfo",
  1312. "source": null,
  1313. "sourceInfo": null,
  1314. "propertyPath": [
  1315. "leftHandGuge"
  1316. ],
  1317. "target": {
  1318. "__id__": 90
  1319. },
  1320. "targetInfo": {
  1321. "__id__": 93
  1322. }
  1323. },
  1324. {
  1325. "__type__": "cc.TargetInfo",
  1326. "localID": [
  1327. "e3T0aJoqxS67bXwcMA5jEA"
  1328. ]
  1329. },
  1330. {
  1331. "__type__": "cc.TargetOverrideInfo",
  1332. "source": null,
  1333. "sourceInfo": null,
  1334. "propertyPath": [
  1335. "rightHandGuge"
  1336. ],
  1337. "target": {
  1338. "__id__": 90
  1339. },
  1340. "targetInfo": {
  1341. "__id__": 95
  1342. }
  1343. },
  1344. {
  1345. "__type__": "cc.TargetInfo",
  1346. "localID": [
  1347. "fcminXK/JTYqkfyfb0GbA1"
  1348. ]
  1349. },
  1350. {
  1351. "__type__": "cc.TargetOverrideInfo",
  1352. "source": null,
  1353. "sourceInfo": null,
  1354. "propertyPath": [
  1355. "leftFootGuge"
  1356. ],
  1357. "target": {
  1358. "__id__": 90
  1359. },
  1360. "targetInfo": {
  1361. "__id__": 97
  1362. }
  1363. },
  1364. {
  1365. "__type__": "cc.TargetInfo",
  1366. "localID": [
  1367. "5812eQ4N9YzYzuc53jWCyV"
  1368. ]
  1369. },
  1370. {
  1371. "__type__": "cc.TargetOverrideInfo",
  1372. "source": null,
  1373. "sourceInfo": null,
  1374. "propertyPath": [
  1375. "rightFootGuge"
  1376. ],
  1377. "target": {
  1378. "__id__": 90
  1379. },
  1380. "targetInfo": {
  1381. "__id__": 99
  1382. }
  1383. },
  1384. {
  1385. "__type__": "cc.TargetInfo",
  1386. "localID": [
  1387. "febDa+o2JfT4xIJfcONmNF"
  1388. ]
  1389. },
  1390. {
  1391. "__type__": "cc.TargetOverrideInfo",
  1392. "source": null,
  1393. "sourceInfo": null,
  1394. "propertyPath": [
  1395. "body"
  1396. ],
  1397. "target": {
  1398. "__id__": 90
  1399. },
  1400. "targetInfo": {
  1401. "__id__": 101
  1402. }
  1403. },
  1404. {
  1405. "__type__": "cc.TargetInfo",
  1406. "localID": [
  1407. "2cryxi6eJQjI0ahBXRHmv0"
  1408. ]
  1409. },
  1410. {
  1411. "__type__": "cc.TargetOverrideInfo",
  1412. "source": null,
  1413. "sourceInfo": null,
  1414. "propertyPath": [
  1415. "leftHand"
  1416. ],
  1417. "target": {
  1418. "__id__": 90
  1419. },
  1420. "targetInfo": {
  1421. "__id__": 103
  1422. }
  1423. },
  1424. {
  1425. "__type__": "cc.TargetInfo",
  1426. "localID": [
  1427. "2b3DqwMGRdQp3TLOY6F0wq"
  1428. ]
  1429. },
  1430. {
  1431. "__type__": "cc.TargetOverrideInfo",
  1432. "source": null,
  1433. "sourceInfo": null,
  1434. "propertyPath": [
  1435. "leftFoot"
  1436. ],
  1437. "target": {
  1438. "__id__": 90
  1439. },
  1440. "targetInfo": {
  1441. "__id__": 105
  1442. }
  1443. },
  1444. {
  1445. "__type__": "cc.TargetInfo",
  1446. "localID": [
  1447. "d5hbOlRfZdbbldzztYEURw"
  1448. ]
  1449. },
  1450. {
  1451. "__type__": "cc.TargetOverrideInfo",
  1452. "source": null,
  1453. "sourceInfo": null,
  1454. "propertyPath": [
  1455. "rightHand"
  1456. ],
  1457. "target": {
  1458. "__id__": 90
  1459. },
  1460. "targetInfo": {
  1461. "__id__": 107
  1462. }
  1463. },
  1464. {
  1465. "__type__": "cc.TargetInfo",
  1466. "localID": [
  1467. "6f/n08RbBWHL3k1F2FCTi7"
  1468. ]
  1469. },
  1470. {
  1471. "__type__": "cc.TargetOverrideInfo",
  1472. "source": null,
  1473. "sourceInfo": null,
  1474. "propertyPath": [
  1475. "rightFoot"
  1476. ],
  1477. "target": {
  1478. "__id__": 90
  1479. },
  1480. "targetInfo": {
  1481. "__id__": 109
  1482. }
  1483. },
  1484. {
  1485. "__type__": "cc.TargetInfo",
  1486. "localID": [
  1487. "03SqETQX9bBaWKPFWJYF9M"
  1488. ]
  1489. },
  1490. {
  1491. "__type__": "cc.PrefabInfo",
  1492. "root": {
  1493. "__id__": 1
  1494. },
  1495. "asset": {
  1496. "__id__": 0
  1497. },
  1498. "fileId": "688fpVvzhOnIuUqApx/Euu",
  1499. "instance": null,
  1500. "targetOverrides": null,
  1501. "nestedPrefabInstanceRoots": null
  1502. },
  1503. {
  1504. "__type__": "cc.Node",
  1505. "_name": "origin",
  1506. "_objFlags": 0,
  1507. "__editorExtras__": {},
  1508. "_parent": {
  1509. "__id__": 1
  1510. },
  1511. "_children": [],
  1512. "_active": true,
  1513. "_components": [
  1514. {
  1515. "__id__": 112
  1516. }
  1517. ],
  1518. "_prefab": {
  1519. "__id__": 114
  1520. },
  1521. "_lpos": {
  1522. "__type__": "cc.Vec3",
  1523. "x": 15,
  1524. "y": 5,
  1525. "z": 20
  1526. },
  1527. "_lrot": {
  1528. "__type__": "cc.Quat",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0,
  1532. "w": 1
  1533. },
  1534. "_lscale": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 1,
  1537. "y": 1,
  1538. "z": 1
  1539. },
  1540. "_mobility": 0,
  1541. "_layer": 1073741824,
  1542. "_euler": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 0,
  1545. "y": 0,
  1546. "z": 0
  1547. },
  1548. "_id": ""
  1549. },
  1550. {
  1551. "__type__": "cc.UITransform",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "__editorExtras__": {},
  1555. "node": {
  1556. "__id__": 111
  1557. },
  1558. "_enabled": true,
  1559. "__prefab": {
  1560. "__id__": 113
  1561. },
  1562. "_contentSize": {
  1563. "__type__": "cc.Size",
  1564. "width": 100,
  1565. "height": 100
  1566. },
  1567. "_anchorPoint": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0.5,
  1570. "y": 0.5
  1571. },
  1572. "_id": ""
  1573. },
  1574. {
  1575. "__type__": "cc.CompPrefabInfo",
  1576. "fileId": "a0nKm7ruVAEJmE+2mMQM34"
  1577. },
  1578. {
  1579. "__type__": "cc.PrefabInfo",
  1580. "root": {
  1581. "__id__": 1
  1582. },
  1583. "asset": {
  1584. "__id__": 0
  1585. },
  1586. "fileId": "6dB8Bnu8lBH50IfJ9WUwlA",
  1587. "instance": null,
  1588. "targetOverrides": null,
  1589. "nestedPrefabInstanceRoots": null
  1590. },
  1591. {
  1592. "__type__": "cc.Node",
  1593. "_name": "Node",
  1594. "_objFlags": 0,
  1595. "__editorExtras__": {},
  1596. "_parent": {
  1597. "__id__": 1
  1598. },
  1599. "_children": [
  1600. {
  1601. "__id__": 116
  1602. }
  1603. ],
  1604. "_active": true,
  1605. "_components": [],
  1606. "_prefab": {
  1607. "__id__": 170
  1608. },
  1609. "_lpos": {
  1610. "__type__": "cc.Vec3",
  1611. "x": 0,
  1612. "y": 0,
  1613. "z": 0
  1614. },
  1615. "_lrot": {
  1616. "__type__": "cc.Quat",
  1617. "x": 0,
  1618. "y": 0,
  1619. "z": 0,
  1620. "w": 1
  1621. },
  1622. "_lscale": {
  1623. "__type__": "cc.Vec3",
  1624. "x": 1,
  1625. "y": 1,
  1626. "z": 1
  1627. },
  1628. "_mobility": 0,
  1629. "_layer": 1073741824,
  1630. "_euler": {
  1631. "__type__": "cc.Vec3",
  1632. "x": 0,
  1633. "y": 0,
  1634. "z": 0
  1635. },
  1636. "_id": ""
  1637. },
  1638. {
  1639. "__type__": "cc.Node",
  1640. "_objFlags": 0,
  1641. "_parent": {
  1642. "__id__": 115
  1643. },
  1644. "_prefab": {
  1645. "__id__": 117
  1646. },
  1647. "__editorExtras__": {}
  1648. },
  1649. {
  1650. "__type__": "cc.PrefabInfo",
  1651. "root": {
  1652. "__id__": 116
  1653. },
  1654. "asset": {
  1655. "__uuid__": "9b7031a6-9d62-4c10-a120-3afe905e5d9a@0ae82",
  1656. "__expectedType__": "cc.Prefab"
  1657. },
  1658. "fileId": "1fU0S3RepY3ZDf3w+Yi0lI",
  1659. "instance": {
  1660. "__id__": 118
  1661. },
  1662. "targetOverrides": null
  1663. },
  1664. {
  1665. "__type__": "cc.PrefabInstance",
  1666. "fileId": "6eHyJztn5BNrWVOFRW6vo+",
  1667. "prefabRootNode": {
  1668. "__id__": 1
  1669. },
  1670. "mountedChildren": [],
  1671. "mountedComponents": [],
  1672. "propertyOverrides": [
  1673. {
  1674. "__id__": 119
  1675. },
  1676. {
  1677. "__id__": 121
  1678. },
  1679. {
  1680. "__id__": 122
  1681. },
  1682. {
  1683. "__id__": 123
  1684. },
  1685. {
  1686. "__id__": 124
  1687. },
  1688. {
  1689. "__id__": 126
  1690. },
  1691. {
  1692. "__id__": 128
  1693. },
  1694. {
  1695. "__id__": 130
  1696. },
  1697. {
  1698. "__id__": 132
  1699. },
  1700. {
  1701. "__id__": 134
  1702. },
  1703. {
  1704. "__id__": 136
  1705. },
  1706. {
  1707. "__id__": 138
  1708. },
  1709. {
  1710. "__id__": 140
  1711. },
  1712. {
  1713. "__id__": 142
  1714. },
  1715. {
  1716. "__id__": 144
  1717. },
  1718. {
  1719. "__id__": 146
  1720. },
  1721. {
  1722. "__id__": 148
  1723. },
  1724. {
  1725. "__id__": 150
  1726. },
  1727. {
  1728. "__id__": 152
  1729. },
  1730. {
  1731. "__id__": 154
  1732. },
  1733. {
  1734. "__id__": 156
  1735. },
  1736. {
  1737. "__id__": 158
  1738. },
  1739. {
  1740. "__id__": 160
  1741. },
  1742. {
  1743. "__id__": 162
  1744. },
  1745. {
  1746. "__id__": 164
  1747. },
  1748. {
  1749. "__id__": 166
  1750. },
  1751. {
  1752. "__id__": 168
  1753. }
  1754. ],
  1755. "removedComponents": []
  1756. },
  1757. {
  1758. "__type__": "CCPropertyOverrideInfo",
  1759. "targetInfo": {
  1760. "__id__": 120
  1761. },
  1762. "propertyPath": [
  1763. "_name"
  1764. ],
  1765. "value": "Mapmap2"
  1766. },
  1767. {
  1768. "__type__": "cc.TargetInfo",
  1769. "localID": [
  1770. "1fU0S3RepY3ZDf3w+Yi0lI"
  1771. ]
  1772. },
  1773. {
  1774. "__type__": "CCPropertyOverrideInfo",
  1775. "targetInfo": {
  1776. "__id__": 120
  1777. },
  1778. "propertyPath": [
  1779. "_lpos"
  1780. ],
  1781. "value": {
  1782. "__type__": "cc.Vec3",
  1783. "x": 0,
  1784. "y": 0,
  1785. "z": 0
  1786. }
  1787. },
  1788. {
  1789. "__type__": "CCPropertyOverrideInfo",
  1790. "targetInfo": {
  1791. "__id__": 120
  1792. },
  1793. "propertyPath": [
  1794. "_lrot"
  1795. ],
  1796. "value": {
  1797. "__type__": "cc.Quat",
  1798. "x": 0,
  1799. "y": 0,
  1800. "z": 0,
  1801. "w": 1
  1802. }
  1803. },
  1804. {
  1805. "__type__": "CCPropertyOverrideInfo",
  1806. "targetInfo": {
  1807. "__id__": 120
  1808. },
  1809. "propertyPath": [
  1810. "_euler"
  1811. ],
  1812. "value": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. }
  1818. },
  1819. {
  1820. "__type__": "CCPropertyOverrideInfo",
  1821. "targetInfo": {
  1822. "__id__": 125
  1823. },
  1824. "propertyPath": [
  1825. "_shadowCastingMode"
  1826. ],
  1827. "value": 1
  1828. },
  1829. {
  1830. "__type__": "cc.TargetInfo",
  1831. "localID": [
  1832. "f5TxUe+ytfxb+KlXc7FLUJ"
  1833. ]
  1834. },
  1835. {
  1836. "__type__": "CCPropertyOverrideInfo",
  1837. "targetInfo": {
  1838. "__id__": 127
  1839. },
  1840. "propertyPath": [
  1841. "_shadowCastingMode"
  1842. ],
  1843. "value": 1
  1844. },
  1845. {
  1846. "__type__": "cc.TargetInfo",
  1847. "localID": [
  1848. "192mtzN71V74BgmWWLGlSK"
  1849. ]
  1850. },
  1851. {
  1852. "__type__": "CCPropertyOverrideInfo",
  1853. "targetInfo": {
  1854. "__id__": 129
  1855. },
  1856. "propertyPath": [
  1857. "_shadowCastingMode"
  1858. ],
  1859. "value": 1
  1860. },
  1861. {
  1862. "__type__": "cc.TargetInfo",
  1863. "localID": [
  1864. "c8g5ldE2xV/KJeqjygDkeK"
  1865. ]
  1866. },
  1867. {
  1868. "__type__": "CCPropertyOverrideInfo",
  1869. "targetInfo": {
  1870. "__id__": 131
  1871. },
  1872. "propertyPath": [
  1873. "_shadowCastingMode"
  1874. ],
  1875. "value": 1
  1876. },
  1877. {
  1878. "__type__": "cc.TargetInfo",
  1879. "localID": [
  1880. "acIFuHcNJR4pvBjiY60RIx"
  1881. ]
  1882. },
  1883. {
  1884. "__type__": "CCPropertyOverrideInfo",
  1885. "targetInfo": {
  1886. "__id__": 133
  1887. },
  1888. "propertyPath": [
  1889. "_shadowCastingMode"
  1890. ],
  1891. "value": 1
  1892. },
  1893. {
  1894. "__type__": "cc.TargetInfo",
  1895. "localID": [
  1896. "74XpZ7Kv1fALDNADbylDnJ"
  1897. ]
  1898. },
  1899. {
  1900. "__type__": "CCPropertyOverrideInfo",
  1901. "targetInfo": {
  1902. "__id__": 135
  1903. },
  1904. "propertyPath": [
  1905. "_shadowCastingMode"
  1906. ],
  1907. "value": 1
  1908. },
  1909. {
  1910. "__type__": "cc.TargetInfo",
  1911. "localID": [
  1912. "932tbWbL1eWZqZ9TkMJuzC"
  1913. ]
  1914. },
  1915. {
  1916. "__type__": "CCPropertyOverrideInfo",
  1917. "targetInfo": {
  1918. "__id__": 137
  1919. },
  1920. "propertyPath": [
  1921. "_shadowCastingMode"
  1922. ],
  1923. "value": 1
  1924. },
  1925. {
  1926. "__type__": "cc.TargetInfo",
  1927. "localID": [
  1928. "9cukDDk8BSnrJqjhUbo5ud"
  1929. ]
  1930. },
  1931. {
  1932. "__type__": "CCPropertyOverrideInfo",
  1933. "targetInfo": {
  1934. "__id__": 139
  1935. },
  1936. "propertyPath": [
  1937. "_shadowCastingMode"
  1938. ],
  1939. "value": 1
  1940. },
  1941. {
  1942. "__type__": "cc.TargetInfo",
  1943. "localID": [
  1944. "454xlwEYFaS5uKaK7S4jxu"
  1945. ]
  1946. },
  1947. {
  1948. "__type__": "CCPropertyOverrideInfo",
  1949. "targetInfo": {
  1950. "__id__": 141
  1951. },
  1952. "propertyPath": [
  1953. "_shadowCastingMode"
  1954. ],
  1955. "value": 1
  1956. },
  1957. {
  1958. "__type__": "cc.TargetInfo",
  1959. "localID": [
  1960. "27HYswKKdXY6oq1Lip4hLR"
  1961. ]
  1962. },
  1963. {
  1964. "__type__": "CCPropertyOverrideInfo",
  1965. "targetInfo": {
  1966. "__id__": 143
  1967. },
  1968. "propertyPath": [
  1969. "_shadowCastingMode"
  1970. ],
  1971. "value": 1
  1972. },
  1973. {
  1974. "__type__": "cc.TargetInfo",
  1975. "localID": [
  1976. "36N2c+t3RQOJXi///Wy8fe"
  1977. ]
  1978. },
  1979. {
  1980. "__type__": "CCPropertyOverrideInfo",
  1981. "targetInfo": {
  1982. "__id__": 145
  1983. },
  1984. "propertyPath": [
  1985. "_shadowCastingMode"
  1986. ],
  1987. "value": 1
  1988. },
  1989. {
  1990. "__type__": "cc.TargetInfo",
  1991. "localID": [
  1992. "e6eFeKHhZe7obkaH/lr15d"
  1993. ]
  1994. },
  1995. {
  1996. "__type__": "CCPropertyOverrideInfo",
  1997. "targetInfo": {
  1998. "__id__": 147
  1999. },
  2000. "propertyPath": [
  2001. "_shadowCastingMode"
  2002. ],
  2003. "value": 1
  2004. },
  2005. {
  2006. "__type__": "cc.TargetInfo",
  2007. "localID": [
  2008. "46R/BuQitaD6mDyVY200I4"
  2009. ]
  2010. },
  2011. {
  2012. "__type__": "CCPropertyOverrideInfo",
  2013. "targetInfo": {
  2014. "__id__": 149
  2015. },
  2016. "propertyPath": [
  2017. "_shadowCastingMode"
  2018. ],
  2019. "value": 1
  2020. },
  2021. {
  2022. "__type__": "cc.TargetInfo",
  2023. "localID": [
  2024. "41b5YTuq5QAZFNCSVkzyXu"
  2025. ]
  2026. },
  2027. {
  2028. "__type__": "CCPropertyOverrideInfo",
  2029. "targetInfo": {
  2030. "__id__": 151
  2031. },
  2032. "propertyPath": [
  2033. "_shadowCastingMode"
  2034. ],
  2035. "value": 1
  2036. },
  2037. {
  2038. "__type__": "cc.TargetInfo",
  2039. "localID": [
  2040. "e9c/Nu13BSsp0ZMnmjzVV3"
  2041. ]
  2042. },
  2043. {
  2044. "__type__": "CCPropertyOverrideInfo",
  2045. "targetInfo": {
  2046. "__id__": 153
  2047. },
  2048. "propertyPath": [
  2049. "_shadowCastingMode"
  2050. ],
  2051. "value": 1
  2052. },
  2053. {
  2054. "__type__": "cc.TargetInfo",
  2055. "localID": [
  2056. "e0w1v0Z3BUFrwwYLZ4PUmY"
  2057. ]
  2058. },
  2059. {
  2060. "__type__": "CCPropertyOverrideInfo",
  2061. "targetInfo": {
  2062. "__id__": 155
  2063. },
  2064. "propertyPath": [
  2065. "_shadowCastingMode"
  2066. ],
  2067. "value": 1
  2068. },
  2069. {
  2070. "__type__": "cc.TargetInfo",
  2071. "localID": [
  2072. "5bzS1dW5teu5exayapdJ35"
  2073. ]
  2074. },
  2075. {
  2076. "__type__": "CCPropertyOverrideInfo",
  2077. "targetInfo": {
  2078. "__id__": 157
  2079. },
  2080. "propertyPath": [
  2081. "_shadowCastingMode"
  2082. ],
  2083. "value": 1
  2084. },
  2085. {
  2086. "__type__": "cc.TargetInfo",
  2087. "localID": [
  2088. "5c4TUXf95ZWoTqIQvNUenE"
  2089. ]
  2090. },
  2091. {
  2092. "__type__": "CCPropertyOverrideInfo",
  2093. "targetInfo": {
  2094. "__id__": 159
  2095. },
  2096. "propertyPath": [
  2097. "_shadowCastingMode"
  2098. ],
  2099. "value": 1
  2100. },
  2101. {
  2102. "__type__": "cc.TargetInfo",
  2103. "localID": [
  2104. "2dTVpRgX5d54YMy7X5Ozuj"
  2105. ]
  2106. },
  2107. {
  2108. "__type__": "CCPropertyOverrideInfo",
  2109. "targetInfo": {
  2110. "__id__": 161
  2111. },
  2112. "propertyPath": [
  2113. "_shadowCastingMode"
  2114. ],
  2115. "value": 1
  2116. },
  2117. {
  2118. "__type__": "cc.TargetInfo",
  2119. "localID": [
  2120. "24fyUzXgRd1ImEZDe0lrM2"
  2121. ]
  2122. },
  2123. {
  2124. "__type__": "CCPropertyOverrideInfo",
  2125. "targetInfo": {
  2126. "__id__": 163
  2127. },
  2128. "propertyPath": [
  2129. "_shadowCastingMode"
  2130. ],
  2131. "value": 1
  2132. },
  2133. {
  2134. "__type__": "cc.TargetInfo",
  2135. "localID": [
  2136. "526d0o0Nlc/6NTjFE6luhr"
  2137. ]
  2138. },
  2139. {
  2140. "__type__": "CCPropertyOverrideInfo",
  2141. "targetInfo": {
  2142. "__id__": 165
  2143. },
  2144. "propertyPath": [
  2145. "_shadowCastingMode"
  2146. ],
  2147. "value": 1
  2148. },
  2149. {
  2150. "__type__": "cc.TargetInfo",
  2151. "localID": [
  2152. "9cVOrguuNVQZimEoe72+Bk"
  2153. ]
  2154. },
  2155. {
  2156. "__type__": "CCPropertyOverrideInfo",
  2157. "targetInfo": {
  2158. "__id__": 167
  2159. },
  2160. "propertyPath": [
  2161. "_shadowCastingMode"
  2162. ],
  2163. "value": 1
  2164. },
  2165. {
  2166. "__type__": "cc.TargetInfo",
  2167. "localID": [
  2168. "c7J4jsFAdTN56ETcIMRwit"
  2169. ]
  2170. },
  2171. {
  2172. "__type__": "CCPropertyOverrideInfo",
  2173. "targetInfo": {
  2174. "__id__": 169
  2175. },
  2176. "propertyPath": [
  2177. "_shadowCastingMode"
  2178. ],
  2179. "value": 1
  2180. },
  2181. {
  2182. "__type__": "cc.TargetInfo",
  2183. "localID": [
  2184. "08GScUuftQkoWhGDi5GwuO"
  2185. ]
  2186. },
  2187. {
  2188. "__type__": "cc.PrefabInfo",
  2189. "root": {
  2190. "__id__": 1
  2191. },
  2192. "asset": {
  2193. "__id__": 0
  2194. },
  2195. "fileId": "feCVMgqpBKZI8HCfZM+/q5",
  2196. "instance": null,
  2197. "targetOverrides": null,
  2198. "nestedPrefabInstanceRoots": null
  2199. },
  2200. {
  2201. "__type__": "cc.UITransform",
  2202. "_name": "",
  2203. "_objFlags": 0,
  2204. "__editorExtras__": {},
  2205. "node": {
  2206. "__id__": 1
  2207. },
  2208. "_enabled": true,
  2209. "__prefab": {
  2210. "__id__": 172
  2211. },
  2212. "_contentSize": {
  2213. "__type__": "cc.Size",
  2214. "width": 100,
  2215. "height": 100
  2216. },
  2217. "_anchorPoint": {
  2218. "__type__": "cc.Vec2",
  2219. "x": 0.5,
  2220. "y": 0.5
  2221. },
  2222. "_id": ""
  2223. },
  2224. {
  2225. "__type__": "cc.CompPrefabInfo",
  2226. "fileId": "ddg5Mwv11Hsr+c9AZjy+Sa"
  2227. },
  2228. {
  2229. "__type__": "251b1LD9rlAbJPtECp8FoYX",
  2230. "_name": "",
  2231. "_objFlags": 0,
  2232. "__editorExtras__": {},
  2233. "node": {
  2234. "__id__": 1
  2235. },
  2236. "_enabled": true,
  2237. "__prefab": {
  2238. "__id__": 174
  2239. },
  2240. "camera": {
  2241. "__id__": 19
  2242. },
  2243. "enemyTotal": 3,
  2244. "zoomDistance": 10,
  2245. "rotateSpeed": 0.2,
  2246. "horizontalLimit": 30,
  2247. "verticalLimit": 30,
  2248. "_id": ""
  2249. },
  2250. {
  2251. "__type__": "cc.CompPrefabInfo",
  2252. "fileId": "63egnay4tJCra5mhTp2YGN"
  2253. },
  2254. {
  2255. "__type__": "cc.PrefabInfo",
  2256. "root": {
  2257. "__id__": 1
  2258. },
  2259. "asset": {
  2260. "__id__": 0
  2261. },
  2262. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  2263. "instance": null,
  2264. "targetOverrides": null,
  2265. "nestedPrefabInstanceRoots": [
  2266. {
  2267. "__id__": 116
  2268. },
  2269. {
  2270. "__id__": 81
  2271. },
  2272. {
  2273. "__id__": 52
  2274. },
  2275. {
  2276. "__id__": 23
  2277. },
  2278. {
  2279. "__id__": 3
  2280. }
  2281. ]
  2282. }
  2283. ]