guai_1201.prefab 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  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_1201",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [
  25. {
  26. "__id__": 86
  27. }
  28. ],
  29. "_prefab": {
  30. "__id__": 87
  31. },
  32. "_lpos": {
  33. "__type__": "cc.Vec3",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0
  37. },
  38. "_lrot": {
  39. "__type__": "cc.Quat",
  40. "x": 0,
  41. "y": 0,
  42. "z": 0,
  43. "w": 1
  44. },
  45. "_lscale": {
  46. "__type__": "cc.Vec3",
  47. "x": 1,
  48. "y": 1,
  49. "z": 1
  50. },
  51. "_layer": 1073741824,
  52. "_euler": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_id": ""
  59. },
  60. {
  61. "__type__": "cc.Node",
  62. "_name": "RootNode",
  63. "_objFlags": 0,
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 7
  73. }
  74. ],
  75. "_active": true,
  76. "_components": [],
  77. "_prefab": {
  78. "__id__": 85
  79. },
  80. "_lpos": {
  81. "__type__": "cc.Vec3",
  82. "x": 0,
  83. "y": 0,
  84. "z": 0
  85. },
  86. "_lrot": {
  87. "__type__": "cc.Quat",
  88. "x": 0,
  89. "y": 0,
  90. "z": 0,
  91. "w": 1
  92. },
  93. "_lscale": {
  94. "__type__": "cc.Vec3",
  95. "x": 1,
  96. "y": 1,
  97. "z": 1
  98. },
  99. "_layer": 1073741824,
  100. "_euler": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0
  105. },
  106. "_id": ""
  107. },
  108. {
  109. "__type__": "cc.Node",
  110. "_name": "Zombie_body",
  111. "_objFlags": 0,
  112. "_parent": {
  113. "__id__": 2
  114. },
  115. "_children": [],
  116. "_active": true,
  117. "_components": [
  118. {
  119. "__id__": 4
  120. }
  121. ],
  122. "_prefab": {
  123. "__id__": 6
  124. },
  125. "_lpos": {
  126. "__type__": "cc.Vec3",
  127. "x": 0,
  128. "y": 0,
  129. "z": 0
  130. },
  131. "_lrot": {
  132. "__type__": "cc.Quat",
  133. "x": -0.7071067811865477,
  134. "y": 0,
  135. "z": 0,
  136. "w": 0.7071067811865474
  137. },
  138. "_lscale": {
  139. "__type__": "cc.Vec3",
  140. "x": 2.53999996185303,
  141. "y": 2.53999996185303,
  142. "z": 2.53999996185303
  143. },
  144. "_layer": 1073741824,
  145. "_euler": {
  146. "__type__": "cc.Vec3",
  147. "x": -90.00000000000003,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.SkinningModelComponent",
  155. "_name": "Zombie_body<SkinningModelComponent>",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 3
  159. },
  160. "_enabled": true,
  161. "_materials": [
  162. {
  163. "__uuid__": "fb5c32c4-31ba-4b1e-b962-e8df18c3095c"
  164. }
  165. ],
  166. "_visFlags": 0,
  167. "lightmapSettings": {
  168. "__id__": 5
  169. },
  170. "_mesh": {
  171. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@85928"
  172. },
  173. "_shadowCastingMode": 0,
  174. "_enableMorph": true,
  175. "_skeleton": {
  176. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@438fe"
  177. },
  178. "_skinningRoot": {
  179. "__id__": 1
  180. },
  181. "_id": ""
  182. },
  183. {
  184. "__type__": "cc.ModelLightmapSettings",
  185. "texture": null,
  186. "uvParam": {
  187. "__type__": "cc.Vec4",
  188. "x": 0,
  189. "y": 0,
  190. "z": 0,
  191. "w": 0
  192. },
  193. "_bakeable": false,
  194. "_castShadow": false,
  195. "_receiveShadow": false,
  196. "_recieveShadow": false,
  197. "_lightmapSize": 64
  198. },
  199. {
  200. "__type__": "cc.PrefabInfo",
  201. "root": {
  202. "__id__": 1
  203. },
  204. "asset": {
  205. "__id__": 0
  206. },
  207. "fileId": "c98d4pQMBN04mPlA5MgLt/",
  208. "sync": false,
  209. "_synced": {
  210. "default": false,
  211. "serializable": false
  212. }
  213. },
  214. {
  215. "__type__": "cc.Node",
  216. "_name": "Root",
  217. "_objFlags": 0,
  218. "_parent": {
  219. "__id__": 2
  220. },
  221. "_children": [
  222. {
  223. "__id__": 8
  224. },
  225. {
  226. "__id__": 70
  227. },
  228. {
  229. "__id__": 76
  230. },
  231. {
  232. "__id__": 82
  233. }
  234. ],
  235. "_active": true,
  236. "_components": [],
  237. "_prefab": {
  238. "__id__": 84
  239. },
  240. "_lpos": {
  241. "__type__": "cc.Vec3",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0
  245. },
  246. "_lrot": {
  247. "__type__": "cc.Quat",
  248. "x": 0,
  249. "y": 0,
  250. "z": 0,
  251. "w": 1
  252. },
  253. "_lscale": {
  254. "__type__": "cc.Vec3",
  255. "x": 1,
  256. "y": 1,
  257. "z": 1
  258. },
  259. "_layer": 1073741824,
  260. "_euler": {
  261. "__type__": "cc.Vec3",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0
  265. },
  266. "_id": ""
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "CATRigHub001",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 7
  274. },
  275. "_children": [
  276. {
  277. "__id__": 9
  278. },
  279. {
  280. "__id__": 51
  281. }
  282. ],
  283. "_active": true,
  284. "_components": [],
  285. "_prefab": {
  286. "__id__": 69
  287. },
  288. "_lpos": {
  289. "__type__": "cc.Vec3",
  290. "x": 0.00946667604148388,
  291. "y": 0.396495878696442,
  292. "z": -0.0885784104466438
  293. },
  294. "_lrot": {
  295. "__type__": "cc.Quat",
  296. "x": -0.5361024289501173,
  297. "y": -0.4580269284494385,
  298. "z": -0.549829736649208,
  299. "w": -0.44776420042832804
  300. },
  301. "_lscale": {
  302. "__type__": "cc.Vec3",
  303. "x": 2.53999996185303,
  304. "y": 2.53999996185303,
  305. "z": 2.53999996185303
  306. },
  307. "_layer": 1073741824,
  308. "_euler": {
  309. "__type__": "cc.Vec3",
  310. "x": -172.51401257812262,
  311. "y": -97.68531791489475,
  312. "z": 79.57317366958246
  313. },
  314. "_id": ""
  315. },
  316. {
  317. "__type__": "cc.Node",
  318. "_name": "transform5",
  319. "_objFlags": 0,
  320. "_parent": {
  321. "__id__": 8
  322. },
  323. "_children": [
  324. {
  325. "__id__": 10
  326. }
  327. ],
  328. "_active": true,
  329. "_components": [],
  330. "_prefab": {
  331. "__id__": 50
  332. },
  333. "_lpos": {
  334. "__type__": "cc.Vec3",
  335. "x": 0.010111466050148,
  336. "y": 0,
  337. "z": 0
  338. },
  339. "_lrot": {
  340. "__type__": "cc.Quat",
  341. "x": 7.669200064787075e-11,
  342. "y": -2.5504043546170148e-8,
  343. "z": 0.0030070387557326315,
  344. "w": 0.9999954788487401
  345. },
  346. "_lscale": {
  347. "__type__": "cc.Vec3",
  348. "x": 0.999999940395355,
  349. "y": 0.99999988079071,
  350. "z": 0.999999940395355
  351. },
  352. "_layer": 1073741824,
  353. "_euler": {
  354. "__type__": "cc.Vec3",
  355. "x": 1.7576749490448334e-8,
  356. "y": -0.0000029226141789745247,
  357. "z": 0.34458177837377046
  358. },
  359. "_id": ""
  360. },
  361. {
  362. "__type__": "cc.Node",
  363. "_name": "CATRigSpine2",
  364. "_objFlags": 0,
  365. "_parent": {
  366. "__id__": 9
  367. },
  368. "_children": [
  369. {
  370. "__id__": 11
  371. }
  372. ],
  373. "_active": true,
  374. "_components": [],
  375. "_prefab": {
  376. "__id__": 49
  377. },
  378. "_lpos": {
  379. "__type__": "cc.Vec3",
  380. "x": 0.0422200374305248,
  381. "y": 0.0000615193275734782,
  382. "z": 0.00149063172284514
  383. },
  384. "_lrot": {
  385. "__type__": "cc.Quat",
  386. "x": 0.03440248555737202,
  387. "y": -0.04120036169140243,
  388. "z": 0.2108731544597358,
  389. "w": 0.9760386836146265
  390. },
  391. "_lscale": {
  392. "__type__": "cc.Vec3",
  393. "x": 1.00000011920929,
  394. "y": 1.00000023841858,
  395. "z": 1.00000011920929
  396. },
  397. "_layer": 1073741824,
  398. "_euler": {
  399. "__type__": "cc.Vec3",
  400. "x": 5.3146938721300705,
  401. "y": -5.970994266063751,
  402. "z": 24.129846765030827
  403. },
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "CATRigHub002",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 10
  412. },
  413. "_children": [
  414. {
  415. "__id__": 12
  416. },
  417. {
  418. "__id__": 20
  419. },
  420. {
  421. "__id__": 28
  422. },
  423. {
  424. "__id__": 40
  425. }
  426. ],
  427. "_active": true,
  428. "_components": [],
  429. "_prefab": {
  430. "__id__": 48
  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__": 39
  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. {
  986. "__id__": 30
  987. }
  988. ],
  989. "_active": true,
  990. "_components": [],
  991. "_prefab": {
  992. "__id__": 38
  993. },
  994. "_lpos": {
  995. "__type__": "cc.Vec3",
  996. "x": 0.0531737692654133,
  997. "y": 3.55271359939116e-17,
  998. "z": 0
  999. },
  1000. "_lrot": {
  1001. "__type__": "cc.Quat",
  1002. "x": 0.14076566749861585,
  1003. "y": -0.08162437410495542,
  1004. "z": -0.34175327550595336,
  1005. "w": 0.9255955850621779
  1006. },
  1007. "_lscale": {
  1008. "__type__": "cc.Vec3",
  1009. "x": 1,
  1010. "y": 0.99999988079071,
  1011. "z": 1
  1012. },
  1013. "_layer": 1073741824,
  1014. "_euler": {
  1015. "__type__": "cc.Vec3",
  1016. "x": 15.736880814341328,
  1017. "y": -4.1685949713145485,
  1018. "z": -40.96747245155452
  1019. },
  1020. "_id": ""
  1021. },
  1022. {
  1023. "__type__": "cc.Node",
  1024. "_name": "DJ_maozi04",
  1025. "_objFlags": 0,
  1026. "_parent": {
  1027. "__id__": 29
  1028. },
  1029. "_children": [
  1030. {
  1031. "__id__": 31
  1032. }
  1033. ],
  1034. "_active": true,
  1035. "_components": [],
  1036. "_prefab": {
  1037. "__id__": 37
  1038. },
  1039. "_lpos": {
  1040. "__type__": "cc.Vec3",
  1041. "x": -0.3274072039664304,
  1042. "y": 0.04048940585209125,
  1043. "z": -0.04567457270233735
  1044. },
  1045. "_lrot": {
  1046. "__type__": "cc.Quat",
  1047. "x": 0.49858202945925595,
  1048. "y": 0.48991947478572606,
  1049. "z": 0.5851088550101866,
  1050. "w": -0.4111477927993174
  1051. },
  1052. "_lscale": {
  1053. "__type__": "cc.Vec3",
  1054. "x": 0.39370083871554046,
  1055. "y": 0.3937008581852764,
  1056. "z": 0.3937007769079799
  1057. },
  1058. "_layer": 1073741824,
  1059. "_euler": {
  1060. "__type__": "cc.Vec3",
  1061. "x": -100.47915542013119,
  1062. "y": -99.48279506460396,
  1063. "z": 0.42385876003621475
  1064. },
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.Node",
  1069. "_name": "RootNode",
  1070. "_objFlags": 0,
  1071. "_parent": {
  1072. "__id__": 30
  1073. },
  1074. "_children": [
  1075. {
  1076. "__id__": 32
  1077. }
  1078. ],
  1079. "_active": true,
  1080. "_components": [],
  1081. "_prefab": {
  1082. "__id__": 36
  1083. },
  1084. "_lpos": {
  1085. "__type__": "cc.Vec3",
  1086. "x": 0,
  1087. "y": 0,
  1088. "z": 0
  1089. },
  1090. "_lrot": {
  1091. "__type__": "cc.Quat",
  1092. "x": 0,
  1093. "y": 0,
  1094. "z": 0,
  1095. "w": 1
  1096. },
  1097. "_lscale": {
  1098. "__type__": "cc.Vec3",
  1099. "x": 1,
  1100. "y": 1,
  1101. "z": 1
  1102. },
  1103. "_layer": 1073741824,
  1104. "_euler": {
  1105. "__type__": "cc.Vec3",
  1106. "x": 0,
  1107. "y": 0,
  1108. "z": 0
  1109. },
  1110. "_id": ""
  1111. },
  1112. {
  1113. "__type__": "cc.Node",
  1114. "_name": "DJ_maozi04",
  1115. "_objFlags": 0,
  1116. "_parent": {
  1117. "__id__": 31
  1118. },
  1119. "_children": [],
  1120. "_active": true,
  1121. "_components": [
  1122. {
  1123. "__id__": 33
  1124. }
  1125. ],
  1126. "_prefab": {
  1127. "__id__": 35
  1128. },
  1129. "_lpos": {
  1130. "__type__": "cc.Vec3",
  1131. "x": 0,
  1132. "y": 0,
  1133. "z": 0
  1134. },
  1135. "_lrot": {
  1136. "__type__": "cc.Quat",
  1137. "x": 0,
  1138. "y": 0,
  1139. "z": 0,
  1140. "w": 1
  1141. },
  1142. "_lscale": {
  1143. "__type__": "cc.Vec3",
  1144. "x": 1,
  1145. "y": 1,
  1146. "z": 1
  1147. },
  1148. "_layer": 1073741824,
  1149. "_euler": {
  1150. "__type__": "cc.Vec3",
  1151. "x": 0,
  1152. "y": 0,
  1153. "z": 0
  1154. },
  1155. "_id": ""
  1156. },
  1157. {
  1158. "__type__": "cc.ModelComponent",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "node": {
  1162. "__id__": 32
  1163. },
  1164. "_enabled": true,
  1165. "_materials": [
  1166. {
  1167. "__uuid__": "fb5c32c4-31ba-4b1e-b962-e8df18c3095c"
  1168. }
  1169. ],
  1170. "_visFlags": 0,
  1171. "lightmapSettings": {
  1172. "__id__": 34
  1173. },
  1174. "_mesh": {
  1175. "__uuid__": "18c07657-9d27-43e9-8e28-9b02854e244e@7a048"
  1176. },
  1177. "_shadowCastingMode": 0,
  1178. "_enableMorph": true,
  1179. "_id": ""
  1180. },
  1181. {
  1182. "__type__": "cc.ModelLightmapSettings",
  1183. "texture": null,
  1184. "uvParam": {
  1185. "__type__": "cc.Vec4",
  1186. "x": 0,
  1187. "y": 0,
  1188. "z": 0,
  1189. "w": 0
  1190. },
  1191. "_bakeable": false,
  1192. "_castShadow": false,
  1193. "_receiveShadow": false,
  1194. "_recieveShadow": false,
  1195. "_lightmapSize": 64
  1196. },
  1197. {
  1198. "__type__": "cc.PrefabInfo",
  1199. "root": {
  1200. "__id__": 1
  1201. },
  1202. "asset": {
  1203. "__id__": 0
  1204. },
  1205. "fileId": "0etgYBQ45O+JB+f1F1VzpP",
  1206. "sync": false,
  1207. "_synced": {
  1208. "default": false,
  1209. "serializable": false
  1210. }
  1211. },
  1212. {
  1213. "__type__": "cc.PrefabInfo",
  1214. "root": {
  1215. "__id__": 1
  1216. },
  1217. "asset": {
  1218. "__id__": 0
  1219. },
  1220. "fileId": "31Vnaa3kNPr67dglrQLXcb",
  1221. "sync": false,
  1222. "_synced": {
  1223. "default": false,
  1224. "serializable": false
  1225. }
  1226. },
  1227. {
  1228. "__type__": "cc.PrefabInfo",
  1229. "root": {
  1230. "__id__": 1
  1231. },
  1232. "asset": {
  1233. "__id__": 0
  1234. },
  1235. "fileId": "fdki57ZyxA464xv+fcpmD0",
  1236. "sync": false,
  1237. "_synced": {
  1238. "default": false,
  1239. "serializable": false
  1240. }
  1241. },
  1242. {
  1243. "__type__": "cc.PrefabInfo",
  1244. "root": {
  1245. "__id__": 1
  1246. },
  1247. "asset": {
  1248. "__id__": 0
  1249. },
  1250. "fileId": "b9CrWUxq1HL5iZNTrbyF3a",
  1251. "sync": false,
  1252. "_synced": {
  1253. "default": false,
  1254. "serializable": false
  1255. }
  1256. },
  1257. {
  1258. "__type__": "cc.PrefabInfo",
  1259. "root": {
  1260. "__id__": 1
  1261. },
  1262. "asset": {
  1263. "__id__": 0
  1264. },
  1265. "fileId": "adoqvue0dPJ4Phbm+9BIub",
  1266. "sync": false,
  1267. "_synced": {
  1268. "default": false,
  1269. "serializable": false
  1270. }
  1271. },
  1272. {
  1273. "__type__": "cc.Node",
  1274. "_name": "DJ_beibao",
  1275. "_objFlags": 0,
  1276. "_parent": {
  1277. "__id__": 11
  1278. },
  1279. "_children": [
  1280. {
  1281. "__id__": 41
  1282. }
  1283. ],
  1284. "_active": true,
  1285. "_components": [],
  1286. "_prefab": {
  1287. "__id__": 47
  1288. },
  1289. "_lpos": {
  1290. "__type__": "cc.Vec3",
  1291. "x": -0.1684430458231692,
  1292. "y": 0.20280468504403867,
  1293. "z": -0.00023590473552557653
  1294. },
  1295. "_lrot": {
  1296. "__type__": "cc.Quat",
  1297. "x": 0.6856949915734994,
  1298. "y": 0.2766696695556986,
  1299. "z": 0.6141477363238934,
  1300. "w": -0.2758601821671955
  1301. },
  1302. "_lscale": {
  1303. "__type__": "cc.Vec3",
  1304. "x": 0.39370077020389355,
  1305. "y": 0.3937008310554718,
  1306. "z": 0.3937008021501647
  1307. },
  1308. "_layer": 1073741824,
  1309. "_euler": {
  1310. "__type__": "cc.Vec3",
  1311. "x": -134.04976847649579,
  1312. "y": -84.68511774452742,
  1313. "z": 2.3259422103248886
  1314. },
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.Node",
  1319. "_name": "RootNode",
  1320. "_objFlags": 0,
  1321. "_parent": {
  1322. "__id__": 40
  1323. },
  1324. "_children": [
  1325. {
  1326. "__id__": 42
  1327. }
  1328. ],
  1329. "_active": true,
  1330. "_components": [],
  1331. "_prefab": {
  1332. "__id__": 46
  1333. },
  1334. "_lpos": {
  1335. "__type__": "cc.Vec3",
  1336. "x": 0,
  1337. "y": 0,
  1338. "z": 0
  1339. },
  1340. "_lrot": {
  1341. "__type__": "cc.Quat",
  1342. "x": 0,
  1343. "y": 0,
  1344. "z": 0,
  1345. "w": 1
  1346. },
  1347. "_lscale": {
  1348. "__type__": "cc.Vec3",
  1349. "x": 1,
  1350. "y": 1,
  1351. "z": 1
  1352. },
  1353. "_layer": 1073741824,
  1354. "_euler": {
  1355. "__type__": "cc.Vec3",
  1356. "x": 0,
  1357. "y": 0,
  1358. "z": 0
  1359. },
  1360. "_id": ""
  1361. },
  1362. {
  1363. "__type__": "cc.Node",
  1364. "_name": "DJ_beibao",
  1365. "_objFlags": 0,
  1366. "_parent": {
  1367. "__id__": 41
  1368. },
  1369. "_children": [],
  1370. "_active": true,
  1371. "_components": [
  1372. {
  1373. "__id__": 43
  1374. }
  1375. ],
  1376. "_prefab": {
  1377. "__id__": 45
  1378. },
  1379. "_lpos": {
  1380. "__type__": "cc.Vec3",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0
  1384. },
  1385. "_lrot": {
  1386. "__type__": "cc.Quat",
  1387. "x": 0,
  1388. "y": 0,
  1389. "z": 0,
  1390. "w": 1
  1391. },
  1392. "_lscale": {
  1393. "__type__": "cc.Vec3",
  1394. "x": 1,
  1395. "y": 1,
  1396. "z": 1
  1397. },
  1398. "_layer": 1073741824,
  1399. "_euler": {
  1400. "__type__": "cc.Vec3",
  1401. "x": 0,
  1402. "y": 0,
  1403. "z": 0
  1404. },
  1405. "_id": ""
  1406. },
  1407. {
  1408. "__type__": "cc.ModelComponent",
  1409. "_name": "",
  1410. "_objFlags": 0,
  1411. "node": {
  1412. "__id__": 42
  1413. },
  1414. "_enabled": true,
  1415. "_materials": [
  1416. {
  1417. "__uuid__": "fb5c32c4-31ba-4b1e-b962-e8df18c3095c"
  1418. }
  1419. ],
  1420. "_visFlags": 0,
  1421. "lightmapSettings": {
  1422. "__id__": 44
  1423. },
  1424. "_mesh": {
  1425. "__uuid__": "b5f5311a-d7e6-4716-9e5b-a46beecb5441@c3950"
  1426. },
  1427. "_shadowCastingMode": 0,
  1428. "_enableMorph": true,
  1429. "_id": ""
  1430. },
  1431. {
  1432. "__type__": "cc.ModelLightmapSettings",
  1433. "texture": null,
  1434. "uvParam": {
  1435. "__type__": "cc.Vec4",
  1436. "x": 0,
  1437. "y": 0,
  1438. "z": 0,
  1439. "w": 0
  1440. },
  1441. "_bakeable": false,
  1442. "_castShadow": false,
  1443. "_receiveShadow": false,
  1444. "_recieveShadow": false,
  1445. "_lightmapSize": 64
  1446. },
  1447. {
  1448. "__type__": "cc.PrefabInfo",
  1449. "root": {
  1450. "__id__": 1
  1451. },
  1452. "asset": {
  1453. "__id__": 0
  1454. },
  1455. "fileId": "bfn3zGLdFJ37lqv2Qq38zD",
  1456. "sync": false,
  1457. "_synced": {
  1458. "default": false,
  1459. "serializable": false
  1460. }
  1461. },
  1462. {
  1463. "__type__": "cc.PrefabInfo",
  1464. "root": {
  1465. "__id__": 1
  1466. },
  1467. "asset": {
  1468. "__id__": 0
  1469. },
  1470. "fileId": "74NsO5Oq1PZJulqh7O7oVB",
  1471. "sync": false,
  1472. "_synced": {
  1473. "default": false,
  1474. "serializable": false
  1475. }
  1476. },
  1477. {
  1478. "__type__": "cc.PrefabInfo",
  1479. "root": {
  1480. "__id__": 1
  1481. },
  1482. "asset": {
  1483. "__id__": 0
  1484. },
  1485. "fileId": "9fTtNM+1hI0qbMXC17KPS5",
  1486. "sync": false,
  1487. "_synced": {
  1488. "default": false,
  1489. "serializable": false
  1490. }
  1491. },
  1492. {
  1493. "__type__": "cc.PrefabInfo",
  1494. "root": {
  1495. "__id__": 1
  1496. },
  1497. "asset": {
  1498. "__id__": 0
  1499. },
  1500. "fileId": "49BWxrFedLwakbjHk3RmS3",
  1501. "sync": false,
  1502. "_synced": {
  1503. "default": false,
  1504. "serializable": false
  1505. }
  1506. },
  1507. {
  1508. "__type__": "cc.PrefabInfo",
  1509. "root": {
  1510. "__id__": 1
  1511. },
  1512. "asset": {
  1513. "__id__": 0
  1514. },
  1515. "fileId": "71PpXlV+xEO73Qpu7gY3u3",
  1516. "sync": false,
  1517. "_synced": {
  1518. "default": false,
  1519. "serializable": false
  1520. }
  1521. },
  1522. {
  1523. "__type__": "cc.PrefabInfo",
  1524. "root": {
  1525. "__id__": 1
  1526. },
  1527. "asset": {
  1528. "__id__": 0
  1529. },
  1530. "fileId": "55vn0LqmJHEoR0/M0FbrZZ",
  1531. "sync": false,
  1532. "_synced": {
  1533. "default": false,
  1534. "serializable": false
  1535. }
  1536. },
  1537. {
  1538. "__type__": "cc.Node",
  1539. "_name": "transform6",
  1540. "_objFlags": 0,
  1541. "_parent": {
  1542. "__id__": 8
  1543. },
  1544. "_children": [
  1545. {
  1546. "__id__": 52
  1547. },
  1548. {
  1549. "__id__": 60
  1550. }
  1551. ],
  1552. "_active": true,
  1553. "_components": [],
  1554. "_prefab": {
  1555. "__id__": 68
  1556. },
  1557. "_lpos": {
  1558. "__type__": "cc.Vec3",
  1559. "x": -0.164324209094048,
  1560. "y": 0.00904046930372715,
  1561. "z": -3.95157379040612e-10
  1562. },
  1563. "_lrot": {
  1564. "__type__": "cc.Quat",
  1565. "x": -0.5,
  1566. "y": -0.5,
  1567. "z": -0.4999999999999999,
  1568. "w": 0.5000000000000001
  1569. },
  1570. "_lscale": {
  1571. "__type__": "cc.Vec3",
  1572. "x": 0.393700778484344,
  1573. "y": 0.393700778484344,
  1574. "z": 0.393700778484344
  1575. },
  1576. "_layer": 1073741824,
  1577. "_euler": {
  1578. "__type__": "cc.Vec3",
  1579. "x": -90,
  1580. "y": -90,
  1581. "z": 0
  1582. },
  1583. "_id": ""
  1584. },
  1585. {
  1586. "__type__": "cc.Node",
  1587. "_name": "CATRigRLeg1",
  1588. "_objFlags": 0,
  1589. "_parent": {
  1590. "__id__": 51
  1591. },
  1592. "_children": [
  1593. {
  1594. "__id__": 53
  1595. }
  1596. ],
  1597. "_active": true,
  1598. "_components": [],
  1599. "_prefab": {
  1600. "__id__": 59
  1601. },
  1602. "_lpos": {
  1603. "__type__": "cc.Vec3",
  1604. "x": -0.0734411403536797,
  1605. "y": 0.385172486305237,
  1606. "z": -0.00266149430535734
  1607. },
  1608. "_lrot": {
  1609. "__type__": "cc.Quat",
  1610. "x": -0.13129662224041427,
  1611. "y": -0.09643874498648303,
  1612. "z": -0.6073994154639895,
  1613. "w": 0.7775131610125283
  1614. },
  1615. "_lscale": {
  1616. "__type__": "cc.Vec3",
  1617. "x": 1,
  1618. "y": 1,
  1619. "z": 1
  1620. },
  1621. "_layer": 1073741824,
  1622. "_euler": {
  1623. "__type__": "cc.Vec3",
  1624. "x": -54.682822288931675,
  1625. "y": -51.79919239150502,
  1626. "z": -66.80910299990842
  1627. },
  1628. "_id": ""
  1629. },
  1630. {
  1631. "__type__": "cc.Node",
  1632. "_name": "CATRigRLeg2",
  1633. "_objFlags": 0,
  1634. "_parent": {
  1635. "__id__": 52
  1636. },
  1637. "_children": [
  1638. {
  1639. "__id__": 54
  1640. }
  1641. ],
  1642. "_active": true,
  1643. "_components": [],
  1644. "_prefab": {
  1645. "__id__": 58
  1646. },
  1647. "_lpos": {
  1648. "__type__": "cc.Vec3",
  1649. "x": 0.172996342182159,
  1650. "y": -0.0495890527963638,
  1651. "z": 0.0295807756483555
  1652. },
  1653. "_lrot": {
  1654. "__type__": "cc.Quat",
  1655. "x": 0.08746892081553412,
  1656. "y": 0.3287914643636657,
  1657. "z": -0.024959578732714007,
  1658. "w": 0.940011904330178
  1659. },
  1660. "_lscale": {
  1661. "__type__": "cc.Vec3",
  1662. "x": 1,
  1663. "y": 1,
  1664. "z": 1
  1665. },
  1666. "_layer": 1073741824,
  1667. "_euler": {
  1668. "__type__": "cc.Vec3",
  1669. "x": 10.420252247127106,
  1670. "y": 38.50164370795961,
  1671. "z": 0.6069722938880965
  1672. },
  1673. "_id": ""
  1674. },
  1675. {
  1676. "__type__": "cc.Node",
  1677. "_name": "CATRigRLeg3",
  1678. "_objFlags": 0,
  1679. "_parent": {
  1680. "__id__": 53
  1681. },
  1682. "_children": [
  1683. {
  1684. "__id__": 55
  1685. }
  1686. ],
  1687. "_active": true,
  1688. "_components": [],
  1689. "_prefab": {
  1690. "__id__": 57
  1691. },
  1692. "_lpos": {
  1693. "__type__": "cc.Vec3",
  1694. "x": 0.16975411772728,
  1695. "y": -0.0467007532715797,
  1696. "z": -0.068213127553463
  1697. },
  1698. "_lrot": {
  1699. "__type__": "cc.Quat",
  1700. "x": 0.27715301387486563,
  1701. "y": -0.6249135704198988,
  1702. "z": 0.6111056180787424,
  1703. "w": 0.3990227561903342
  1704. },
  1705. "_lscale": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 1,
  1708. "y": 1,
  1709. "z": 1
  1710. },
  1711. "_layer": 1073741824,
  1712. "_euler": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 84.23316809750375,
  1715. "y": -122.22763709106536,
  1716. "z": 8.1228897830029
  1717. },
  1718. "_id": ""
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "joint6",
  1723. "_objFlags": 0,
  1724. "_parent": {
  1725. "__id__": 54
  1726. },
  1727. "_children": [],
  1728. "_active": true,
  1729. "_components": [],
  1730. "_prefab": {
  1731. "__id__": 56
  1732. },
  1733. "_lpos": {
  1734. "__type__": "cc.Vec3",
  1735. "x": 0.0976830348372459,
  1736. "y": -0.0667777732014656,
  1737. "z": 0.0195708274841309
  1738. },
  1739. "_lrot": {
  1740. "__type__": "cc.Quat",
  1741. "x": 0,
  1742. "y": 0.7071067811865477,
  1743. "z": 0,
  1744. "w": 0.7071067811865474
  1745. },
  1746. "_lscale": {
  1747. "__type__": "cc.Vec3",
  1748. "x": 1,
  1749. "y": 1,
  1750. "z": 1
  1751. },
  1752. "_layer": 1073741824,
  1753. "_euler": {
  1754. "__type__": "cc.Vec3",
  1755. "x": 0,
  1756. "y": 90.00000000000003,
  1757. "z": 0
  1758. },
  1759. "_id": ""
  1760. },
  1761. {
  1762. "__type__": "cc.PrefabInfo",
  1763. "root": {
  1764. "__id__": 1
  1765. },
  1766. "asset": {
  1767. "__id__": 0
  1768. },
  1769. "fileId": "24b0VOF9FK5JEOvIeIxI5Z",
  1770. "sync": false,
  1771. "_synced": {
  1772. "default": false,
  1773. "serializable": false
  1774. }
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 1
  1780. },
  1781. "asset": {
  1782. "__id__": 0
  1783. },
  1784. "fileId": "402NbHjwpLWYHbG5mW9E9W",
  1785. "sync": false,
  1786. "_synced": {
  1787. "default": false,
  1788. "serializable": false
  1789. }
  1790. },
  1791. {
  1792. "__type__": "cc.PrefabInfo",
  1793. "root": {
  1794. "__id__": 1
  1795. },
  1796. "asset": {
  1797. "__id__": 0
  1798. },
  1799. "fileId": "e3Dzw3wV9PXIA6Wvvb0BTd",
  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": "2dnTsBnVVP2ZfYBqjx5hWW",
  1815. "sync": false,
  1816. "_synced": {
  1817. "default": false,
  1818. "serializable": false
  1819. }
  1820. },
  1821. {
  1822. "__type__": "cc.Node",
  1823. "_name": "CATRigRLeg4",
  1824. "_objFlags": 0,
  1825. "_parent": {
  1826. "__id__": 51
  1827. },
  1828. "_children": [
  1829. {
  1830. "__id__": 61
  1831. }
  1832. ],
  1833. "_active": true,
  1834. "_components": [],
  1835. "_prefab": {
  1836. "__id__": 67
  1837. },
  1838. "_lpos": {
  1839. "__type__": "cc.Vec3",
  1840. "x": 0.0736443996429443,
  1841. "y": 0.41738298535347,
  1842. "z": -0.022962799295783
  1843. },
  1844. "_lrot": {
  1845. "__type__": "cc.Quat",
  1846. "x": 0.7249738989392661,
  1847. "y": 0.6102479544184605,
  1848. "z": -0.2422484397118404,
  1849. "w": 0.208148921308909
  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": 105.75350291174651,
  1861. "y": 77.17235378152434,
  1862. "z": 51.62645504171302
  1863. },
  1864. "_id": ""
  1865. },
  1866. {
  1867. "__type__": "cc.Node",
  1868. "_name": "CATRigRLeg5",
  1869. "_objFlags": 0,
  1870. "_parent": {
  1871. "__id__": 60
  1872. },
  1873. "_children": [
  1874. {
  1875. "__id__": 62
  1876. }
  1877. ],
  1878. "_active": true,
  1879. "_components": [],
  1880. "_prefab": {
  1881. "__id__": 66
  1882. },
  1883. "_lpos": {
  1884. "__type__": "cc.Vec3",
  1885. "x": -0.172995999455452,
  1886. "y": 0.0495885983109474,
  1887. "z": -0.0295807905495167
  1888. },
  1889. "_lrot": {
  1890. "__type__": "cc.Quat",
  1891. "x": 0.06008495904136793,
  1892. "y": 0.21917465844204823,
  1893. "z": -0.009390411187834784,
  1894. "w": 0.9737885227150361
  1895. },
  1896. "_lscale": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 1,
  1899. "y": 1,
  1900. "z": 1
  1901. },
  1902. "_layer": 1073741824,
  1903. "_euler": {
  1904. "__type__": "cc.Vec3",
  1905. "x": 6.957916637021976,
  1906. "y": 25.340818919918192,
  1907. "z": 0.4612160370093214
  1908. },
  1909. "_id": ""
  1910. },
  1911. {
  1912. "__type__": "cc.Node",
  1913. "_name": "CATRigRLeg6",
  1914. "_objFlags": 0,
  1915. "_parent": {
  1916. "__id__": 61
  1917. },
  1918. "_children": [
  1919. {
  1920. "__id__": 63
  1921. }
  1922. ],
  1923. "_active": true,
  1924. "_components": [],
  1925. "_prefab": {
  1926. "__id__": 65
  1927. },
  1928. "_lpos": {
  1929. "__type__": "cc.Vec3",
  1930. "x": -0.16975399851799,
  1931. "y": 0.0467010028660297,
  1932. "z": 0.06821309030056
  1933. },
  1934. "_lrot": {
  1935. "__type__": "cc.Quat",
  1936. "x": 0.4762128266987805,
  1937. "y": -0.5352545946823544,
  1938. "z": 0.44990998255932985,
  1939. "w": 0.5332024663788134
  1940. },
  1941. "_lscale": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 1,
  1944. "y": 1,
  1945. "z": 1
  1946. },
  1947. "_layer": 1073741824,
  1948. "_euler": {
  1949. "__type__": "cc.Vec3",
  1950. "x": 81.85559422066126,
  1951. "y": -88.7292451709892,
  1952. "z": -1.7193595969887039
  1953. },
  1954. "_id": ""
  1955. },
  1956. {
  1957. "__type__": "cc.Node",
  1958. "_name": "joint7",
  1959. "_objFlags": 0,
  1960. "_parent": {
  1961. "__id__": 62
  1962. },
  1963. "_children": [],
  1964. "_active": true,
  1965. "_components": [],
  1966. "_prefab": {
  1967. "__id__": 64
  1968. },
  1969. "_lpos": {
  1970. "__type__": "cc.Vec3",
  1971. "x": -0.097682997584343,
  1972. "y": 0.0667777732014656,
  1973. "z": -0.0195710007101297
  1974. },
  1975. "_lrot": {
  1976. "__type__": "cc.Quat",
  1977. "x": 1.2266347333466997e-18,
  1978. "y": 0.7071067811865477,
  1979. "z": -1.2266347333467003e-18,
  1980. "w": 0.7071067811865474
  1981. },
  1982. "_lscale": {
  1983. "__type__": "cc.Vec3",
  1984. "x": 1,
  1985. "y": 1,
  1986. "z": 1
  1987. },
  1988. "_layer": 1073741824,
  1989. "_euler": {
  1990. "__type__": "cc.Vec3",
  1991. "x": 1.9878466759146992e-16,
  1992. "y": 90.00000000000003,
  1993. "z": 0
  1994. },
  1995. "_id": ""
  1996. },
  1997. {
  1998. "__type__": "cc.PrefabInfo",
  1999. "root": {
  2000. "__id__": 1
  2001. },
  2002. "asset": {
  2003. "__id__": 0
  2004. },
  2005. "fileId": "d7AAPSAUlEI4/Yvbcbh+kV",
  2006. "sync": false,
  2007. "_synced": {
  2008. "default": false,
  2009. "serializable": false
  2010. }
  2011. },
  2012. {
  2013. "__type__": "cc.PrefabInfo",
  2014. "root": {
  2015. "__id__": 1
  2016. },
  2017. "asset": {
  2018. "__id__": 0
  2019. },
  2020. "fileId": "76sA7VEj5NqKXbv8Z4dP0/",
  2021. "sync": false,
  2022. "_synced": {
  2023. "default": false,
  2024. "serializable": false
  2025. }
  2026. },
  2027. {
  2028. "__type__": "cc.PrefabInfo",
  2029. "root": {
  2030. "__id__": 1
  2031. },
  2032. "asset": {
  2033. "__id__": 0
  2034. },
  2035. "fileId": "3cBgLnoEJGSLhLzvYodTnh",
  2036. "sync": false,
  2037. "_synced": {
  2038. "default": false,
  2039. "serializable": false
  2040. }
  2041. },
  2042. {
  2043. "__type__": "cc.PrefabInfo",
  2044. "root": {
  2045. "__id__": 1
  2046. },
  2047. "asset": {
  2048. "__id__": 0
  2049. },
  2050. "fileId": "25B1HShW9PHJbNoAMOv9vg",
  2051. "sync": false,
  2052. "_synced": {
  2053. "default": false,
  2054. "serializable": false
  2055. }
  2056. },
  2057. {
  2058. "__type__": "cc.PrefabInfo",
  2059. "root": {
  2060. "__id__": 1
  2061. },
  2062. "asset": {
  2063. "__id__": 0
  2064. },
  2065. "fileId": "b4GkiJ7mhFgrae/x5xYcUB",
  2066. "sync": false,
  2067. "_synced": {
  2068. "default": false,
  2069. "serializable": false
  2070. }
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__id__": 0
  2079. },
  2080. "fileId": "4eAfKrSCpFRaX6CrRegRu9",
  2081. "sync": false,
  2082. "_synced": {
  2083. "default": false,
  2084. "serializable": false
  2085. }
  2086. },
  2087. {
  2088. "__type__": "cc.Node",
  2089. "_name": "footR",
  2090. "_objFlags": 0,
  2091. "_parent": {
  2092. "__id__": 7
  2093. },
  2094. "_children": [
  2095. {
  2096. "__id__": 71
  2097. },
  2098. {
  2099. "__id__": 73
  2100. }
  2101. ],
  2102. "_active": true,
  2103. "_components": [],
  2104. "_prefab": {
  2105. "__id__": 75
  2106. },
  2107. "_lpos": {
  2108. "__type__": "cc.Vec3",
  2109. "x": 0.103088907897472,
  2110. "y": 0.0118712959811091,
  2111. "z": -0.108043991029263
  2112. },
  2113. "_lrot": {
  2114. "__type__": "cc.Quat",
  2115. "x": -0.014868050860365717,
  2116. "y": 0.007468645018696488,
  2117. "z": 0.03906833392729547,
  2118. "w": 0.9990980060481273
  2119. },
  2120. "_lscale": {
  2121. "__type__": "cc.Vec3",
  2122. "x": 1,
  2123. "y": 1,
  2124. "z": 1
  2125. },
  2126. "_layer": 1073741824,
  2127. "_euler": {
  2128. "__type__": "cc.Vec3",
  2129. "x": -1.7412035298104864,
  2130. "y": 0.9244797917652428,
  2131. "z": 4.4646552755823405
  2132. },
  2133. "_id": ""
  2134. },
  2135. {
  2136. "__type__": "cc.Node",
  2137. "_name": "ikHandle3",
  2138. "_objFlags": 0,
  2139. "_parent": {
  2140. "__id__": 70
  2141. },
  2142. "_children": [],
  2143. "_active": true,
  2144. "_components": [],
  2145. "_prefab": {
  2146. "__id__": 72
  2147. },
  2148. "_lpos": {
  2149. "__type__": "cc.Vec3",
  2150. "x": -0.169934168457985,
  2151. "y": 0.0746329873800278,
  2152. "z": -0.0615951344370842
  2153. },
  2154. "_lrot": {
  2155. "__type__": "cc.Quat",
  2156. "x": -0.012593269357522655,
  2157. "y": -0.01381779369995828,
  2158. "z": -0.6427039508837447,
  2159. "w": 0.7658864861469873
  2160. },
  2161. "_lscale": {
  2162. "__type__": "cc.Vec3",
  2163. "x": 1,
  2164. "y": 1,
  2165. "z": 1
  2166. },
  2167. "_layer": 1073741824,
  2168. "_euler": {
  2169. "__type__": "cc.Vec3",
  2170. "x": -12.051532350787026,
  2171. "y": -12.151149751578876,
  2172. "z": -79.77831608415441
  2173. },
  2174. "_id": ""
  2175. },
  2176. {
  2177. "__type__": "cc.PrefabInfo",
  2178. "root": {
  2179. "__id__": 1
  2180. },
  2181. "asset": {
  2182. "__id__": 0
  2183. },
  2184. "fileId": "0d0mwX7OBP4JgR8ZuFJcMP",
  2185. "sync": false,
  2186. "_synced": {
  2187. "default": false,
  2188. "serializable": false
  2189. }
  2190. },
  2191. {
  2192. "__type__": "cc.Node",
  2193. "_name": "ikHandle4",
  2194. "_objFlags": 0,
  2195. "_parent": {
  2196. "__id__": 70
  2197. },
  2198. "_children": [],
  2199. "_active": true,
  2200. "_components": [],
  2201. "_prefab": {
  2202. "__id__": 74
  2203. },
  2204. "_lpos": {
  2205. "__type__": "cc.Vec3",
  2206. "x": -0.189504995942116,
  2207. "y": 0.00785522069782019,
  2208. "z": 0.0360878966748714
  2209. },
  2210. "_lrot": {
  2211. "__type__": "cc.Quat",
  2212. "x": 6.17923001128712e-10,
  2213. "y": -0.7071067811865477,
  2214. "z": 6.179230011287123e-10,
  2215. "w": 0.7071067811865474
  2216. },
  2217. "_lscale": {
  2218. "__type__": "cc.Vec3",
  2219. "x": 1,
  2220. "y": 1,
  2221. "z": 1
  2222. },
  2223. "_layer": 1073741824,
  2224. "_euler": {
  2225. "__type__": "cc.Vec3",
  2226. "x": 1.0013870880809019e-7,
  2227. "y": -90.00000000000003,
  2228. "z": 0
  2229. },
  2230. "_id": ""
  2231. },
  2232. {
  2233. "__type__": "cc.PrefabInfo",
  2234. "root": {
  2235. "__id__": 1
  2236. },
  2237. "asset": {
  2238. "__id__": 0
  2239. },
  2240. "fileId": "48LF7a2CdFirjQ5HquZmY+",
  2241. "sync": false,
  2242. "_synced": {
  2243. "default": false,
  2244. "serializable": false
  2245. }
  2246. },
  2247. {
  2248. "__type__": "cc.PrefabInfo",
  2249. "root": {
  2250. "__id__": 1
  2251. },
  2252. "asset": {
  2253. "__id__": 0
  2254. },
  2255. "fileId": "a4LBVU7C9HKakE30ciV2KC",
  2256. "sync": false,
  2257. "_synced": {
  2258. "default": false,
  2259. "serializable": false
  2260. }
  2261. },
  2262. {
  2263. "__type__": "cc.Node",
  2264. "_name": "footL",
  2265. "_objFlags": 0,
  2266. "_parent": {
  2267. "__id__": 7
  2268. },
  2269. "_children": [
  2270. {
  2271. "__id__": 77
  2272. },
  2273. {
  2274. "__id__": 79
  2275. }
  2276. ],
  2277. "_active": true,
  2278. "_components": [],
  2279. "_prefab": {
  2280. "__id__": 81
  2281. },
  2282. "_lpos": {
  2283. "__type__": "cc.Vec3",
  2284. "x": -0.0340007841587067,
  2285. "y": 0.00236411648802459,
  2286. "z": 0.0348289459943771
  2287. },
  2288. "_lrot": {
  2289. "__type__": "cc.Quat",
  2290. "x": 0.00892803091136768,
  2291. "y": 0.08441510968698954,
  2292. "z": -0.006586649589454983,
  2293. "w": 0.9963689053597391
  2294. },
  2295. "_lscale": {
  2296. "__type__": "cc.Vec3",
  2297. "x": 1,
  2298. "y": 1,
  2299. "z": 1
  2300. },
  2301. "_layer": 1073741824,
  2302. "_euler": {
  2303. "__type__": "cc.Vec3",
  2304. "x": 1.0832140909053387,
  2305. "y": 9.691674899494556,
  2306. "z": -0.6656856086102044
  2307. },
  2308. "_id": ""
  2309. },
  2310. {
  2311. "__type__": "cc.Node",
  2312. "_name": "ikHandle1",
  2313. "_objFlags": 0,
  2314. "_parent": {
  2315. "__id__": 76
  2316. },
  2317. "_children": [],
  2318. "_active": true,
  2319. "_components": [],
  2320. "_prefab": {
  2321. "__id__": 78
  2322. },
  2323. "_lpos": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 0.169934004545212,
  2326. "y": 0.074633002281189,
  2327. "z": -0.0615951009094715
  2328. },
  2329. "_lrot": {
  2330. "__type__": "cc.Quat",
  2331. "x": 0.7267234697130039,
  2332. "y": 0.6842004445592387,
  2333. "z": -0.028921536208518284,
  2334. "w": 0.05391006377822266
  2335. },
  2336. "_lscale": {
  2337. "__type__": "cc.Vec3",
  2338. "x": 1,
  2339. "y": 1,
  2340. "z": 1
  2341. },
  2342. "_layer": 1073741824,
  2343. "_euler": {
  2344. "__type__": "cc.Vec3",
  2345. "x": 116.1598306658024,
  2346. "y": 61.81087848213827,
  2347. "z": 82.45006109014177
  2348. },
  2349. "_id": ""
  2350. },
  2351. {
  2352. "__type__": "cc.PrefabInfo",
  2353. "root": {
  2354. "__id__": 1
  2355. },
  2356. "asset": {
  2357. "__id__": 0
  2358. },
  2359. "fileId": "f5bCogPqlAvpbTnJLZhdAv",
  2360. "sync": false,
  2361. "_synced": {
  2362. "default": false,
  2363. "serializable": false
  2364. }
  2365. },
  2366. {
  2367. "__type__": "cc.Node",
  2368. "_name": "ikHandle2",
  2369. "_objFlags": 0,
  2370. "_parent": {
  2371. "__id__": 76
  2372. },
  2373. "_children": [],
  2374. "_active": true,
  2375. "_components": [],
  2376. "_prefab": {
  2377. "__id__": 80
  2378. },
  2379. "_lpos": {
  2380. "__type__": "cc.Vec3",
  2381. "x": 0.189504995942116,
  2382. "y": 0.00785522069782019,
  2383. "z": 0.0360878966748714
  2384. },
  2385. "_lrot": {
  2386. "__type__": "cc.Quat",
  2387. "x": -0.7071067811865474,
  2388. "y": 3.615042404679564e-10,
  2389. "z": 0.7071067811865477,
  2390. "w": 3.6150426822353165e-10
  2391. },
  2392. "_lscale": {
  2393. "__type__": "cc.Vec3",
  2394. "x": 1,
  2395. "y": 1,
  2396. "z": 1
  2397. },
  2398. "_layer": 1073741824,
  2399. "_euler": {
  2400. "__type__": "cc.Vec3",
  2401. "x": -179.99999994141572,
  2402. "y": 90.00000000000003,
  2403. "z": 2.2489917684045962e-15
  2404. },
  2405. "_id": ""
  2406. },
  2407. {
  2408. "__type__": "cc.PrefabInfo",
  2409. "root": {
  2410. "__id__": 1
  2411. },
  2412. "asset": {
  2413. "__id__": 0
  2414. },
  2415. "fileId": "c8myw91Z1Hz6ta3bi6DT2o",
  2416. "sync": false,
  2417. "_synced": {
  2418. "default": false,
  2419. "serializable": false
  2420. }
  2421. },
  2422. {
  2423. "__type__": "cc.PrefabInfo",
  2424. "root": {
  2425. "__id__": 1
  2426. },
  2427. "asset": {
  2428. "__id__": 0
  2429. },
  2430. "fileId": "31G9jv6txCFYxlY2IqFRSj",
  2431. "sync": false,
  2432. "_synced": {
  2433. "default": false,
  2434. "serializable": false
  2435. }
  2436. },
  2437. {
  2438. "__type__": "cc.Node",
  2439. "_name": "HpSocket",
  2440. "_objFlags": 0,
  2441. "_parent": {
  2442. "__id__": 7
  2443. },
  2444. "_children": [],
  2445. "_active": true,
  2446. "_components": [],
  2447. "_prefab": {
  2448. "__id__": 83
  2449. },
  2450. "_lpos": {
  2451. "__type__": "cc.Vec3",
  2452. "x": 0,
  2453. "y": 1.20048272609711,
  2454. "z": 0
  2455. },
  2456. "_lrot": {
  2457. "__type__": "cc.Quat",
  2458. "x": 0,
  2459. "y": 0,
  2460. "z": 0,
  2461. "w": 1
  2462. },
  2463. "_lscale": {
  2464. "__type__": "cc.Vec3",
  2465. "x": 1,
  2466. "y": 1,
  2467. "z": 1
  2468. },
  2469. "_layer": 1073741824,
  2470. "_euler": {
  2471. "__type__": "cc.Vec3",
  2472. "x": 0,
  2473. "y": 0,
  2474. "z": 0
  2475. },
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.PrefabInfo",
  2480. "root": {
  2481. "__id__": 1
  2482. },
  2483. "asset": {
  2484. "__id__": 0
  2485. },
  2486. "fileId": "2942qTZjJGV7kj2gkghtoM",
  2487. "sync": false,
  2488. "_synced": {
  2489. "default": false,
  2490. "serializable": false
  2491. }
  2492. },
  2493. {
  2494. "__type__": "cc.PrefabInfo",
  2495. "root": {
  2496. "__id__": 1
  2497. },
  2498. "asset": {
  2499. "__id__": 0
  2500. },
  2501. "fileId": "82X+L31IRIJauvzZDMVtMa",
  2502. "sync": false,
  2503. "_synced": {
  2504. "default": false,
  2505. "serializable": false
  2506. }
  2507. },
  2508. {
  2509. "__type__": "cc.PrefabInfo",
  2510. "root": {
  2511. "__id__": 1
  2512. },
  2513. "asset": {
  2514. "__id__": 0
  2515. },
  2516. "fileId": "11SZASJV1PXKKekKIVRWRt",
  2517. "sync": false,
  2518. "_synced": {
  2519. "default": false,
  2520. "serializable": false
  2521. }
  2522. },
  2523. {
  2524. "__type__": "cc.SkeletalAnimationComponent",
  2525. "_name": "Monster_anima<SkeletalAnimationComponent>",
  2526. "_objFlags": 0,
  2527. "node": {
  2528. "__id__": 1
  2529. },
  2530. "_enabled": true,
  2531. "playOnLoad": false,
  2532. "_clips": [
  2533. {
  2534. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
  2535. },
  2536. {
  2537. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@2cd1c"
  2538. },
  2539. {
  2540. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@beef0"
  2541. },
  2542. {
  2543. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@73d50"
  2544. },
  2545. {
  2546. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@f4113"
  2547. }
  2548. ],
  2549. "_defaultClip": {
  2550. "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
  2551. },
  2552. "_useBakedAnimation": true,
  2553. "_sockets": [],
  2554. "_id": ""
  2555. },
  2556. {
  2557. "__type__": "cc.PrefabInfo",
  2558. "root": {
  2559. "__id__": 1
  2560. },
  2561. "asset": {
  2562. "__id__": 0
  2563. },
  2564. "fileId": "f4gTWxhL1H7IeF8nURlS+a",
  2565. "sync": false,
  2566. "_synced": {
  2567. "default": false,
  2568. "serializable": false
  2569. }
  2570. }
  2571. ]