123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424 |
- [
- {
- "__type__": "cc.Prefab",
- "_name": "",
- "_objFlags": 0,
- "_native": "",
- "data": {
- "__id__": 1
- },
- "optimizationPolicy": 0,
- "asyncLoadAssets": false
- },
- {
- "__type__": "cc.Node",
- "_name": "guai_1101",
- "_objFlags": 0,
- "_parent": null,
- "_children": [
- {
- "__id__": 2
- },
- {
- "__id__": 70
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 80
- }
- ],
- "_prefab": {
- "__id__": 82
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "RootNode",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [
- {
- "__id__": 3
- },
- {
- "__id__": 7
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 69
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "Zombie_body",
- "_objFlags": 0,
- "_parent": {
- "__id__": 2
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 4
- }
- ],
- "_prefab": {
- "__id__": 6
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.7071067811865477,
- "y": 0,
- "z": 0,
- "w": 0.7071067811865474
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 2.53999996185303,
- "y": 2.53999996185303,
- "z": 2.53999996185303
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -90.00000000000003,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.SkinningModelComponent",
- "_name": "Zombie_body<SkinningModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 3
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "1191a97c-5d8e-449b-8ddc-1bb536e411d2"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 5
- },
- "_mesh": {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@85928"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_skeleton": {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@438fe"
- },
- "_skinningRoot": {
- "__id__": 1
- },
- "_id": ""
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "c98d4pQMBN04mPlA5MgLt/",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "Root",
- "_objFlags": 0,
- "_parent": {
- "__id__": 2
- },
- "_children": [
- {
- "__id__": 8
- },
- {
- "__id__": 54
- },
- {
- "__id__": 60
- },
- {
- "__id__": 66
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 68
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigHub001",
- "_objFlags": 0,
- "_parent": {
- "__id__": 7
- },
- "_children": [
- {
- "__id__": 9
- },
- {
- "__id__": 35
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 53
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.00946667604148388,
- "y": 0.396495878696442,
- "z": -0.0885784104466438
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.5361024289501173,
- "y": -0.4580269284494385,
- "z": -0.549829736649208,
- "w": -0.44776420042832804
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 2.53999996185303,
- "y": 2.53999996185303,
- "z": 2.53999996185303
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -172.51401257812262,
- "y": -97.68531791489475,
- "z": 79.57317366958246
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "transform5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 8
- },
- "_children": [
- {
- "__id__": 10
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 34
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.010111466050148,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 7.669200064787075e-11,
- "y": -2.5504043546170148e-8,
- "z": 0.0030070387557326315,
- "w": 0.9999954788487401
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999940395355,
- "y": 0.99999988079071,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 1.7576749490448334e-8,
- "y": -0.0000029226141789745247,
- "z": 0.34458177837377046
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigSpine2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 9
- },
- "_children": [
- {
- "__id__": 11
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 33
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0422200374305248,
- "y": 0.0000615193275734782,
- "z": 0.00149063172284514
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.03440248555737202,
- "y": -0.04120036169140243,
- "z": 0.2108731544597358,
- "w": 0.9760386836146265
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1.00000023841858,
- "z": 1.00000011920929
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 5.3146938721300705,
- "y": -5.970994266063751,
- "z": 24.129846765030827
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigHub002",
- "_objFlags": 0,
- "_parent": {
- "__id__": 10
- },
- "_children": [
- {
- "__id__": 12
- },
- {
- "__id__": 20
- },
- {
- "__id__": 28
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 32
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0524552129209042,
- "y": -3.57627860658738e-9,
- "z": -2.24820146604726e-16
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.014451825917317359,
- "y": 0.004294238496948252,
- "z": 0.2801017746896587,
- "w": 0.9598519156927752
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.99999988079071,
- "y": 0.999999821186066,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 1.7222660959418479,
- "y": 0.010038201261326358,
- "z": 32.53648582884744
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigLArmCollarbone",
- "_objFlags": 0,
- "_parent": {
- "__id__": 11
- },
- "_children": [
- {
- "__id__": 13
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 19
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.00474120583385229,
- "y": -0.00379844172857702,
- "z": 0.0221731010824442
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.05983162276456949,
- "y": -0.2903932024125814,
- "z": -0.11320337610889047,
- "w": 0.9483021462316075
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1.00000011920929,
- "z": 1.00000023841858
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 2.825142376708126,
- "y": -33.69362840648498,
- "z": -14.445051374548514
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigLArm1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 12
- },
- "_children": [
- {
- "__id__": 14
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 18
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0600666329264641,
- "y": 0.000390069064451382,
- "z": 0.00962917041033506
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.21657548537751548,
- "y": -0.6748158836056154,
- "z": 0.40810322182923026,
- "w": 0.5754740156598456
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999940395355,
- "y": 1.00000023841858,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 27.750218807858275,
- "y": -112.12067248569345,
- "z": 49.64107586147389
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigLArm2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 13
- },
- "_children": [
- {
- "__id__": 15
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 17
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.085054948925972,
- "y": 0.00280210073105991,
- "z": 0.00103955704253167
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.34062266316563417,
- "y": -0.3313617703066264,
- "z": 0.015831189214640412,
- "w": 0.8797300449372295
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999701976776,
- "y": 0.999999165534973,
- "z": 0.999999582767487
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 38.47005891425649,
- "y": -37.28512338347824,
- "z": -11.41326653841489
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigLArmPalm",
- "_objFlags": 0,
- "_parent": {
- "__id__": 14
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 16
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0620913505554199,
- "y": 4.76837147544984e-9,
- "z": -8.88178399847791e-18
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.8868866699604078,
- "y": 0.0629658783250991,
- "z": 0.19730872220073664,
- "w": 0.41296077411395904
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999998271465302,
- "y": 1.00000059604645,
- "z": 1.00000035762787
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -130.68159528226735,
- "y": 23.735516043209053,
- "z": 2.9390914506218873
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "65bcBH/JRG7abbvTE/WMe4",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "d6ZhiN/WhAdp09fRXIS2M6",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "518rHLbB5Lqrxom5X/JsVt",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "ea3ce6dhREsKrEVbRaST0m",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRArmCollarbone",
- "_objFlags": 0,
- "_parent": {
- "__id__": 11
- },
- "_children": [
- {
- "__id__": 21
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 27
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.00247978558763862,
- "y": 0.00313544319942594,
- "z": -0.0223304275423288
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.011394123810922321,
- "y": 0.27220154439622285,
- "z": -0.24422817498380905,
- "w": 0.9306605674009027
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1.00000023841858
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 7.2335815390403,
- "y": 34.37461932340513,
- "z": -27.438100388831305
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRArm1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 20
- },
- "_children": [
- {
- "__id__": 22
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 26
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0475980713963509,
- "y": 0.00466074096038938,
- "z": -0.0130695514380932
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.159261644296006,
- "y": 0.8932829522209775,
- "z": 0.19894512048845775,
- "w": 0.3702730545980094
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1.00000023841858,
- "z": 1.00000011920929
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -15.266419690287194,
- "y": 138.45720104839256,
- "z": 25.58562404948357
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRArm2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 21
- },
- "_children": [
- {
- "__id__": 23
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 25
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.091744601726532,
- "y": 0.00367651390843093,
- "z": -0.00289557967334986
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.0679086208559021,
- "y": 0.07542300806255486,
- "z": 0.17746130738341592,
- "w": 0.9788806226757244
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999523162842,
- "y": 1.00000011920929,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 6.528712886316332,
- "y": 7.603131852351884,
- "z": 20.95720925686344
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRArmPalm",
- "_objFlags": 0,
- "_parent": {
- "__id__": 22
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 24
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0620913505554199,
- "y": 4.76837147544984e-9,
- "z": 1.90734859017994e-8
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7025126256494187,
- "y": -0.07440974603290156,
- "z": -0.07383548507973141,
- "w": 0.7039087452514847
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000143051147,
- "y": 0.999999046325684,
- "z": 0.999999165534973
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 89.87998256201688,
- "y": -0.05943978423980148,
- "z": -12.034138302444806
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f1TDX8o1tMRqj+H00yf9U+",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "70bQGxGLNCRY24Azzy76yG",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "79LqSCyCpAILa5yJA74lqT",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "der7crzUNEubpnIJpNNb47",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigNeck",
- "_objFlags": 0,
- "_parent": {
- "__id__": 11
- },
- "_children": [
- {
- "__id__": 29
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 31
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0382775291800499,
- "y": -0.00380543689243495,
- "z": 5.64114399637106e-9
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.0691192981305802,
- "y": 0.2295340040191064,
- "z": 0.027729003225266596,
- "w": 0.970447198978402
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000023841858,
- "y": 0.999999940395355,
- "z": 0.999999761581421
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -8.448397036787883,
- "y": 26.70802600018711,
- "z": 1.2656869800750525
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigHead",
- "_objFlags": 0,
- "_parent": {
- "__id__": 28
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 30
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0531737692654133,
- "y": 3.55271359939116e-17,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.14076566749861585,
- "y": -0.08162437410495542,
- "z": -0.34175327550595336,
- "w": 0.9255955850621779
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 0.99999988079071,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 15.736880814341328,
- "y": -4.1685949713145485,
- "z": -40.96747245155452
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "b9CrWUxq1HL5iZNTrbyF3a",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "adoqvue0dPJ4Phbm+9BIub",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "49BWxrFedLwakbjHk3RmS3",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "71PpXlV+xEO73Qpu7gY3u3",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "55vn0LqmJHEoR0/M0FbrZZ",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "transform6",
- "_objFlags": 0,
- "_parent": {
- "__id__": 8
- },
- "_children": [
- {
- "__id__": 36
- },
- {
- "__id__": 44
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 52
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.164324209094048,
- "y": 0.00904046930372715,
- "z": -3.95157379040612e-10
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.5,
- "y": -0.5,
- "z": -0.4999999999999999,
- "w": 0.5000000000000001
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.393700778484344,
- "y": 0.393700778484344,
- "z": 0.393700778484344
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -90,
- "y": -90,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 35
- },
- "_children": [
- {
- "__id__": 37
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 43
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0734411403536797,
- "y": 0.385172486305237,
- "z": -0.00266149430535734
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.13129662224041427,
- "y": -0.09643874498648303,
- "z": -0.6073994154639895,
- "w": 0.7775131610125283
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -54.682822288931675,
- "y": -51.79919239150502,
- "z": -66.80910299990842
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 36
- },
- "_children": [
- {
- "__id__": 38
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 42
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.172996342182159,
- "y": -0.0495890527963638,
- "z": 0.0295807756483555
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.08746892081553412,
- "y": 0.3287914643636657,
- "z": -0.024959578732714007,
- "w": 0.940011904330178
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 10.420252247127106,
- "y": 38.50164370795961,
- "z": 0.6069722938880965
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg3",
- "_objFlags": 0,
- "_parent": {
- "__id__": 37
- },
- "_children": [
- {
- "__id__": 39
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 41
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.16975411772728,
- "y": -0.0467007532715797,
- "z": -0.068213127553463
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.27715301387486563,
- "y": -0.6249135704198988,
- "z": 0.6111056180787424,
- "w": 0.3990227561903342
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 84.23316809750375,
- "y": -122.22763709106536,
- "z": 8.1228897830029
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "joint6",
- "_objFlags": 0,
- "_parent": {
- "__id__": 38
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 40
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0976830348372459,
- "y": -0.0667777732014656,
- "z": 0.0195708274841309
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0.7071067811865477,
- "z": 0,
- "w": 0.7071067811865474
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 90.00000000000003,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "24b0VOF9FK5JEOvIeIxI5Z",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "402NbHjwpLWYHbG5mW9E9W",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "e3Dzw3wV9PXIA6Wvvb0BTd",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "2dnTsBnVVP2ZfYBqjx5hWW",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg4",
- "_objFlags": 0,
- "_parent": {
- "__id__": 35
- },
- "_children": [
- {
- "__id__": 45
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 51
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0736443996429443,
- "y": 0.41738298535347,
- "z": -0.022962799295783
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7249738989392661,
- "y": 0.6102479544184605,
- "z": -0.2422484397118404,
- "w": 0.208148921308909
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 105.75350291174651,
- "y": 77.17235378152434,
- "z": 51.62645504171302
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 44
- },
- "_children": [
- {
- "__id__": 46
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 50
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.172995999455452,
- "y": 0.0495885983109474,
- "z": -0.0295807905495167
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.06008495904136793,
- "y": 0.21917465844204823,
- "z": -0.009390411187834784,
- "w": 0.9737885227150361
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 6.957916637021976,
- "y": 25.340818919918192,
- "z": 0.4612160370093214
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigRLeg6",
- "_objFlags": 0,
- "_parent": {
- "__id__": 45
- },
- "_children": [
- {
- "__id__": 47
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 49
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.16975399851799,
- "y": 0.0467010028660297,
- "z": 0.06821309030056
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.4762128266987805,
- "y": -0.5352545946823544,
- "z": 0.44990998255932985,
- "w": 0.5332024663788134
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 81.85559422066126,
- "y": -88.7292451709892,
- "z": -1.7193595969887039
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "joint7",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 48
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.097682997584343,
- "y": 0.0667777732014656,
- "z": -0.0195710007101297
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 1.2266347333466997e-18,
- "y": 0.7071067811865477,
- "z": -1.2266347333467003e-18,
- "w": 0.7071067811865474
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 1.9878466759146992e-16,
- "y": 90.00000000000003,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "d7AAPSAUlEI4/Yvbcbh+kV",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "76sA7VEj5NqKXbv8Z4dP0/",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "3cBgLnoEJGSLhLzvYodTnh",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "25B1HShW9PHJbNoAMOv9vg",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "b4GkiJ7mhFgrae/x5xYcUB",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "4eAfKrSCpFRaX6CrRegRu9",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "footR",
- "_objFlags": 0,
- "_parent": {
- "__id__": 7
- },
- "_children": [
- {
- "__id__": 55
- },
- {
- "__id__": 57
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 59
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.103088907897472,
- "y": 0.0118712959811091,
- "z": -0.108043991029263
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.014868050860365717,
- "y": 0.007468645018696488,
- "z": 0.03906833392729547,
- "w": 0.9990980060481273
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -1.7412035298104864,
- "y": 0.9244797917652428,
- "z": 4.4646552755823405
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "ikHandle3",
- "_objFlags": 0,
- "_parent": {
- "__id__": 54
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 56
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.169934168457985,
- "y": 0.0746329873800278,
- "z": -0.0615951344370842
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.012593269357522655,
- "y": -0.01381779369995828,
- "z": -0.6427039508837447,
- "w": 0.7658864861469873
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -12.051532350787026,
- "y": -12.151149751578876,
- "z": -79.77831608415441
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "0d0mwX7OBP4JgR8ZuFJcMP",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "ikHandle4",
- "_objFlags": 0,
- "_parent": {
- "__id__": 54
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 58
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.189504995942116,
- "y": 0.00785522069782019,
- "z": 0.0360878966748714
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 6.17923001128712e-10,
- "y": -0.7071067811865477,
- "z": 6.179230011287123e-10,
- "w": 0.7071067811865474
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 1.0013870880809019e-7,
- "y": -90.00000000000003,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "48LF7a2CdFirjQ5HquZmY+",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "a4LBVU7C9HKakE30ciV2KC",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "footL",
- "_objFlags": 0,
- "_parent": {
- "__id__": 7
- },
- "_children": [
- {
- "__id__": 61
- },
- {
- "__id__": 63
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 65
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0340007841587067,
- "y": 0.00236411648802459,
- "z": 0.0348289459943771
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.00892803091136768,
- "y": 0.08441510968698954,
- "z": -0.006586649589454983,
- "w": 0.9963689053597391
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 1.0832140909053387,
- "y": 9.691674899494556,
- "z": -0.6656856086102044
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "ikHandle1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 60
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 62
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.169934004545212,
- "y": 0.074633002281189,
- "z": -0.0615951009094715
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7267234697130039,
- "y": 0.6842004445592387,
- "z": -0.028921536208518284,
- "w": 0.05391006377822266
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 116.1598306658024,
- "y": 61.81087848213827,
- "z": 82.45006109014177
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f5bCogPqlAvpbTnJLZhdAv",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "ikHandle2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 60
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 64
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.189504995942116,
- "y": 0.00785522069782019,
- "z": 0.0360878966748714
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.7071067811865474,
- "y": 3.615042404679564e-10,
- "z": 0.7071067811865477,
- "w": 3.6150426822353165e-10
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -179.99999994141572,
- "y": 90.00000000000003,
- "z": 2.2489917684045962e-15
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "c8myw91Z1Hz6ta3bi6DT2o",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "31G9jv6txCFYxlY2IqFRSj",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "HpSocket",
- "_objFlags": 0,
- "_parent": {
- "__id__": 7
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 67
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 1.20048272609711,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "2942qTZjJGV7kj2gkghtoM",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "82X+L31IRIJauvzZDMVtMa",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "11SZASJV1PXKKekKIVRWRt",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "CATRigHead Socket",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [
- {
- "__id__": 71
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 79
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.020798172088042778,
- "y": 0.7251689864596722,
- "z": 0.2160940635389361
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.5579696607917776,
- "y": 0.3899408901986983,
- "z": 0.6559878273601861,
- "w": 0.326030694733925
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 2.5400000309933324,
- "y": 2.539999664286614,
- "z": 2.539999584695839
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -162.99970305681893,
- "y": -109.02529437613327,
- "z": 59.64317076990567
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "DJ_maozi05",
- "_objFlags": 0,
- "_parent": {
- "__id__": 70
- },
- "_children": [
- {
- "__id__": 72
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 78
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.2958362581861642,
- "y": 0.16297276331771837,
- "z": -0.043916978548941
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.5579696547011112,
- "y": 0.3899409241734567,
- "z": 0.6559878216137043,
- "w": -0.3260306626966972
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.3937007750916082,
- "y": 0.3937006979133814,
- "z": 0.39370076200473936
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -118.90203758686188,
- "y": -99.48285101033765,
- "z": 0.42434313895810283
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "RootNode",
- "_objFlags": 0,
- "_parent": {
- "__id__": 71
- },
- "_children": [
- {
- "__id__": 73
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 77
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "DJ_maozi05",
- "_objFlags": 0,
- "_parent": {
- "__id__": 72
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 74
- }
- ],
- "_prefab": {
- "__id__": 76
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.088,
- "y": -0.052,
- "z": 0.05
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0.06065656821895343,
- "w": 0.9981586951642005
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 6.955
- },
- "_id": ""
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "DJ_maozi05<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 73
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "1191a97c-5d8e-449b-8ddc-1bb536e411d2"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 75
- },
- "_mesh": {
- "__uuid__": "34d61b8a-f011-4758-9051-3f56a4a29d66@9c8fd"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": ""
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f1hbq3rHtEeqc5v4DJFl3L",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "a4Xc0j+vdEwYytmGkfIO30",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "09ad0J0ERCfZWClpeaWKxV",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "63VBOb1XZHbpcgRLFyK4qo",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.SkeletalAnimationComponent",
- "_name": "Monster_anima<SkeletalAnimationComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 1
- },
- "_enabled": true,
- "playOnLoad": false,
- "_clips": [
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@2cd1c"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@beef0"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@73d50"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@f4113"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@9292d"
- },
- {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@20c15"
- }
- ],
- "_defaultClip": {
- "__uuid__": "730141ce-4b2e-4748-b542-03a8a2e35851@57146"
- },
- "_useBakedAnimation": true,
- "_sockets": [
- {
- "__id__": 81
- }
- ],
- "_id": ""
- },
- {
- "__type__": "cc.SkeletalAnimationComponent.Socket",
- "path": "RootNode/Root/CATRigHub001/transform5/CATRigSpine2/CATRigHub002/CATRigNeck/CATRigHead",
- "target": {
- "__id__": 70
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f4gTWxhL1H7IeF8nURlS+a",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- }
- ]
|