et.prefab 43 KB

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