guai_0501.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "guai_0501",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [
  25. {
  26. "__id__": 70
  27. }
  28. ],
  29. "_prefab": {
  30. "__id__": 71
  31. },
  32. "_lpos": {
  33. "__type__": "cc.Vec3",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0
  37. },
  38. "_lrot": {
  39. "__type__": "cc.Quat",
  40. "x": 0,
  41. "y": 0,
  42. "z": 0,
  43. "w": 1
  44. },
  45. "_lscale": {
  46. "__type__": "cc.Vec3",
  47. "x": 1,
  48. "y": 1,
  49. "z": 1
  50. },
  51. "_layer": 1073741824,
  52. "_euler": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_id": ""
  59. },
  60. {
  61. "__type__": "cc.Node",
  62. "_name": "RootNode",
  63. "_objFlags": 0,
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 7
  73. }
  74. ],
  75. "_active": true,
  76. "_components": [],
  77. "_prefab": {
  78. "__id__": 69
  79. },
  80. "_lpos": {
  81. "__type__": "cc.Vec3",
  82. "x": 0,
  83. "y": 0,
  84. "z": 0
  85. },
  86. "_lrot": {
  87. "__type__": "cc.Quat",
  88. "x": 0,
  89. "y": 0,
  90. "z": 0,
  91. "w": 1
  92. },
  93. "_lscale": {
  94. "__type__": "cc.Vec3",
  95. "x": 1,
  96. "y": 1,
  97. "z": 1
  98. },
  99. "_layer": 1073741824,
  100. "_euler": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0
  105. },
  106. "_id": ""
  107. },
  108. {
  109. "__type__": "cc.Node",
  110. "_name": "Zombie_body",
  111. "_objFlags": 0,
  112. "_parent": {
  113. "__id__": 2
  114. },
  115. "_children": [],
  116. "_active": true,
  117. "_components": [
  118. {
  119. "__id__": 4
  120. }
  121. ],
  122. "_prefab": {
  123. "__id__": 6
  124. },
  125. "_lpos": {
  126. "__type__": "cc.Vec3",
  127. "x": 0,
  128. "y": 0,
  129. "z": 0
  130. },
  131. "_lrot": {
  132. "__type__": "cc.Quat",
  133. "x": -0.7071067811865477,
  134. "y": 0,
  135. "z": 0,
  136. "w": 0.7071067811865474
  137. },
  138. "_lscale": {
  139. "__type__": "cc.Vec3",
  140. "x": 2.53999996185303,
  141. "y": 2.53999996185303,
  142. "z": 2.53999996185303
  143. },
  144. "_layer": 1073741824,
  145. "_euler": {
  146. "__type__": "cc.Vec3",
  147. "x": -90.00000000000003,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.SkinningModelComponent",
  155. "_name": "Zombie_body<SkinningModelComponent>",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 3
  159. },
  160. "_enabled": true,
  161. "_materials": [
  162. {
  163. "__uuid__": "15b239bb-9cce-4392-8e37-1bd3a75e4e0a"
  164. }
  165. ],
  166. "_visFlags": 0,
  167. "lightmapSettings": {
  168. "__id__": 5
  169. },
  170. "_mesh": {
  171. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@85928"
  172. },
  173. "_shadowCastingMode": 0,
  174. "_enableMorph": true,
  175. "_skeleton": {
  176. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@438fe"
  177. },
  178. "_skinningRoot": {
  179. "__id__": 1
  180. },
  181. "_id": ""
  182. },
  183. {
  184. "__type__": "cc.ModelLightmapSettings",
  185. "texture": null,
  186. "uvParam": {
  187. "__type__": "cc.Vec4",
  188. "x": 0,
  189. "y": 0,
  190. "z": 0,
  191. "w": 0
  192. },
  193. "_bakeable": false,
  194. "_castShadow": false,
  195. "_receiveShadow": false,
  196. "_recieveShadow": false,
  197. "_lightmapSize": 64
  198. },
  199. {
  200. "__type__": "cc.PrefabInfo",
  201. "root": {
  202. "__id__": 1
  203. },
  204. "asset": {
  205. "__id__": 0
  206. },
  207. "fileId": "c98d4pQMBN04mPlA5MgLt/",
  208. "sync": false,
  209. "_synced": {
  210. "default": false,
  211. "serializable": false
  212. }
  213. },
  214. {
  215. "__type__": "cc.Node",
  216. "_name": "Root",
  217. "_objFlags": 0,
  218. "_parent": {
  219. "__id__": 2
  220. },
  221. "_children": [
  222. {
  223. "__id__": 8
  224. },
  225. {
  226. "__id__": 54
  227. },
  228. {
  229. "__id__": 60
  230. },
  231. {
  232. "__id__": 66
  233. }
  234. ],
  235. "_active": true,
  236. "_components": [],
  237. "_prefab": {
  238. "__id__": 68
  239. },
  240. "_lpos": {
  241. "__type__": "cc.Vec3",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0
  245. },
  246. "_lrot": {
  247. "__type__": "cc.Quat",
  248. "x": 0,
  249. "y": 0,
  250. "z": 0,
  251. "w": 1
  252. },
  253. "_lscale": {
  254. "__type__": "cc.Vec3",
  255. "x": 1,
  256. "y": 1,
  257. "z": 1
  258. },
  259. "_layer": 1073741824,
  260. "_euler": {
  261. "__type__": "cc.Vec3",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0
  265. },
  266. "_id": ""
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "CATRigHub001",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 7
  274. },
  275. "_children": [
  276. {
  277. "__id__": 9
  278. },
  279. {
  280. "__id__": 35
  281. }
  282. ],
  283. "_active": true,
  284. "_components": [],
  285. "_prefab": {
  286. "__id__": 53
  287. },
  288. "_lpos": {
  289. "__type__": "cc.Vec3",
  290. "x": 0.00946667604148388,
  291. "y": 0.396495878696442,
  292. "z": -0.0885784104466438
  293. },
  294. "_lrot": {
  295. "__type__": "cc.Quat",
  296. "x": -0.5361024289501173,
  297. "y": -0.4580269284494385,
  298. "z": -0.549829736649208,
  299. "w": -0.44776420042832804
  300. },
  301. "_lscale": {
  302. "__type__": "cc.Vec3",
  303. "x": 2.53999996185303,
  304. "y": 2.53999996185303,
  305. "z": 2.53999996185303
  306. },
  307. "_layer": 1073741824,
  308. "_euler": {
  309. "__type__": "cc.Vec3",
  310. "x": -172.51401257812262,
  311. "y": -97.68531791489475,
  312. "z": 79.57317366958246
  313. },
  314. "_id": ""
  315. },
  316. {
  317. "__type__": "cc.Node",
  318. "_name": "transform5",
  319. "_objFlags": 0,
  320. "_parent": {
  321. "__id__": 8
  322. },
  323. "_children": [
  324. {
  325. "__id__": 10
  326. }
  327. ],
  328. "_active": true,
  329. "_components": [],
  330. "_prefab": {
  331. "__id__": 34
  332. },
  333. "_lpos": {
  334. "__type__": "cc.Vec3",
  335. "x": 0.010111466050148,
  336. "y": 0,
  337. "z": 0
  338. },
  339. "_lrot": {
  340. "__type__": "cc.Quat",
  341. "x": 7.669200064787075e-11,
  342. "y": -2.5504043546170148e-8,
  343. "z": 0.0030070387557326315,
  344. "w": 0.9999954788487401
  345. },
  346. "_lscale": {
  347. "__type__": "cc.Vec3",
  348. "x": 0.999999940395355,
  349. "y": 0.99999988079071,
  350. "z": 0.999999940395355
  351. },
  352. "_layer": 1073741824,
  353. "_euler": {
  354. "__type__": "cc.Vec3",
  355. "x": 1.7576749490448334e-8,
  356. "y": -0.0000029226141789745247,
  357. "z": 0.34458177837377046
  358. },
  359. "_id": ""
  360. },
  361. {
  362. "__type__": "cc.Node",
  363. "_name": "CATRigSpine2",
  364. "_objFlags": 0,
  365. "_parent": {
  366. "__id__": 9
  367. },
  368. "_children": [
  369. {
  370. "__id__": 11
  371. }
  372. ],
  373. "_active": true,
  374. "_components": [],
  375. "_prefab": {
  376. "__id__": 33
  377. },
  378. "_lpos": {
  379. "__type__": "cc.Vec3",
  380. "x": 0.0422200374305248,
  381. "y": 0.0000615193275734782,
  382. "z": 0.00149063172284514
  383. },
  384. "_lrot": {
  385. "__type__": "cc.Quat",
  386. "x": 0.03440248555737202,
  387. "y": -0.04120036169140243,
  388. "z": 0.2108731544597358,
  389. "w": 0.9760386836146265
  390. },
  391. "_lscale": {
  392. "__type__": "cc.Vec3",
  393. "x": 1.00000011920929,
  394. "y": 1.00000023841858,
  395. "z": 1.00000011920929
  396. },
  397. "_layer": 1073741824,
  398. "_euler": {
  399. "__type__": "cc.Vec3",
  400. "x": 5.3146938721300705,
  401. "y": -5.970994266063751,
  402. "z": 24.129846765030827
  403. },
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "CATRigHub002",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 10
  412. },
  413. "_children": [
  414. {
  415. "__id__": 12
  416. },
  417. {
  418. "__id__": 20
  419. },
  420. {
  421. "__id__": 28
  422. }
  423. ],
  424. "_active": true,
  425. "_components": [],
  426. "_prefab": {
  427. "__id__": 32
  428. },
  429. "_lpos": {
  430. "__type__": "cc.Vec3",
  431. "x": 0.0524552129209042,
  432. "y": -3.57627860658738e-9,
  433. "z": -2.24820146604726e-16
  434. },
  435. "_lrot": {
  436. "__type__": "cc.Quat",
  437. "x": 0.014451825917317359,
  438. "y": 0.004294238496948252,
  439. "z": 0.2801017746896587,
  440. "w": 0.9598519156927752
  441. },
  442. "_lscale": {
  443. "__type__": "cc.Vec3",
  444. "x": 0.99999988079071,
  445. "y": 0.999999821186066,
  446. "z": 1
  447. },
  448. "_layer": 1073741824,
  449. "_euler": {
  450. "__type__": "cc.Vec3",
  451. "x": 1.7222660959418479,
  452. "y": 0.010038201261326358,
  453. "z": 32.53648582884744
  454. },
  455. "_id": ""
  456. },
  457. {
  458. "__type__": "cc.Node",
  459. "_name": "CATRigLArmCollarbone",
  460. "_objFlags": 0,
  461. "_parent": {
  462. "__id__": 11
  463. },
  464. "_children": [
  465. {
  466. "__id__": 13
  467. }
  468. ],
  469. "_active": true,
  470. "_components": [],
  471. "_prefab": {
  472. "__id__": 19
  473. },
  474. "_lpos": {
  475. "__type__": "cc.Vec3",
  476. "x": 0.00474120583385229,
  477. "y": -0.00379844172857702,
  478. "z": 0.0221731010824442
  479. },
  480. "_lrot": {
  481. "__type__": "cc.Quat",
  482. "x": 0.05983162276456949,
  483. "y": -0.2903932024125814,
  484. "z": -0.11320337610889047,
  485. "w": 0.9483021462316075
  486. },
  487. "_lscale": {
  488. "__type__": "cc.Vec3",
  489. "x": 1.00000011920929,
  490. "y": 1.00000011920929,
  491. "z": 1.00000023841858
  492. },
  493. "_layer": 1073741824,
  494. "_euler": {
  495. "__type__": "cc.Vec3",
  496. "x": 2.825142376708126,
  497. "y": -33.69362840648498,
  498. "z": -14.445051374548514
  499. },
  500. "_id": ""
  501. },
  502. {
  503. "__type__": "cc.Node",
  504. "_name": "CATRigLArm1",
  505. "_objFlags": 0,
  506. "_parent": {
  507. "__id__": 12
  508. },
  509. "_children": [
  510. {
  511. "__id__": 14
  512. }
  513. ],
  514. "_active": true,
  515. "_components": [],
  516. "_prefab": {
  517. "__id__": 18
  518. },
  519. "_lpos": {
  520. "__type__": "cc.Vec3",
  521. "x": 0.0600666329264641,
  522. "y": 0.000390069064451382,
  523. "z": 0.00962917041033506
  524. },
  525. "_lrot": {
  526. "__type__": "cc.Quat",
  527. "x": -0.21657548537751548,
  528. "y": -0.6748158836056154,
  529. "z": 0.40810322182923026,
  530. "w": 0.5754740156598456
  531. },
  532. "_lscale": {
  533. "__type__": "cc.Vec3",
  534. "x": 0.999999940395355,
  535. "y": 1.00000023841858,
  536. "z": 0.999999940395355
  537. },
  538. "_layer": 1073741824,
  539. "_euler": {
  540. "__type__": "cc.Vec3",
  541. "x": 27.750218807858275,
  542. "y": -112.12067248569345,
  543. "z": 49.64107586147389
  544. },
  545. "_id": ""
  546. },
  547. {
  548. "__type__": "cc.Node",
  549. "_name": "CATRigLArm2",
  550. "_objFlags": 0,
  551. "_parent": {
  552. "__id__": 13
  553. },
  554. "_children": [
  555. {
  556. "__id__": 15
  557. }
  558. ],
  559. "_active": true,
  560. "_components": [],
  561. "_prefab": {
  562. "__id__": 17
  563. },
  564. "_lpos": {
  565. "__type__": "cc.Vec3",
  566. "x": 0.085054948925972,
  567. "y": 0.00280210073105991,
  568. "z": 0.00103955704253167
  569. },
  570. "_lrot": {
  571. "__type__": "cc.Quat",
  572. "x": 0.34062266316563417,
  573. "y": -0.3313617703066264,
  574. "z": 0.015831189214640412,
  575. "w": 0.8797300449372295
  576. },
  577. "_lscale": {
  578. "__type__": "cc.Vec3",
  579. "x": 0.999999701976776,
  580. "y": 0.999999165534973,
  581. "z": 0.999999582767487
  582. },
  583. "_layer": 1073741824,
  584. "_euler": {
  585. "__type__": "cc.Vec3",
  586. "x": 38.47005891425649,
  587. "y": -37.28512338347824,
  588. "z": -11.41326653841489
  589. },
  590. "_id": ""
  591. },
  592. {
  593. "__type__": "cc.Node",
  594. "_name": "CATRigLArmPalm",
  595. "_objFlags": 0,
  596. "_parent": {
  597. "__id__": 14
  598. },
  599. "_children": [],
  600. "_active": true,
  601. "_components": [],
  602. "_prefab": {
  603. "__id__": 16
  604. },
  605. "_lpos": {
  606. "__type__": "cc.Vec3",
  607. "x": 0.0620913505554199,
  608. "y": 4.76837147544984e-9,
  609. "z": -8.88178399847791e-18
  610. },
  611. "_lrot": {
  612. "__type__": "cc.Quat",
  613. "x": -0.8868866699604078,
  614. "y": 0.0629658783250991,
  615. "z": 0.19730872220073664,
  616. "w": 0.41296077411395904
  617. },
  618. "_lscale": {
  619. "__type__": "cc.Vec3",
  620. "x": 0.999998271465302,
  621. "y": 1.00000059604645,
  622. "z": 1.00000035762787
  623. },
  624. "_layer": 1073741824,
  625. "_euler": {
  626. "__type__": "cc.Vec3",
  627. "x": -130.68159528226735,
  628. "y": 23.735516043209053,
  629. "z": 2.9390914506218873
  630. },
  631. "_id": ""
  632. },
  633. {
  634. "__type__": "cc.PrefabInfo",
  635. "root": {
  636. "__id__": 1
  637. },
  638. "asset": {
  639. "__id__": 0
  640. },
  641. "fileId": "65bcBH/JRG7abbvTE/WMe4",
  642. "sync": false,
  643. "_synced": {
  644. "default": false,
  645. "serializable": false
  646. }
  647. },
  648. {
  649. "__type__": "cc.PrefabInfo",
  650. "root": {
  651. "__id__": 1
  652. },
  653. "asset": {
  654. "__id__": 0
  655. },
  656. "fileId": "d6ZhiN/WhAdp09fRXIS2M6",
  657. "sync": false,
  658. "_synced": {
  659. "default": false,
  660. "serializable": false
  661. }
  662. },
  663. {
  664. "__type__": "cc.PrefabInfo",
  665. "root": {
  666. "__id__": 1
  667. },
  668. "asset": {
  669. "__id__": 0
  670. },
  671. "fileId": "518rHLbB5Lqrxom5X/JsVt",
  672. "sync": false,
  673. "_synced": {
  674. "default": false,
  675. "serializable": false
  676. }
  677. },
  678. {
  679. "__type__": "cc.PrefabInfo",
  680. "root": {
  681. "__id__": 1
  682. },
  683. "asset": {
  684. "__id__": 0
  685. },
  686. "fileId": "ea3ce6dhREsKrEVbRaST0m",
  687. "sync": false,
  688. "_synced": {
  689. "default": false,
  690. "serializable": false
  691. }
  692. },
  693. {
  694. "__type__": "cc.Node",
  695. "_name": "CATRigRArmCollarbone",
  696. "_objFlags": 0,
  697. "_parent": {
  698. "__id__": 11
  699. },
  700. "_children": [
  701. {
  702. "__id__": 21
  703. }
  704. ],
  705. "_active": true,
  706. "_components": [],
  707. "_prefab": {
  708. "__id__": 27
  709. },
  710. "_lpos": {
  711. "__type__": "cc.Vec3",
  712. "x": -0.00247978558763862,
  713. "y": 0.00313544319942594,
  714. "z": -0.0223304275423288
  715. },
  716. "_lrot": {
  717. "__type__": "cc.Quat",
  718. "x": -0.011394123810922321,
  719. "y": 0.27220154439622285,
  720. "z": -0.24422817498380905,
  721. "w": 0.9306605674009027
  722. },
  723. "_lscale": {
  724. "__type__": "cc.Vec3",
  725. "x": 1,
  726. "y": 1,
  727. "z": 1.00000023841858
  728. },
  729. "_layer": 1073741824,
  730. "_euler": {
  731. "__type__": "cc.Vec3",
  732. "x": 7.2335815390403,
  733. "y": 34.37461932340513,
  734. "z": -27.438100388831305
  735. },
  736. "_id": ""
  737. },
  738. {
  739. "__type__": "cc.Node",
  740. "_name": "CATRigRArm1",
  741. "_objFlags": 0,
  742. "_parent": {
  743. "__id__": 20
  744. },
  745. "_children": [
  746. {
  747. "__id__": 22
  748. }
  749. ],
  750. "_active": true,
  751. "_components": [],
  752. "_prefab": {
  753. "__id__": 26
  754. },
  755. "_lpos": {
  756. "__type__": "cc.Vec3",
  757. "x": 0.0475980713963509,
  758. "y": 0.00466074096038938,
  759. "z": -0.0130695514380932
  760. },
  761. "_lrot": {
  762. "__type__": "cc.Quat",
  763. "x": 0.159261644296006,
  764. "y": 0.8932829522209775,
  765. "z": 0.19894512048845775,
  766. "w": 0.3702730545980094
  767. },
  768. "_lscale": {
  769. "__type__": "cc.Vec3",
  770. "x": 1.00000011920929,
  771. "y": 1.00000023841858,
  772. "z": 1.00000011920929
  773. },
  774. "_layer": 1073741824,
  775. "_euler": {
  776. "__type__": "cc.Vec3",
  777. "x": -15.266419690287194,
  778. "y": 138.45720104839256,
  779. "z": 25.58562404948357
  780. },
  781. "_id": ""
  782. },
  783. {
  784. "__type__": "cc.Node",
  785. "_name": "CATRigRArm2",
  786. "_objFlags": 0,
  787. "_parent": {
  788. "__id__": 21
  789. },
  790. "_children": [
  791. {
  792. "__id__": 23
  793. }
  794. ],
  795. "_active": true,
  796. "_components": [],
  797. "_prefab": {
  798. "__id__": 25
  799. },
  800. "_lpos": {
  801. "__type__": "cc.Vec3",
  802. "x": 0.091744601726532,
  803. "y": 0.00367651390843093,
  804. "z": -0.00289557967334986
  805. },
  806. "_lrot": {
  807. "__type__": "cc.Quat",
  808. "x": 0.0679086208559021,
  809. "y": 0.07542300806255486,
  810. "z": 0.17746130738341592,
  811. "w": 0.9788806226757244
  812. },
  813. "_lscale": {
  814. "__type__": "cc.Vec3",
  815. "x": 0.999999523162842,
  816. "y": 1.00000011920929,
  817. "z": 1
  818. },
  819. "_layer": 1073741824,
  820. "_euler": {
  821. "__type__": "cc.Vec3",
  822. "x": 6.528712886316332,
  823. "y": 7.603131852351884,
  824. "z": 20.95720925686344
  825. },
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.Node",
  830. "_name": "CATRigRArmPalm",
  831. "_objFlags": 0,
  832. "_parent": {
  833. "__id__": 22
  834. },
  835. "_children": [],
  836. "_active": true,
  837. "_components": [],
  838. "_prefab": {
  839. "__id__": 24
  840. },
  841. "_lpos": {
  842. "__type__": "cc.Vec3",
  843. "x": 0.0620913505554199,
  844. "y": 4.76837147544984e-9,
  845. "z": 1.90734859017994e-8
  846. },
  847. "_lrot": {
  848. "__type__": "cc.Quat",
  849. "x": 0.7025126256494187,
  850. "y": -0.07440974603290156,
  851. "z": -0.07383548507973141,
  852. "w": 0.7039087452514847
  853. },
  854. "_lscale": {
  855. "__type__": "cc.Vec3",
  856. "x": 1.00000143051147,
  857. "y": 0.999999046325684,
  858. "z": 0.999999165534973
  859. },
  860. "_layer": 1073741824,
  861. "_euler": {
  862. "__type__": "cc.Vec3",
  863. "x": 89.87998256201688,
  864. "y": -0.05943978423980148,
  865. "z": -12.034138302444806
  866. },
  867. "_id": ""
  868. },
  869. {
  870. "__type__": "cc.PrefabInfo",
  871. "root": {
  872. "__id__": 1
  873. },
  874. "asset": {
  875. "__id__": 0
  876. },
  877. "fileId": "f1TDX8o1tMRqj+H00yf9U+",
  878. "sync": false,
  879. "_synced": {
  880. "default": false,
  881. "serializable": false
  882. }
  883. },
  884. {
  885. "__type__": "cc.PrefabInfo",
  886. "root": {
  887. "__id__": 1
  888. },
  889. "asset": {
  890. "__id__": 0
  891. },
  892. "fileId": "70bQGxGLNCRY24Azzy76yG",
  893. "sync": false,
  894. "_synced": {
  895. "default": false,
  896. "serializable": false
  897. }
  898. },
  899. {
  900. "__type__": "cc.PrefabInfo",
  901. "root": {
  902. "__id__": 1
  903. },
  904. "asset": {
  905. "__id__": 0
  906. },
  907. "fileId": "79LqSCyCpAILa5yJA74lqT",
  908. "sync": false,
  909. "_synced": {
  910. "default": false,
  911. "serializable": false
  912. }
  913. },
  914. {
  915. "__type__": "cc.PrefabInfo",
  916. "root": {
  917. "__id__": 1
  918. },
  919. "asset": {
  920. "__id__": 0
  921. },
  922. "fileId": "der7crzUNEubpnIJpNNb47",
  923. "sync": false,
  924. "_synced": {
  925. "default": false,
  926. "serializable": false
  927. }
  928. },
  929. {
  930. "__type__": "cc.Node",
  931. "_name": "CATRigNeck",
  932. "_objFlags": 0,
  933. "_parent": {
  934. "__id__": 11
  935. },
  936. "_children": [
  937. {
  938. "__id__": 29
  939. }
  940. ],
  941. "_active": true,
  942. "_components": [],
  943. "_prefab": {
  944. "__id__": 31
  945. },
  946. "_lpos": {
  947. "__type__": "cc.Vec3",
  948. "x": 0.0382775291800499,
  949. "y": -0.00380543689243495,
  950. "z": 5.64114399637106e-9
  951. },
  952. "_lrot": {
  953. "__type__": "cc.Quat",
  954. "x": -0.0691192981305802,
  955. "y": 0.2295340040191064,
  956. "z": 0.027729003225266596,
  957. "w": 0.970447198978402
  958. },
  959. "_lscale": {
  960. "__type__": "cc.Vec3",
  961. "x": 1.00000023841858,
  962. "y": 0.999999940395355,
  963. "z": 0.999999761581421
  964. },
  965. "_layer": 1073741824,
  966. "_euler": {
  967. "__type__": "cc.Vec3",
  968. "x": -8.448397036787883,
  969. "y": 26.70802600018711,
  970. "z": 1.2656869800750525
  971. },
  972. "_id": ""
  973. },
  974. {
  975. "__type__": "cc.Node",
  976. "_name": "CATRigHead",
  977. "_objFlags": 0,
  978. "_parent": {
  979. "__id__": 28
  980. },
  981. "_children": [],
  982. "_active": true,
  983. "_components": [],
  984. "_prefab": {
  985. "__id__": 30
  986. },
  987. "_lpos": {
  988. "__type__": "cc.Vec3",
  989. "x": 0.0531737692654133,
  990. "y": 3.55271359939116e-17,
  991. "z": 0
  992. },
  993. "_lrot": {
  994. "__type__": "cc.Quat",
  995. "x": 0.14076566749861585,
  996. "y": -0.08162437410495542,
  997. "z": -0.34175327550595336,
  998. "w": 0.9255955850621779
  999. },
  1000. "_lscale": {
  1001. "__type__": "cc.Vec3",
  1002. "x": 1,
  1003. "y": 0.99999988079071,
  1004. "z": 1
  1005. },
  1006. "_layer": 1073741824,
  1007. "_euler": {
  1008. "__type__": "cc.Vec3",
  1009. "x": 15.736880814341328,
  1010. "y": -4.1685949713145485,
  1011. "z": -40.96747245155452
  1012. },
  1013. "_id": ""
  1014. },
  1015. {
  1016. "__type__": "cc.PrefabInfo",
  1017. "root": {
  1018. "__id__": 1
  1019. },
  1020. "asset": {
  1021. "__id__": 0
  1022. },
  1023. "fileId": "b9CrWUxq1HL5iZNTrbyF3a",
  1024. "sync": false,
  1025. "_synced": {
  1026. "default": false,
  1027. "serializable": false
  1028. }
  1029. },
  1030. {
  1031. "__type__": "cc.PrefabInfo",
  1032. "root": {
  1033. "__id__": 1
  1034. },
  1035. "asset": {
  1036. "__id__": 0
  1037. },
  1038. "fileId": "adoqvue0dPJ4Phbm+9BIub",
  1039. "sync": false,
  1040. "_synced": {
  1041. "default": false,
  1042. "serializable": false
  1043. }
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__id__": 0
  1052. },
  1053. "fileId": "49BWxrFedLwakbjHk3RmS3",
  1054. "sync": false,
  1055. "_synced": {
  1056. "default": false,
  1057. "serializable": false
  1058. }
  1059. },
  1060. {
  1061. "__type__": "cc.PrefabInfo",
  1062. "root": {
  1063. "__id__": 1
  1064. },
  1065. "asset": {
  1066. "__id__": 0
  1067. },
  1068. "fileId": "71PpXlV+xEO73Qpu7gY3u3",
  1069. "sync": false,
  1070. "_synced": {
  1071. "default": false,
  1072. "serializable": false
  1073. }
  1074. },
  1075. {
  1076. "__type__": "cc.PrefabInfo",
  1077. "root": {
  1078. "__id__": 1
  1079. },
  1080. "asset": {
  1081. "__id__": 0
  1082. },
  1083. "fileId": "55vn0LqmJHEoR0/M0FbrZZ",
  1084. "sync": false,
  1085. "_synced": {
  1086. "default": false,
  1087. "serializable": false
  1088. }
  1089. },
  1090. {
  1091. "__type__": "cc.Node",
  1092. "_name": "transform6",
  1093. "_objFlags": 0,
  1094. "_parent": {
  1095. "__id__": 8
  1096. },
  1097. "_children": [
  1098. {
  1099. "__id__": 36
  1100. },
  1101. {
  1102. "__id__": 44
  1103. }
  1104. ],
  1105. "_active": true,
  1106. "_components": [],
  1107. "_prefab": {
  1108. "__id__": 52
  1109. },
  1110. "_lpos": {
  1111. "__type__": "cc.Vec3",
  1112. "x": -0.164324209094048,
  1113. "y": 0.00904046930372715,
  1114. "z": -3.95157379040612e-10
  1115. },
  1116. "_lrot": {
  1117. "__type__": "cc.Quat",
  1118. "x": -0.5,
  1119. "y": -0.5,
  1120. "z": -0.4999999999999999,
  1121. "w": 0.5000000000000001
  1122. },
  1123. "_lscale": {
  1124. "__type__": "cc.Vec3",
  1125. "x": 0.393700778484344,
  1126. "y": 0.393700778484344,
  1127. "z": 0.393700778484344
  1128. },
  1129. "_layer": 1073741824,
  1130. "_euler": {
  1131. "__type__": "cc.Vec3",
  1132. "x": -90,
  1133. "y": -90,
  1134. "z": 0
  1135. },
  1136. "_id": ""
  1137. },
  1138. {
  1139. "__type__": "cc.Node",
  1140. "_name": "CATRigRLeg1",
  1141. "_objFlags": 0,
  1142. "_parent": {
  1143. "__id__": 35
  1144. },
  1145. "_children": [
  1146. {
  1147. "__id__": 37
  1148. }
  1149. ],
  1150. "_active": true,
  1151. "_components": [],
  1152. "_prefab": {
  1153. "__id__": 43
  1154. },
  1155. "_lpos": {
  1156. "__type__": "cc.Vec3",
  1157. "x": -0.0734411403536797,
  1158. "y": 0.385172486305237,
  1159. "z": -0.00266149430535734
  1160. },
  1161. "_lrot": {
  1162. "__type__": "cc.Quat",
  1163. "x": -0.13129662224041427,
  1164. "y": -0.09643874498648303,
  1165. "z": -0.6073994154639895,
  1166. "w": 0.7775131610125283
  1167. },
  1168. "_lscale": {
  1169. "__type__": "cc.Vec3",
  1170. "x": 1,
  1171. "y": 1,
  1172. "z": 1
  1173. },
  1174. "_layer": 1073741824,
  1175. "_euler": {
  1176. "__type__": "cc.Vec3",
  1177. "x": -54.682822288931675,
  1178. "y": -51.79919239150502,
  1179. "z": -66.80910299990842
  1180. },
  1181. "_id": ""
  1182. },
  1183. {
  1184. "__type__": "cc.Node",
  1185. "_name": "CATRigRLeg2",
  1186. "_objFlags": 0,
  1187. "_parent": {
  1188. "__id__": 36
  1189. },
  1190. "_children": [
  1191. {
  1192. "__id__": 38
  1193. }
  1194. ],
  1195. "_active": true,
  1196. "_components": [],
  1197. "_prefab": {
  1198. "__id__": 42
  1199. },
  1200. "_lpos": {
  1201. "__type__": "cc.Vec3",
  1202. "x": 0.172996342182159,
  1203. "y": -0.0495890527963638,
  1204. "z": 0.0295807756483555
  1205. },
  1206. "_lrot": {
  1207. "__type__": "cc.Quat",
  1208. "x": 0.08746892081553412,
  1209. "y": 0.3287914643636657,
  1210. "z": -0.024959578732714007,
  1211. "w": 0.940011904330178
  1212. },
  1213. "_lscale": {
  1214. "__type__": "cc.Vec3",
  1215. "x": 1,
  1216. "y": 1,
  1217. "z": 1
  1218. },
  1219. "_layer": 1073741824,
  1220. "_euler": {
  1221. "__type__": "cc.Vec3",
  1222. "x": 10.420252247127106,
  1223. "y": 38.50164370795961,
  1224. "z": 0.6069722938880965
  1225. },
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.Node",
  1230. "_name": "CATRigRLeg3",
  1231. "_objFlags": 0,
  1232. "_parent": {
  1233. "__id__": 37
  1234. },
  1235. "_children": [
  1236. {
  1237. "__id__": 39
  1238. }
  1239. ],
  1240. "_active": true,
  1241. "_components": [],
  1242. "_prefab": {
  1243. "__id__": 41
  1244. },
  1245. "_lpos": {
  1246. "__type__": "cc.Vec3",
  1247. "x": 0.16975411772728,
  1248. "y": -0.0467007532715797,
  1249. "z": -0.068213127553463
  1250. },
  1251. "_lrot": {
  1252. "__type__": "cc.Quat",
  1253. "x": 0.27715301387486563,
  1254. "y": -0.6249135704198988,
  1255. "z": 0.6111056180787424,
  1256. "w": 0.3990227561903342
  1257. },
  1258. "_lscale": {
  1259. "__type__": "cc.Vec3",
  1260. "x": 1,
  1261. "y": 1,
  1262. "z": 1
  1263. },
  1264. "_layer": 1073741824,
  1265. "_euler": {
  1266. "__type__": "cc.Vec3",
  1267. "x": 84.23316809750375,
  1268. "y": -122.22763709106536,
  1269. "z": 8.1228897830029
  1270. },
  1271. "_id": ""
  1272. },
  1273. {
  1274. "__type__": "cc.Node",
  1275. "_name": "joint6",
  1276. "_objFlags": 0,
  1277. "_parent": {
  1278. "__id__": 38
  1279. },
  1280. "_children": [],
  1281. "_active": true,
  1282. "_components": [],
  1283. "_prefab": {
  1284. "__id__": 40
  1285. },
  1286. "_lpos": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 0.0976830348372459,
  1289. "y": -0.0667777732014656,
  1290. "z": 0.0195708274841309
  1291. },
  1292. "_lrot": {
  1293. "__type__": "cc.Quat",
  1294. "x": 0,
  1295. "y": 0.7071067811865477,
  1296. "z": 0,
  1297. "w": 0.7071067811865474
  1298. },
  1299. "_lscale": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 1,
  1302. "y": 1,
  1303. "z": 1
  1304. },
  1305. "_layer": 1073741824,
  1306. "_euler": {
  1307. "__type__": "cc.Vec3",
  1308. "x": 0,
  1309. "y": 90.00000000000003,
  1310. "z": 0
  1311. },
  1312. "_id": ""
  1313. },
  1314. {
  1315. "__type__": "cc.PrefabInfo",
  1316. "root": {
  1317. "__id__": 1
  1318. },
  1319. "asset": {
  1320. "__id__": 0
  1321. },
  1322. "fileId": "24b0VOF9FK5JEOvIeIxI5Z",
  1323. "sync": false,
  1324. "_synced": {
  1325. "default": false,
  1326. "serializable": false
  1327. }
  1328. },
  1329. {
  1330. "__type__": "cc.PrefabInfo",
  1331. "root": {
  1332. "__id__": 1
  1333. },
  1334. "asset": {
  1335. "__id__": 0
  1336. },
  1337. "fileId": "402NbHjwpLWYHbG5mW9E9W",
  1338. "sync": false,
  1339. "_synced": {
  1340. "default": false,
  1341. "serializable": false
  1342. }
  1343. },
  1344. {
  1345. "__type__": "cc.PrefabInfo",
  1346. "root": {
  1347. "__id__": 1
  1348. },
  1349. "asset": {
  1350. "__id__": 0
  1351. },
  1352. "fileId": "e3Dzw3wV9PXIA6Wvvb0BTd",
  1353. "sync": false,
  1354. "_synced": {
  1355. "default": false,
  1356. "serializable": false
  1357. }
  1358. },
  1359. {
  1360. "__type__": "cc.PrefabInfo",
  1361. "root": {
  1362. "__id__": 1
  1363. },
  1364. "asset": {
  1365. "__id__": 0
  1366. },
  1367. "fileId": "2dnTsBnVVP2ZfYBqjx5hWW",
  1368. "sync": false,
  1369. "_synced": {
  1370. "default": false,
  1371. "serializable": false
  1372. }
  1373. },
  1374. {
  1375. "__type__": "cc.Node",
  1376. "_name": "CATRigRLeg4",
  1377. "_objFlags": 0,
  1378. "_parent": {
  1379. "__id__": 35
  1380. },
  1381. "_children": [
  1382. {
  1383. "__id__": 45
  1384. }
  1385. ],
  1386. "_active": true,
  1387. "_components": [],
  1388. "_prefab": {
  1389. "__id__": 51
  1390. },
  1391. "_lpos": {
  1392. "__type__": "cc.Vec3",
  1393. "x": 0.0736443996429443,
  1394. "y": 0.41738298535347,
  1395. "z": -0.022962799295783
  1396. },
  1397. "_lrot": {
  1398. "__type__": "cc.Quat",
  1399. "x": 0.7249738989392661,
  1400. "y": 0.6102479544184605,
  1401. "z": -0.2422484397118404,
  1402. "w": 0.208148921308909
  1403. },
  1404. "_lscale": {
  1405. "__type__": "cc.Vec3",
  1406. "x": 1,
  1407. "y": 1,
  1408. "z": 1
  1409. },
  1410. "_layer": 1073741824,
  1411. "_euler": {
  1412. "__type__": "cc.Vec3",
  1413. "x": 105.75350291174651,
  1414. "y": 77.17235378152434,
  1415. "z": 51.62645504171302
  1416. },
  1417. "_id": ""
  1418. },
  1419. {
  1420. "__type__": "cc.Node",
  1421. "_name": "CATRigRLeg5",
  1422. "_objFlags": 0,
  1423. "_parent": {
  1424. "__id__": 44
  1425. },
  1426. "_children": [
  1427. {
  1428. "__id__": 46
  1429. }
  1430. ],
  1431. "_active": true,
  1432. "_components": [],
  1433. "_prefab": {
  1434. "__id__": 50
  1435. },
  1436. "_lpos": {
  1437. "__type__": "cc.Vec3",
  1438. "x": -0.172995999455452,
  1439. "y": 0.0495885983109474,
  1440. "z": -0.0295807905495167
  1441. },
  1442. "_lrot": {
  1443. "__type__": "cc.Quat",
  1444. "x": 0.06008495904136793,
  1445. "y": 0.21917465844204823,
  1446. "z": -0.009390411187834784,
  1447. "w": 0.9737885227150361
  1448. },
  1449. "_lscale": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 1,
  1452. "y": 1,
  1453. "z": 1
  1454. },
  1455. "_layer": 1073741824,
  1456. "_euler": {
  1457. "__type__": "cc.Vec3",
  1458. "x": 6.957916637021976,
  1459. "y": 25.340818919918192,
  1460. "z": 0.4612160370093214
  1461. },
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.Node",
  1466. "_name": "CATRigRLeg6",
  1467. "_objFlags": 0,
  1468. "_parent": {
  1469. "__id__": 45
  1470. },
  1471. "_children": [
  1472. {
  1473. "__id__": 47
  1474. }
  1475. ],
  1476. "_active": true,
  1477. "_components": [],
  1478. "_prefab": {
  1479. "__id__": 49
  1480. },
  1481. "_lpos": {
  1482. "__type__": "cc.Vec3",
  1483. "x": -0.16975399851799,
  1484. "y": 0.0467010028660297,
  1485. "z": 0.06821309030056
  1486. },
  1487. "_lrot": {
  1488. "__type__": "cc.Quat",
  1489. "x": 0.4762128266987805,
  1490. "y": -0.5352545946823544,
  1491. "z": 0.44990998255932985,
  1492. "w": 0.5332024663788134
  1493. },
  1494. "_lscale": {
  1495. "__type__": "cc.Vec3",
  1496. "x": 1,
  1497. "y": 1,
  1498. "z": 1
  1499. },
  1500. "_layer": 1073741824,
  1501. "_euler": {
  1502. "__type__": "cc.Vec3",
  1503. "x": 81.85559422066126,
  1504. "y": -88.7292451709892,
  1505. "z": -1.7193595969887039
  1506. },
  1507. "_id": ""
  1508. },
  1509. {
  1510. "__type__": "cc.Node",
  1511. "_name": "joint7",
  1512. "_objFlags": 0,
  1513. "_parent": {
  1514. "__id__": 46
  1515. },
  1516. "_children": [],
  1517. "_active": true,
  1518. "_components": [],
  1519. "_prefab": {
  1520. "__id__": 48
  1521. },
  1522. "_lpos": {
  1523. "__type__": "cc.Vec3",
  1524. "x": -0.097682997584343,
  1525. "y": 0.0667777732014656,
  1526. "z": -0.0195710007101297
  1527. },
  1528. "_lrot": {
  1529. "__type__": "cc.Quat",
  1530. "x": 1.2266347333466997e-18,
  1531. "y": 0.7071067811865477,
  1532. "z": -1.2266347333467003e-18,
  1533. "w": 0.7071067811865474
  1534. },
  1535. "_lscale": {
  1536. "__type__": "cc.Vec3",
  1537. "x": 1,
  1538. "y": 1,
  1539. "z": 1
  1540. },
  1541. "_layer": 1073741824,
  1542. "_euler": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 1.9878466759146992e-16,
  1545. "y": 90.00000000000003,
  1546. "z": 0
  1547. },
  1548. "_id": ""
  1549. },
  1550. {
  1551. "__type__": "cc.PrefabInfo",
  1552. "root": {
  1553. "__id__": 1
  1554. },
  1555. "asset": {
  1556. "__id__": 0
  1557. },
  1558. "fileId": "d7AAPSAUlEI4/Yvbcbh+kV",
  1559. "sync": false,
  1560. "_synced": {
  1561. "default": false,
  1562. "serializable": false
  1563. }
  1564. },
  1565. {
  1566. "__type__": "cc.PrefabInfo",
  1567. "root": {
  1568. "__id__": 1
  1569. },
  1570. "asset": {
  1571. "__id__": 0
  1572. },
  1573. "fileId": "76sA7VEj5NqKXbv8Z4dP0/",
  1574. "sync": false,
  1575. "_synced": {
  1576. "default": false,
  1577. "serializable": false
  1578. }
  1579. },
  1580. {
  1581. "__type__": "cc.PrefabInfo",
  1582. "root": {
  1583. "__id__": 1
  1584. },
  1585. "asset": {
  1586. "__id__": 0
  1587. },
  1588. "fileId": "3cBgLnoEJGSLhLzvYodTnh",
  1589. "sync": false,
  1590. "_synced": {
  1591. "default": false,
  1592. "serializable": false
  1593. }
  1594. },
  1595. {
  1596. "__type__": "cc.PrefabInfo",
  1597. "root": {
  1598. "__id__": 1
  1599. },
  1600. "asset": {
  1601. "__id__": 0
  1602. },
  1603. "fileId": "25B1HShW9PHJbNoAMOv9vg",
  1604. "sync": false,
  1605. "_synced": {
  1606. "default": false,
  1607. "serializable": false
  1608. }
  1609. },
  1610. {
  1611. "__type__": "cc.PrefabInfo",
  1612. "root": {
  1613. "__id__": 1
  1614. },
  1615. "asset": {
  1616. "__id__": 0
  1617. },
  1618. "fileId": "b4GkiJ7mhFgrae/x5xYcUB",
  1619. "sync": false,
  1620. "_synced": {
  1621. "default": false,
  1622. "serializable": false
  1623. }
  1624. },
  1625. {
  1626. "__type__": "cc.PrefabInfo",
  1627. "root": {
  1628. "__id__": 1
  1629. },
  1630. "asset": {
  1631. "__id__": 0
  1632. },
  1633. "fileId": "4eAfKrSCpFRaX6CrRegRu9",
  1634. "sync": false,
  1635. "_synced": {
  1636. "default": false,
  1637. "serializable": false
  1638. }
  1639. },
  1640. {
  1641. "__type__": "cc.Node",
  1642. "_name": "footR",
  1643. "_objFlags": 0,
  1644. "_parent": {
  1645. "__id__": 7
  1646. },
  1647. "_children": [
  1648. {
  1649. "__id__": 55
  1650. },
  1651. {
  1652. "__id__": 57
  1653. }
  1654. ],
  1655. "_active": true,
  1656. "_components": [],
  1657. "_prefab": {
  1658. "__id__": 59
  1659. },
  1660. "_lpos": {
  1661. "__type__": "cc.Vec3",
  1662. "x": 0.103088907897472,
  1663. "y": 0.0118712959811091,
  1664. "z": -0.108043991029263
  1665. },
  1666. "_lrot": {
  1667. "__type__": "cc.Quat",
  1668. "x": -0.014868050860365717,
  1669. "y": 0.007468645018696488,
  1670. "z": 0.03906833392729547,
  1671. "w": 0.9990980060481273
  1672. },
  1673. "_lscale": {
  1674. "__type__": "cc.Vec3",
  1675. "x": 1,
  1676. "y": 1,
  1677. "z": 1
  1678. },
  1679. "_layer": 1073741824,
  1680. "_euler": {
  1681. "__type__": "cc.Vec3",
  1682. "x": -1.7412035298104864,
  1683. "y": 0.9244797917652428,
  1684. "z": 4.4646552755823405
  1685. },
  1686. "_id": ""
  1687. },
  1688. {
  1689. "__type__": "cc.Node",
  1690. "_name": "ikHandle3",
  1691. "_objFlags": 0,
  1692. "_parent": {
  1693. "__id__": 54
  1694. },
  1695. "_children": [],
  1696. "_active": true,
  1697. "_components": [],
  1698. "_prefab": {
  1699. "__id__": 56
  1700. },
  1701. "_lpos": {
  1702. "__type__": "cc.Vec3",
  1703. "x": -0.169934168457985,
  1704. "y": 0.0746329873800278,
  1705. "z": -0.0615951344370842
  1706. },
  1707. "_lrot": {
  1708. "__type__": "cc.Quat",
  1709. "x": -0.012593269357522655,
  1710. "y": -0.01381779369995828,
  1711. "z": -0.6427039508837447,
  1712. "w": 0.7658864861469873
  1713. },
  1714. "_lscale": {
  1715. "__type__": "cc.Vec3",
  1716. "x": 1,
  1717. "y": 1,
  1718. "z": 1
  1719. },
  1720. "_layer": 1073741824,
  1721. "_euler": {
  1722. "__type__": "cc.Vec3",
  1723. "x": -12.051532350787026,
  1724. "y": -12.151149751578876,
  1725. "z": -79.77831608415441
  1726. },
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.PrefabInfo",
  1731. "root": {
  1732. "__id__": 1
  1733. },
  1734. "asset": {
  1735. "__id__": 0
  1736. },
  1737. "fileId": "0d0mwX7OBP4JgR8ZuFJcMP",
  1738. "sync": false,
  1739. "_synced": {
  1740. "default": false,
  1741. "serializable": false
  1742. }
  1743. },
  1744. {
  1745. "__type__": "cc.Node",
  1746. "_name": "ikHandle4",
  1747. "_objFlags": 0,
  1748. "_parent": {
  1749. "__id__": 54
  1750. },
  1751. "_children": [],
  1752. "_active": true,
  1753. "_components": [],
  1754. "_prefab": {
  1755. "__id__": 58
  1756. },
  1757. "_lpos": {
  1758. "__type__": "cc.Vec3",
  1759. "x": -0.189504995942116,
  1760. "y": 0.00785522069782019,
  1761. "z": 0.0360878966748714
  1762. },
  1763. "_lrot": {
  1764. "__type__": "cc.Quat",
  1765. "x": 6.17923001128712e-10,
  1766. "y": -0.7071067811865477,
  1767. "z": 6.179230011287123e-10,
  1768. "w": 0.7071067811865474
  1769. },
  1770. "_lscale": {
  1771. "__type__": "cc.Vec3",
  1772. "x": 1,
  1773. "y": 1,
  1774. "z": 1
  1775. },
  1776. "_layer": 1073741824,
  1777. "_euler": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 1.0013870880809019e-7,
  1780. "y": -90.00000000000003,
  1781. "z": 0
  1782. },
  1783. "_id": ""
  1784. },
  1785. {
  1786. "__type__": "cc.PrefabInfo",
  1787. "root": {
  1788. "__id__": 1
  1789. },
  1790. "asset": {
  1791. "__id__": 0
  1792. },
  1793. "fileId": "48LF7a2CdFirjQ5HquZmY+",
  1794. "sync": false,
  1795. "_synced": {
  1796. "default": false,
  1797. "serializable": false
  1798. }
  1799. },
  1800. {
  1801. "__type__": "cc.PrefabInfo",
  1802. "root": {
  1803. "__id__": 1
  1804. },
  1805. "asset": {
  1806. "__id__": 0
  1807. },
  1808. "fileId": "a4LBVU7C9HKakE30ciV2KC",
  1809. "sync": false,
  1810. "_synced": {
  1811. "default": false,
  1812. "serializable": false
  1813. }
  1814. },
  1815. {
  1816. "__type__": "cc.Node",
  1817. "_name": "footL",
  1818. "_objFlags": 0,
  1819. "_parent": {
  1820. "__id__": 7
  1821. },
  1822. "_children": [
  1823. {
  1824. "__id__": 61
  1825. },
  1826. {
  1827. "__id__": 63
  1828. }
  1829. ],
  1830. "_active": true,
  1831. "_components": [],
  1832. "_prefab": {
  1833. "__id__": 65
  1834. },
  1835. "_lpos": {
  1836. "__type__": "cc.Vec3",
  1837. "x": -0.0340007841587067,
  1838. "y": 0.00236411648802459,
  1839. "z": 0.0348289459943771
  1840. },
  1841. "_lrot": {
  1842. "__type__": "cc.Quat",
  1843. "x": 0.00892803091136768,
  1844. "y": 0.08441510968698954,
  1845. "z": -0.006586649589454983,
  1846. "w": 0.9963689053597391
  1847. },
  1848. "_lscale": {
  1849. "__type__": "cc.Vec3",
  1850. "x": 1,
  1851. "y": 1,
  1852. "z": 1
  1853. },
  1854. "_layer": 1073741824,
  1855. "_euler": {
  1856. "__type__": "cc.Vec3",
  1857. "x": 1.0832140909053387,
  1858. "y": 9.691674899494556,
  1859. "z": -0.6656856086102044
  1860. },
  1861. "_id": ""
  1862. },
  1863. {
  1864. "__type__": "cc.Node",
  1865. "_name": "ikHandle1",
  1866. "_objFlags": 0,
  1867. "_parent": {
  1868. "__id__": 60
  1869. },
  1870. "_children": [],
  1871. "_active": true,
  1872. "_components": [],
  1873. "_prefab": {
  1874. "__id__": 62
  1875. },
  1876. "_lpos": {
  1877. "__type__": "cc.Vec3",
  1878. "x": 0.169934004545212,
  1879. "y": 0.074633002281189,
  1880. "z": -0.0615951009094715
  1881. },
  1882. "_lrot": {
  1883. "__type__": "cc.Quat",
  1884. "x": 0.7267234697130039,
  1885. "y": 0.6842004445592387,
  1886. "z": -0.028921536208518284,
  1887. "w": 0.05391006377822266
  1888. },
  1889. "_lscale": {
  1890. "__type__": "cc.Vec3",
  1891. "x": 1,
  1892. "y": 1,
  1893. "z": 1
  1894. },
  1895. "_layer": 1073741824,
  1896. "_euler": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 116.1598306658024,
  1899. "y": 61.81087848213827,
  1900. "z": 82.45006109014177
  1901. },
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.PrefabInfo",
  1906. "root": {
  1907. "__id__": 1
  1908. },
  1909. "asset": {
  1910. "__id__": 0
  1911. },
  1912. "fileId": "f5bCogPqlAvpbTnJLZhdAv",
  1913. "sync": false,
  1914. "_synced": {
  1915. "default": false,
  1916. "serializable": false
  1917. }
  1918. },
  1919. {
  1920. "__type__": "cc.Node",
  1921. "_name": "ikHandle2",
  1922. "_objFlags": 0,
  1923. "_parent": {
  1924. "__id__": 60
  1925. },
  1926. "_children": [],
  1927. "_active": true,
  1928. "_components": [],
  1929. "_prefab": {
  1930. "__id__": 64
  1931. },
  1932. "_lpos": {
  1933. "__type__": "cc.Vec3",
  1934. "x": 0.189504995942116,
  1935. "y": 0.00785522069782019,
  1936. "z": 0.0360878966748714
  1937. },
  1938. "_lrot": {
  1939. "__type__": "cc.Quat",
  1940. "x": -0.7071067811865474,
  1941. "y": 3.615042404679564e-10,
  1942. "z": 0.7071067811865477,
  1943. "w": 3.6150426822353165e-10
  1944. },
  1945. "_lscale": {
  1946. "__type__": "cc.Vec3",
  1947. "x": 1,
  1948. "y": 1,
  1949. "z": 1
  1950. },
  1951. "_layer": 1073741824,
  1952. "_euler": {
  1953. "__type__": "cc.Vec3",
  1954. "x": -179.99999994141572,
  1955. "y": 90.00000000000003,
  1956. "z": 2.2489917684045962e-15
  1957. },
  1958. "_id": ""
  1959. },
  1960. {
  1961. "__type__": "cc.PrefabInfo",
  1962. "root": {
  1963. "__id__": 1
  1964. },
  1965. "asset": {
  1966. "__id__": 0
  1967. },
  1968. "fileId": "c8myw91Z1Hz6ta3bi6DT2o",
  1969. "sync": false,
  1970. "_synced": {
  1971. "default": false,
  1972. "serializable": false
  1973. }
  1974. },
  1975. {
  1976. "__type__": "cc.PrefabInfo",
  1977. "root": {
  1978. "__id__": 1
  1979. },
  1980. "asset": {
  1981. "__id__": 0
  1982. },
  1983. "fileId": "31G9jv6txCFYxlY2IqFRSj",
  1984. "sync": false,
  1985. "_synced": {
  1986. "default": false,
  1987. "serializable": false
  1988. }
  1989. },
  1990. {
  1991. "__type__": "cc.Node",
  1992. "_name": "HpSocket",
  1993. "_objFlags": 0,
  1994. "_parent": {
  1995. "__id__": 7
  1996. },
  1997. "_children": [],
  1998. "_active": true,
  1999. "_components": [],
  2000. "_prefab": {
  2001. "__id__": 67
  2002. },
  2003. "_lpos": {
  2004. "__type__": "cc.Vec3",
  2005. "x": 0,
  2006. "y": 1.20048272609711,
  2007. "z": 0
  2008. },
  2009. "_lrot": {
  2010. "__type__": "cc.Quat",
  2011. "x": 0,
  2012. "y": 0,
  2013. "z": 0,
  2014. "w": 1
  2015. },
  2016. "_lscale": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 1,
  2019. "y": 1,
  2020. "z": 1
  2021. },
  2022. "_layer": 1073741824,
  2023. "_euler": {
  2024. "__type__": "cc.Vec3",
  2025. "x": 0,
  2026. "y": 0,
  2027. "z": 0
  2028. },
  2029. "_id": ""
  2030. },
  2031. {
  2032. "__type__": "cc.PrefabInfo",
  2033. "root": {
  2034. "__id__": 1
  2035. },
  2036. "asset": {
  2037. "__id__": 0
  2038. },
  2039. "fileId": "2942qTZjJGV7kj2gkghtoM",
  2040. "sync": false,
  2041. "_synced": {
  2042. "default": false,
  2043. "serializable": false
  2044. }
  2045. },
  2046. {
  2047. "__type__": "cc.PrefabInfo",
  2048. "root": {
  2049. "__id__": 1
  2050. },
  2051. "asset": {
  2052. "__id__": 0
  2053. },
  2054. "fileId": "82X+L31IRIJauvzZDMVtMa",
  2055. "sync": false,
  2056. "_synced": {
  2057. "default": false,
  2058. "serializable": false
  2059. }
  2060. },
  2061. {
  2062. "__type__": "cc.PrefabInfo",
  2063. "root": {
  2064. "__id__": 1
  2065. },
  2066. "asset": {
  2067. "__id__": 0
  2068. },
  2069. "fileId": "11SZASJV1PXKKekKIVRWRt",
  2070. "sync": false,
  2071. "_synced": {
  2072. "default": false,
  2073. "serializable": false
  2074. }
  2075. },
  2076. {
  2077. "__type__": "cc.SkeletalAnimationComponent",
  2078. "_name": "Monster_anima<SkeletalAnimationComponent>",
  2079. "_objFlags": 0,
  2080. "node": {
  2081. "__id__": 1
  2082. },
  2083. "_enabled": true,
  2084. "playOnLoad": false,
  2085. "_clips": [
  2086. {
  2087. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
  2088. },
  2089. {
  2090. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@2cd1c"
  2091. },
  2092. {
  2093. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@beef0"
  2094. },
  2095. {
  2096. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@73d50"
  2097. },
  2098. {
  2099. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@f4113"
  2100. },
  2101. {
  2102. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@9292d"
  2103. },
  2104. {
  2105. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@20c15"
  2106. }
  2107. ],
  2108. "_defaultClip": {
  2109. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
  2110. },
  2111. "_useBakedAnimation": true,
  2112. "_sockets": [],
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.PrefabInfo",
  2117. "root": {
  2118. "__id__": 1
  2119. },
  2120. "asset": {
  2121. "__id__": 0
  2122. },
  2123. "fileId": "f4gTWxhL1H7IeF8nURlS+a",
  2124. "sync": false,
  2125. "_synced": {
  2126. "default": false,
  2127. "serializable": false
  2128. }
  2129. }
  2130. ]