123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- fileFormatVersion: 2
- guid: 0d9d26e2162aa4d11ab075b34c029673
- ModelImporter:
- serializedVersion: 18
- fileIDToRecycleName:
- 100000: //RootNode
- 100002: l_hipProxy_geo
- 100004: l_kneeProxy_geo
- 100006: l_ankleProxy_geo
- 100008: l_ballProxy_geo
- 100010: LToeBase_End2
- 100012: LeftToes
- 100014: LeftFoot
- 100016: LeftLeg
- 100018: LeftUpLeg
- 100020: pelvisProxy_geo
- 100022: r_hipProxy_geo
- 100024: r_kneeProxy_geo
- 100026: r_ankleProxy_geo
- 100028: r_ballProxy_geo
- 100030: LToeBase_End3
- 100032: RightToes
- 100034: RightFoot
- 100036: RightLeg
- 100038: RightUpLeg
- 100040: spineProxy_geo
- 100042: l_clavicleProxy_geo
- 100044: l_shourderProxy_geo
- 100046: l_erbowProxy_geo
- 100048: l_wristProxy_geo
- 100050: l_thumbProxy_01_geo
- 100052: l_thumbProxy_02_geo
- 100054: l_thumbProxy_03_geo
- 100056: LeftHandThumb13
- 100058: LeftHandThumb3
- 100060: LeftHandThumb2
- 100062: LeftHandThumb1
- 100064: l_indexProxy_01_geo
- 100066: l_indexProxy_02_geo
- 100068: l_indexProxy_03_geo
- 100070: LeftHandIndex13
- 100072: LeftHandIndex3
- 100074: LeftHandIndex2
- 100076: LeftHandIndex1
- 100078: l_middleProxy_01_geo
- 100080: l_middleProxy_02_geo
- 100082: l_middleProxy_03_geo
- 100084: LeftHandMiddle13
- 100086: LeftHandMiddle3
- 100088: LeftHandMiddle2
- 100090: LeftHandMiddle1
- 100092: l_ringProxy_01_geo
- 100094: l_ringProxy_02_geo
- 100096: l_ringProxy_03_geo
- 100098: LeftHandRing13
- 100100: LeftHandRing3
- 100102: LeftHandRing2
- 100104: LeftHandRing1
- 100106: l_pinkyProxy_01_geo
- 100108: l_pinkyProxy_02_geo
- 100110: l_pinkyProxy_03_geo
- 100112: LeftHandPinky13
- 100114: LeftHandPinky3
- 100116: LeftHandPinky2
- 100118: LeftHandPinky1
- 100120: LeftHand
- 100122: LeftForeArm
- 100124: LeftArm
- 100126: LeftShoulder
- 100128: chestProxy_geo
- 100130: r_clavicleProxy_geo
- 100132: r_shourderProxy_geo
- 100134: r_erbowProxy_geo
- 100136: r_wristProxy_geo
- 100138: r_thumbProxy_01_geo
- 100140: r_thumbProxy_02_geo
- 100142: r_thumbProxy_03_geo
- 100144: LeftHandThumb17
- 100146: RightHandThumb3
- 100148: RightHandThumb2
- 100150: RightHandThumb1
- 100152: r_indexProxy_01_geo
- 100154: r_indexProxy_02_geo
- 100156: r_indexProxy_03_geo
- 100158: LeftHandIndex17
- 100160: RightHandIndex3
- 100162: RightHandIndex2
- 100164: RightHandIndex1
- 100166: r_middleProxy_01_geo
- 100168: r_middleProxy_02_geo
- 100170: r_middleProxy_03_geo
- 100172: LeftHandMiddle17
- 100174: RightHandMiddle3
- 100176: RightHandMiddle2
- 100178: RightHandMiddle1
- 100180: r_ringProxy_01_geo
- 100182: r_ringProxy_02_geo
- 100184: r_ringProxy_03_geo
- 100186: LeftHandRing17
- 100188: RightHandRing3
- 100190: RightHandRing2
- 100192: RightHandRing1
- 100194: r_pinkyProxy_01_geo
- 100196: r_pinkyProxy_02_geo
- 100198: r_pinkyProxy_03_geo
- 100200: LeftHandPinky17
- 100202: RightHandPinky3
- 100204: RightHandPinky2
- 100206: RightHandPinky1
- 100208: RightHand
- 100210: RightForeArm
- 100212: RightArm
- 100214: RightShoulder
- 100216: neckProxy_geo
- 100218: UNI_01_Upper_teethProxy
- 100220: headProxy_geo
- 100222: RightLipUpper
- 100224: RightNostril
- 100226: RightCheek
- 100228: RightEyelidLower
- 100230: RightEyelidUpper
- 100232: RightIOuterBrow
- 100234: RightInnerBrow
- 100236: LeftIOuterBrow
- 100238: LeftInnerBrow
- 100240: LeftEyelidUpper
- 100242: LeftEyelidLower
- 100244: LeftCheek
- 100246: LeftNostril
- 100248: LeftLipUpper
- 100250: jawProxy_geo
- 100252: UNI_01_Lower_teethProxy
- 100254: LeftLipCorner
- 100256: RightLipCorner
- 100258: RightLipLower
- 100260: JawEND
- 100262: LeftLipLower
- 100264: UNI_01_TongueTipProxy
- 100266: TongueTip
- 100268: UNI_01_TongueBaseProxy
- 100270: TongueBack
- 100272: Jaw
- 100274: r_UNI_eye
- 100276: RightEye
- 100278: l_UNI_eye
- 100280: LeftEye
- 100282: HeadTop_End
- 100284: Head
- 100286: Neck
- 100288: Chest
- 100290: Spine
- 100292: Hips
- 100294: Reference
- 400000: //RootNode
- 400002: l_hipProxy_geo
- 400004: l_kneeProxy_geo
- 400006: l_ankleProxy_geo
- 400008: l_ballProxy_geo
- 400010: LToeBase_End2
- 400012: LeftToes
- 400014: LeftFoot
- 400016: LeftLeg
- 400018: LeftUpLeg
- 400020: pelvisProxy_geo
- 400022: r_hipProxy_geo
- 400024: r_kneeProxy_geo
- 400026: r_ankleProxy_geo
- 400028: r_ballProxy_geo
- 400030: LToeBase_End3
- 400032: RightToes
- 400034: RightFoot
- 400036: RightLeg
- 400038: RightUpLeg
- 400040: spineProxy_geo
- 400042: l_clavicleProxy_geo
- 400044: l_shourderProxy_geo
- 400046: l_erbowProxy_geo
- 400048: l_wristProxy_geo
- 400050: l_thumbProxy_01_geo
- 400052: l_thumbProxy_02_geo
- 400054: l_thumbProxy_03_geo
- 400056: LeftHandThumb13
- 400058: LeftHandThumb3
- 400060: LeftHandThumb2
- 400062: LeftHandThumb1
- 400064: l_indexProxy_01_geo
- 400066: l_indexProxy_02_geo
- 400068: l_indexProxy_03_geo
- 400070: LeftHandIndex13
- 400072: LeftHandIndex3
- 400074: LeftHandIndex2
- 400076: LeftHandIndex1
- 400078: l_middleProxy_01_geo
- 400080: l_middleProxy_02_geo
- 400082: l_middleProxy_03_geo
- 400084: LeftHandMiddle13
- 400086: LeftHandMiddle3
- 400088: LeftHandMiddle2
- 400090: LeftHandMiddle1
- 400092: l_ringProxy_01_geo
- 400094: l_ringProxy_02_geo
- 400096: l_ringProxy_03_geo
- 400098: LeftHandRing13
- 400100: LeftHandRing3
- 400102: LeftHandRing2
- 400104: LeftHandRing1
- 400106: l_pinkyProxy_01_geo
- 400108: l_pinkyProxy_02_geo
- 400110: l_pinkyProxy_03_geo
- 400112: LeftHandPinky13
- 400114: LeftHandPinky3
- 400116: LeftHandPinky2
- 400118: LeftHandPinky1
- 400120: LeftHand
- 400122: LeftForeArm
- 400124: LeftArm
- 400126: LeftShoulder
- 400128: chestProxy_geo
- 400130: r_clavicleProxy_geo
- 400132: r_shourderProxy_geo
- 400134: r_erbowProxy_geo
- 400136: r_wristProxy_geo
- 400138: r_thumbProxy_01_geo
- 400140: r_thumbProxy_02_geo
- 400142: r_thumbProxy_03_geo
- 400144: LeftHandThumb17
- 400146: RightHandThumb3
- 400148: RightHandThumb2
- 400150: RightHandThumb1
- 400152: r_indexProxy_01_geo
- 400154: r_indexProxy_02_geo
- 400156: r_indexProxy_03_geo
- 400158: LeftHandIndex17
- 400160: RightHandIndex3
- 400162: RightHandIndex2
- 400164: RightHandIndex1
- 400166: r_middleProxy_01_geo
- 400168: r_middleProxy_02_geo
- 400170: r_middleProxy_03_geo
- 400172: LeftHandMiddle17
- 400174: RightHandMiddle3
- 400176: RightHandMiddle2
- 400178: RightHandMiddle1
- 400180: r_ringProxy_01_geo
- 400182: r_ringProxy_02_geo
- 400184: r_ringProxy_03_geo
- 400186: LeftHandRing17
- 400188: RightHandRing3
- 400190: RightHandRing2
- 400192: RightHandRing1
- 400194: r_pinkyProxy_01_geo
- 400196: r_pinkyProxy_02_geo
- 400198: r_pinkyProxy_03_geo
- 400200: LeftHandPinky17
- 400202: RightHandPinky3
- 400204: RightHandPinky2
- 400206: RightHandPinky1
- 400208: RightHand
- 400210: RightForeArm
- 400212: RightArm
- 400214: RightShoulder
- 400216: neckProxy_geo
- 400218: UNI_01_Upper_teethProxy
- 400220: headProxy_geo
- 400222: RightLipUpper
- 400224: RightNostril
- 400226: RightCheek
- 400228: RightEyelidLower
- 400230: RightEyelidUpper
- 400232: RightIOuterBrow
- 400234: RightInnerBrow
- 400236: LeftIOuterBrow
- 400238: LeftInnerBrow
- 400240: LeftEyelidUpper
- 400242: LeftEyelidLower
- 400244: LeftCheek
- 400246: LeftNostril
- 400248: LeftLipUpper
- 400250: jawProxy_geo
- 400252: UNI_01_Lower_teethProxy
- 400254: LeftLipCorner
- 400256: RightLipCorner
- 400258: RightLipLower
- 400260: JawEND
- 400262: LeftLipLower
- 400264: UNI_01_TongueTipProxy
- 400266: TongueTip
- 400268: UNI_01_TongueBaseProxy
- 400270: TongueBack
- 400272: Jaw
- 400274: r_UNI_eye
- 400276: RightEye
- 400278: l_UNI_eye
- 400280: LeftEye
- 400282: HeadTop_End
- 400284: Head
- 400286: Neck
- 400288: Chest
- 400290: Spine
- 400292: Hips
- 400294: Reference
- 2300000: l_hipProxy_geo
- 2300002: l_kneeProxy_geo
- 2300004: l_ankleProxy_geo
- 2300006: l_ballProxy_geo
- 2300008: pelvisProxy_geo
- 2300010: r_hipProxy_geo
- 2300012: r_kneeProxy_geo
- 2300014: r_ankleProxy_geo
- 2300016: r_ballProxy_geo
- 2300018: spineProxy_geo
- 2300020: l_clavicleProxy_geo
- 2300022: l_shourderProxy_geo
- 2300024: l_erbowProxy_geo
- 2300026: l_wristProxy_geo
- 2300028: l_thumbProxy_01_geo
- 2300030: l_thumbProxy_02_geo
- 2300032: l_thumbProxy_03_geo
- 2300034: l_indexProxy_01_geo
- 2300036: l_indexProxy_02_geo
- 2300038: l_indexProxy_03_geo
- 2300040: l_middleProxy_01_geo
- 2300042: l_middleProxy_02_geo
- 2300044: l_middleProxy_03_geo
- 2300046: l_ringProxy_01_geo
- 2300048: l_ringProxy_02_geo
- 2300050: l_ringProxy_03_geo
- 2300052: l_pinkyProxy_01_geo
- 2300054: l_pinkyProxy_02_geo
- 2300056: l_pinkyProxy_03_geo
- 2300058: chestProxy_geo
- 2300060: r_clavicleProxy_geo
- 2300062: r_shourderProxy_geo
- 2300064: r_erbowProxy_geo
- 2300066: r_wristProxy_geo
- 2300068: r_thumbProxy_01_geo
- 2300070: r_thumbProxy_02_geo
- 2300072: r_thumbProxy_03_geo
- 2300074: r_indexProxy_01_geo
- 2300076: r_indexProxy_02_geo
- 2300078: r_indexProxy_03_geo
- 2300080: r_middleProxy_01_geo
- 2300082: r_middleProxy_02_geo
- 2300084: r_middleProxy_03_geo
- 2300086: r_ringProxy_01_geo
- 2300088: r_ringProxy_02_geo
- 2300090: r_ringProxy_03_geo
- 2300092: r_pinkyProxy_01_geo
- 2300094: r_pinkyProxy_02_geo
- 2300096: r_pinkyProxy_03_geo
- 2300098: neckProxy_geo
- 2300100: UNI_01_Upper_teethProxy
- 2300102: headProxy_geo
- 2300104: jawProxy_geo
- 2300106: UNI_01_Lower_teethProxy
- 2300108: UNI_01_TongueTipProxy
- 2300110: UNI_01_TongueBaseProxy
- 2300112: r_UNI_eye
- 2300114: l_UNI_eye
- 3300000: l_hipProxy_geo
- 3300002: l_kneeProxy_geo
- 3300004: l_ankleProxy_geo
- 3300006: l_ballProxy_geo
- 3300008: pelvisProxy_geo
- 3300010: r_hipProxy_geo
- 3300012: r_kneeProxy_geo
- 3300014: r_ankleProxy_geo
- 3300016: r_ballProxy_geo
- 3300018: spineProxy_geo
- 3300020: l_clavicleProxy_geo
- 3300022: l_shourderProxy_geo
- 3300024: l_erbowProxy_geo
- 3300026: l_wristProxy_geo
- 3300028: l_thumbProxy_01_geo
- 3300030: l_thumbProxy_02_geo
- 3300032: l_thumbProxy_03_geo
- 3300034: l_indexProxy_01_geo
- 3300036: l_indexProxy_02_geo
- 3300038: l_indexProxy_03_geo
- 3300040: l_middleProxy_01_geo
- 3300042: l_middleProxy_02_geo
- 3300044: l_middleProxy_03_geo
- 3300046: l_ringProxy_01_geo
- 3300048: l_ringProxy_02_geo
- 3300050: l_ringProxy_03_geo
- 3300052: l_pinkyProxy_01_geo
- 3300054: l_pinkyProxy_02_geo
- 3300056: l_pinkyProxy_03_geo
- 3300058: chestProxy_geo
- 3300060: r_clavicleProxy_geo
- 3300062: r_shourderProxy_geo
- 3300064: r_erbowProxy_geo
- 3300066: r_wristProxy_geo
- 3300068: r_thumbProxy_01_geo
- 3300070: r_thumbProxy_02_geo
- 3300072: r_thumbProxy_03_geo
- 3300074: r_indexProxy_01_geo
- 3300076: r_indexProxy_02_geo
- 3300078: r_indexProxy_03_geo
- 3300080: r_middleProxy_01_geo
- 3300082: r_middleProxy_02_geo
- 3300084: r_middleProxy_03_geo
- 3300086: r_ringProxy_01_geo
- 3300088: r_ringProxy_02_geo
- 3300090: r_ringProxy_03_geo
- 3300092: r_pinkyProxy_01_geo
- 3300094: r_pinkyProxy_02_geo
- 3300096: r_pinkyProxy_03_geo
- 3300098: neckProxy_geo
- 3300100: UNI_01_Upper_teethProxy
- 3300102: headProxy_geo
- 3300104: jawProxy_geo
- 3300106: UNI_01_Lower_teethProxy
- 3300108: UNI_01_TongueTipProxy
- 3300110: UNI_01_TongueBaseProxy
- 3300112: r_UNI_eye
- 3300114: l_UNI_eye
- 4300000: l_UNI_eye
- 4300002: r_UNI_eye
- 4300004: UNI_01_TongueBaseProxy
- 4300006: UNI_01_TongueTipProxy
- 4300008: UNI_01_Lower_teethProxy
- 4300010: jawProxy_geo
- 4300012: headProxy_geo
- 4300014: UNI_01_Upper_teethProxy
- 4300016: neckProxy_geo
- 4300018: r_pinkyProxy_03_geo
- 4300020: r_pinkyProxy_02_geo
- 4300022: r_pinkyProxy_01_geo
- 4300024: r_ringProxy_03_geo
- 4300026: r_ringProxy_02_geo
- 4300028: r_ringProxy_01_geo
- 4300030: r_middleProxy_03_geo
- 4300032: r_middleProxy_02_geo
- 4300034: r_middleProxy_01_geo
- 4300036: r_indexProxy_03_geo
- 4300038: r_indexProxy_02_geo
- 4300040: r_indexProxy_01_geo
- 4300042: r_thumbProxy_03_geo
- 4300044: r_thumbProxy_02_geo
- 4300046: r_thumbProxy_01_geo
- 4300048: r_wristProxy_geo
- 4300050: r_erbowProxy_geo
- 4300052: r_shourderProxy_geo
- 4300054: r_clavicleProxy_geo
- 4300056: chestProxy_geo
- 4300058: l_pinkyProxy_03_geo
- 4300060: l_pinkyProxy_02_geo
- 4300062: l_pinkyProxy_01_geo
- 4300064: l_ringProxy_03_geo
- 4300066: l_ringProxy_02_geo
- 4300068: l_ringProxy_01_geo
- 4300070: l_middleProxy_03_geo
- 4300072: l_middleProxy_02_geo
- 4300074: l_middleProxy_01_geo
- 4300076: l_indexProxy_03_geo
- 4300078: l_indexProxy_02_geo
- 4300080: l_indexProxy_01_geo
- 4300082: l_thumbProxy_03_geo
- 4300084: l_thumbProxy_02_geo
- 4300086: l_thumbProxy_01_geo
- 4300088: l_wristProxy_geo
- 4300090: l_erbowProxy_geo
- 4300092: l_shourderProxy_geo
- 4300094: l_clavicleProxy_geo
- 4300096: spineProxy_geo
- 4300098: r_ballProxy_geo
- 4300100: r_ankleProxy_geo
- 4300102: r_kneeProxy_geo
- 4300104: r_hipProxy_geo
- 4300106: pelvisProxy_geo
- 4300108: l_ballProxy_geo
- 4300110: l_ankleProxy_geo
- 4300112: l_kneeProxy_geo
- 4300114: l_hipProxy_geo
- 7400000: __preview___207_Idle_JumpUpMedium_NoHands1Step_Idle
- 7400002: HumanoidIdleJumpUp
- 7400004: HumanoidFall
- 7400006: HumanoidJumpUp
- 7400008: HumanoidMidAir
- 9500000: //RootNode
- 11100000: //RootNode
- materials:
- importMaterials: 0
- materialName: 1
- materialSearch: 2
- animations:
- legacyGenerateAnimations: 3
- bakeSimulation: 0
- optimizeGameObjects: 0
- motionNodeName:
- pivotNodeName:
- animationCompression: 1
- animationRotationError: .5
- animationPositionError: .5
- animationScaleError: .5
- animationWrapMode: 0
- extraExposedTransformPaths: []
- clipAnimations:
- - serializedVersion: 16
- name: HumanoidIdleJumpUp
- takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
- firstFrame: 56
- lastFrame: 233
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 0
- loopBlend: 0
- loopBlendOrientation: 0
- loopBlendPositionY: 0
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 0
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: HumanoidFall
- takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
- firstFrame: 127
- lastFrame: 129
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 0
- keepOriginalPositionXZ: 0
- heightFromFeet: 1
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
- weight: 0
- - path: Reference/Hips/pelvisProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
- weight: 0
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/chestProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/spineProxy_geo
- weight: 0
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: HumanoidJumpUp
- takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
- firstFrame: 125
- lastFrame: 127
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 0
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
- weight: 0
- - path: Reference/Hips/pelvisProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
- weight: 0
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/chestProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/spineProxy_geo
- weight: 0
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: HumanoidMidAir
- takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle
- firstFrame: 131
- lastFrame: 133
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 0
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
- weight: 0
- - path: Reference/Hips/pelvisProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
- weight: 0
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/chestProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/spineProxy_geo
- weight: 0
- maskType: 0
- maskSource: {instanceID: 0}
- isReadable: 1
- meshes:
- lODScreenPercentages: []
- globalScale: .00999999978
- meshCompression: 0
- addColliders: 0
- importBlendShapes: 0
- swapUVChannels: 0
- generateSecondaryUV: 0
- useFileUnits: 1
- optimizeMeshForGPU: 1
- weldVertices: 1
- secondaryUVAngleDistortion: 8
- secondaryUVAreaDistortion: 15.000001
- secondaryUVHardAngle: 88
- secondaryUVPackMargin: 4
- useFileScale: 0
- tangentSpace:
- normalSmoothAngle: 60
- splitTangentsAcrossUV: 1
- normalImportMode: 0
- tangentImportMode: 1
- importAnimation: 1
- copyAvatar: 0
- humanDescription:
- human:
- - boneName: Hips
- humanName: Hips
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftUpLeg
- humanName: LeftUpperLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightUpLeg
- humanName: RightUpperLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftLeg
- humanName: LeftLowerLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightLeg
- humanName: RightLowerLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftFoot
- humanName: LeftFoot
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightFoot
- humanName: RightFoot
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Spine
- humanName: Spine
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Chest
- humanName: Chest
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Neck
- humanName: Neck
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Head
- humanName: Head
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftShoulder
- humanName: LeftShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightShoulder
- humanName: RightShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftArm
- humanName: LeftUpperArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightArm
- humanName: RightUpperArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftForeArm
- humanName: LeftLowerArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightForeArm
- humanName: RightLowerArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHand
- humanName: LeftHand
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHand
- humanName: RightHand
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftToes
- humanName: LeftToes
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightToes
- humanName: RightToes
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Jaw
- humanName: Jaw
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb1
- humanName: Left Thumb Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb2
- humanName: Left Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb3
- humanName: Left Thumb Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex1
- humanName: Left Index Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex2
- humanName: Left Index Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex3
- humanName: Left Index Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle1
- humanName: Left Middle Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle2
- humanName: Left Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle3
- humanName: Left Middle Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing1
- humanName: Left Ring Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing2
- humanName: Left Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing3
- humanName: Left Ring Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky1
- humanName: Left Little Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky2
- humanName: Left Little Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky3
- humanName: Left Little Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb1
- humanName: Right Thumb Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb2
- humanName: Right Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb3
- humanName: Right Thumb Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex1
- humanName: Right Index Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex2
- humanName: Right Index Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex3
- humanName: Right Index Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle1
- humanName: Right Middle Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle2
- humanName: Right Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle3
- humanName: Right Middle Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing1
- humanName: Right Ring Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing2
- humanName: Right Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing3
- humanName: Right Ring Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky1
- humanName: Right Little Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky2
- humanName: Right Little Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky3
- humanName: Right Little Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- skeleton:
- - name: IdleJumpAndFall(Clone)
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Hips
- position: {x: 0, y: .968897998, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftUpLeg
- position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLeg
- position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftFoot
- position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftToes
- position: {x: -.00748699997, y: -.0731673017, z: .145427123}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LToeBase_End2
- position: {x: .0126400003, y: -.0131357787, z: .0358933695}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightUpLeg
- position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLeg
- position: {x: .0205504671, y: -.409130007, z: -.000718647963}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightFoot
- position: {x: .00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightToes
- position: {x: .00748699997, y: -.0731673017, z: .145427495}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LToeBase_End3
- position: {x: -.0126400003, y: -.0131357787, z: .0358929969}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Spine
- position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Chest
- position: {x: -0, y: .162540287, z: -.00165605545}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftShoulder
- position: {x: -.0382859968, y: .221622497, z: -.017063085}
- rotation: {x: .0136282137, y: -.00334516051, z: .160349578, w: .98696053}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftArm
- position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15}
- rotation: {x: .375911772, y: -.0545923635, z: -.131713077, w: .915620983}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftForeArm
- position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13}
- rotation: {x: -.0333359092, y: .0206441227, z: -.0173483491, w: .99908036}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHand
- position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex1
- position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
- rotation: {x: -.0308350436, y: .0179687776, z: .0871932581, w: .995551944}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex2
- position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
- rotation: {x: -.0689338297, y: .0147136617, z: .0279492512, w: .997121096}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex3
- position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08}
- rotation: {x: -1.98371708e-07, y: .07579723, z: .08633665, w: .99337852}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex13
- position: {x: -.0186619665, y: .00437385263, z: -.00384002505}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle1
- position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
- rotation: {x: -.0157175697, y: .0537212379, z: .0864731297, w: .994680524}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle2
- position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125}
- rotation: {x: -.0084464848, y: -.00629218388, z: .0269988962, w: .999579966}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle3
- position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09}
- rotation: {x: 0, y: .0085622156, z: .0601554625, w: .998152316}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle13
- position: {x: -.0196715724, y: .00392557262, z: -.000558814383}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky1
- position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
- rotation: {x: -.0464278534, y: .075739637, z: .0861574858, w: .992312968}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky2
- position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
- rotation: {x: .0492938273, y: -.0217208154, z: .0329489894, w: .998004377}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky3
- position: {x: -.0230640266, y: -6.40258258e-06, z: 1.8330093e-08}
- rotation: {x: 1.6131904e-05, y: -.0589529239, z: .0381713584, w: .997530699}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky13
- position: {x: -.0169719923, y: .00202882662, z: .00314032286}
- rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing1
- position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
- rotation: {x: -.0137463454, y: .0746484697, z: .0850590393, w: .993480563}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing2
- position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
- rotation: {x: .0193215031, y: -.0256576315, z: .0290472321, w: .999061942}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing3
- position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08}
- rotation: {x: 2.46800482e-08, y: -.0178757682, z: .0421800427, w: .998950183}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing13
- position: {x: -.0205416381, y: .00325422082, z: .00137918338}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb1
- position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
- rotation: {x: -.18747139, y: -.0952679813, z: -.186436191, w: .959697902}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb2
- position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
- rotation: {x: -.0260623731, y: .0966885313, z: .00360709149, w: .994966924}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb3
- position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .00545273209, y: .000443113851, z: .00682628015, w: .999961734}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb13
- position: {x: -.031868957, y: -.0052999449, z: .0258005001}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Neck
- position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Head
- position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: HeadTop_End
- position: {x: -5.17045827e-18, y: .188178778, z: .0121086892}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Jaw
- position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
- rotation: {x: .219240054, y: -0, z: -0, w: .975670993}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: JawEND
- position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipCorner
- position: {x: -.032843262, y: -.01657876, z: .0661217645}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipLower
- position: {x: -.0142508168, y: -.0216887593, z: .0822406337}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipCorner
- position: {x: .0328399986, y: -.01657876, z: .0661187842}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipLower
- position: {x: .0142508168, y: -.0216887593, z: .0822387859}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftCheek
- position: {x: -.0542440265, y: .0337019488, z: .0594304018}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEye
- position: {x: -.0208482333, y: .0825027004, z: .0554274321}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidLower
- position: {x: -.0356189571, y: .0650736615, z: .076234743}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidUpper
- position: {x: -.0344068967, y: .10060814, z: .0802053064}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftInnerBrow
- position: {x: -.0120626912, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftIOuterBrow
- position: {x: -.0550398715, y: .114825293, z: .061777398}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipUpper
- position: {x: -.0145013221, y: -.00511181122, z: .094618842}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftNostril
- position: {x: -.0178999994, y: .0263128281, z: .0908674002}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightCheek
- position: {x: .0542399958, y: .033702828, z: .0594273992}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEye
- position: {x: .020849999, y: .082502827, z: .0554273985}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidLower
- position: {x: .0356200002, y: .065072827, z: .0762374029}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidUpper
- position: {x: .0344099998, y: .100612827, z: .0802073926}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightInnerBrow
- position: {x: .0120626874, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightIOuterBrow
- position: {x: .0550400019, y: .114822827, z: .061777398}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipUpper
- position: {x: .0145013221, y: -.00510717137, z: .094617404}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightNostril
- position: {x: .0178999994, y: .0263089053, z: .0908706188}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightShoulder
- position: {x: .0382860154, y: .221621141, z: -.017063085}
- rotation: {x: .156456366, y: .987114966, z: .0289233401, w: .0169999544}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightArm
- position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
- rotation: {x: .105774529, y: .952139974, z: -.285703897, w: -.0247889012}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightForeArm
- position: {x: .253428251, y: .00601135287, z: -.0167045239}
- rotation: {x: .00553037226, y: .0252947882, z: -.014007926, w: .999566615}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHand
- position: {x: .245373696, y: .0216417722, z: .00555046508}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex1
- position: {x: .0747694969, y: -.00124305359, z: .0343444981}
- rotation: {x: -.0270000603, y: .134704068, z: -.0601686388, w: .988688886}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex2
- position: {x: .0370584019, y: .00072612107, z: .0145388944}
- rotation: {x: -.0803579837, y: .0230234303, z: .0437483452, w: .995539427}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex3
- position: {x: .0252250377, y: -.00496646529, z: .0110121462}
- rotation: {x: .0205338672, y: -.0777156726, z: -.0820851624, w: .99337846}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex17
- position: {x: .019119978, y: .000846308249, z: .00398164755}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle1
- position: {x: .0756476447, y: .00479140272, z: .0118531818}
- rotation: {x: -.0139238043, y: .00904238503, z: -.0464301668, w: .998783588}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle2
- position: {x: .0438090637, y: .000194188149, z: .00645493623}
- rotation: {x: -.0214388501, y: -.0445624664, z: .0864190832, w: .99503082}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle3
- position: {x: .0330724716, y: -.00754753686, z: .00168984616}
- rotation: {x: .00108970981, y: -.00868779328, z: -.0601257607, w: .998152435}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle17
- position: {x: .0200548954, y: -.000547108881, z: .000442590448}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky1
- position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
- rotation: {x: -.0533693507, y: -.255000859, z: -.0125746699, w: .96538502}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky2
- position: {x: .0285308417, y: -.001397143, z: -.0116237961}
- rotation: {x: .0333432369, y: .00105855579, z: -.0586744659, w: .997719646}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky3
- position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
- rotation: {x: -.0126836589, y: .0591125637, z: -.0357522406, w: .997530282}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky17
- position: {x: .016975116, y: .00161137758, z: -.00335797085}
- rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing1
- position: {x: .0705984756, y: .00245709647, z: -.00982145779}
- rotation: {x: -.014535781, y: -.117996089, z: -.0257448405, w: .992573857}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing2
- position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
- rotation: {x: .0220796783, y: -.0216961354, z: .0796110034, w: .996345222}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing3
- position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
- rotation: {x: -.00186281116, y: .0181142092, z: -.0420369543, w: .998950124}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing17
- position: {x: .0206709336, y: -.00200043293, z: -.00177803368}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb1
- position: {x: .0146849155, y: -.0111049423, z: .0258580949}
- rotation: {x: -.184676751, y: .0523882434, z: .193273544, w: .962182641}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb2
- position: {x: .0163739994, y: -.00528999977, z: .0234913602}
- rotation: {x: -.0260629468, y: -.0966878831, z: -.00360650336, w: .994966984}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb3
- position: {x: .0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .00545433257, y: -.000443138037, z: -.00682824804, w: .999961793}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb17
- position: {x: .0318690389, y: -.00529994583, z: .0258005001}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- armTwist: .5
- foreArmTwist: .5
- upperLegTwist: .5
- legTwist: .5
- armStretch: .0500000007
- legStretch: .0500000007
- feetSpacing: 0
- rootMotionBoneName:
- lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: d89ea37480b6d75458aa38843e9688dc,
- type: 3}
- animationType: 3
- additionalBone: 0
- userData:
- assetBundleName:
|