guai_1001.prefab 46 KB

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