guai_1101.prefab 45 KB

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