123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223 |
- fileFormatVersion: 2
- guid: f7b6954ec8fb0de4cbe60b244d54f758
- 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: _207_Idle_JumpUpMedium_NoHands1Step_Idle
- 7400004: Fall
- 7400006: Jump Up
- 7400008: Mid Air
- 9500000: //RootNode
- 11100000: //RootNode
- materials:
- importMaterials: 0
- materialName: 1
- materialSearch: 2
- animations:
- legacyGenerateAnimations: 3
- bakeSimulation: 0
- optimizeGameObjects: 0
- motionNodeName:
- animationImportErrors:
- animationImportWarnings:
- animationRetargetingWarnings:
- animationDoRetargetingWarnings: 0
- animationCompression: 1
- animationRotationError: .5
- animationPositionError: .5
- animationScaleError: .5
- animationWrapMode: 0
- extraExposedTransformPaths: []
- clipAnimations:
- - serializedVersion: 16
- name: Fall
- 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: Jump Up
- 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: 1
- 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: Mid Air
- 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: 1
- 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: 1
- swapUVChannels: 0
- generateSecondaryUV: 0
- useFileUnits: 1
- optimizeMeshForGPU: 1
- keepQuads: 0
- 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: -40, y: -40, z: -40}
- max: {x: 40, y: 40, z: 40}
- value: {x: .0748811215, y: 0, z: .0374405608}
- length: .0936014354
- modified: 1
- - boneName: LeftUpLeg
- humanName: LeftUpperLeg
- limit:
- min: {x: -60.0000038, y: -60.0000038, z: -90}
- max: {x: 60.0000038, y: 60.0000038, z: 50}
- value: {x: .327716917, y: 0, z: .163858458}
- length: .409646302
- modified: 1
- - boneName: RightUpLeg
- humanName: RightUpperLeg
- limit:
- min: {x: -60.0000038, y: -60.0000038, z: -90}
- max: {x: 60.0000038, y: 60.0000038, z: 50}
- value: {x: .327717036, y: 0, z: .163858518}
- length: .409646451
- modified: 1
- - boneName: LeftLeg
- humanName: LeftLowerLeg
- limit:
- min: {x: -90, y: 0, z: -80}
- max: {x: 90, y: 0, z: 80}
- value: {x: .339271605, y: 0, z: .169635803}
- length: .42408964
- modified: 1
- - boneName: RightLeg
- humanName: RightLowerLeg
- limit:
- min: {x: -90, y: 0, z: -80}
- max: {x: 90, y: 0, z: 80}
- value: {x: .339271486, y: 0, z: .169635743}
- length: .424089491
- modified: 1
- - boneName: LeftFoot
- humanName: LeftFoot
- limit:
- min: {x: 0, y: -30.0000019, z: -50}
- max: {x: 0, y: 30.0000019, z: 50}
- value: {x: .0792840198, y: 0, z: .0396420099}
- length: .0991050601
- modified: 1
- - boneName: RightFoot
- humanName: RightFoot
- limit:
- min: {x: 0, y: -30.0000019, z: -50}
- max: {x: 0, y: 30.0000019, z: 50}
- value: {x: .0834988803, y: 0, z: .0417494401}
- length: .104373634
- modified: 1
- - boneName: Spine
- humanName: Spine
- limit:
- min: {x: -40, y: -40, z: -40}
- max: {x: 40, y: 40, z: 40}
- value: {x: .130038843, y: 0, z: .0650194213}
- length: .162548617
- modified: 1
- - boneName: Chest
- humanName: Chest
- limit:
- min: {x: -40, y: -40, z: -40}
- max: {x: 40, y: 40, z: 40}
- value: {x: .208823651, y: 0, z: .104411826}
- length: .261029631
- modified: 1
- - boneName: Neck
- humanName: Neck
- limit:
- min: {x: -40, y: -40, z: -40}
- max: {x: 40, y: 40, z: 40}
- value: {x: .0670711622, y: 0, z: .0335355811}
- length: .0838389844
- modified: 1
- - boneName: Head
- humanName: Head
- limit:
- min: {x: -40, y: -40, z: -40}
- max: {x: 40, y: 40, z: 40}
- value: {x: .0670711622, y: 0, z: .0335355811}
- length: .0838389844
- modified: 1
- - boneName: LeftShoulder
- humanName: LeftShoulder
- limit:
- min: {x: 0, y: -15.000001, z: -15.000001}
- max: {x: 0, y: 15.000001, z: 30.0000019}
- value: {x: .0804015771, y: 0, z: .0402007885}
- length: .100502007
- modified: 1
- - boneName: RightShoulder
- humanName: RightShoulder
- limit:
- min: {x: 0, y: -15.000001, z: -15.000001}
- max: {x: 0, y: 15.000001, z: 30.0000019}
- value: {x: .0804011449, y: 0, z: .0402005725}
- length: .100501463
- modified: 1
- - boneName: LeftArm
- humanName: LeftUpperArm
- limit:
- min: {x: -90, y: -100, z: -60.0000038}
- max: {x: 90, y: 100, z: 100}
- value: {x: .203239366, y: 0, z: .101619683}
- length: .254049271
- modified: 1
- - boneName: RightArm
- humanName: RightUpperArm
- limit:
- min: {x: -90, y: -100, z: -60.0000038}
- max: {x: 90, y: 100, z: 100}
- value: {x: .203239247, y: 0, z: .101619624}
- length: .254049122
- modified: 1
- - boneName: LeftForeArm
- humanName: LeftLowerArm
- limit:
- min: {x: -90, y: 0, z: -80}
- max: {x: 90, y: 0, z: 80}
- value: {x: .197111368, y: 0, z: .0985556841}
- length: .246389285
- modified: 1
- - boneName: RightForeArm
- humanName: RightLowerArm
- limit:
- min: {x: -90, y: 0, z: -80}
- max: {x: 90, y: 0, z: 80}
- value: {x: .197111011, y: 0, z: .0985555053}
- length: .246388838
- modified: 1
- - boneName: LeftHand
- humanName: LeftHand
- limit:
- min: {x: 0, y: -40, z: -80}
- max: {x: 0, y: 40, z: 80}
- value: {x: .0985556841, y: 0, z: .049277842}
- length: .123194642
- modified: 1
- - boneName: RightHand
- humanName: RightHand
- limit:
- min: {x: 0, y: -40, z: -80}
- max: {x: 0, y: 40, z: 80}
- value: {x: .0985555053, y: 0, z: .0492777526}
- length: .123194419
- modified: 1
- - boneName: LeftToes
- humanName: LeftToes
- limit:
- min: {x: 0, y: 0, z: -50}
- max: {x: 0, y: 0, z: 50}
- value: {x: .0651871562, y: 0, z: .0325935781}
- length: .0814839825
- modified: 1
- - boneName: RightToes
- humanName: RightToes
- limit:
- min: {x: 0, y: 0, z: -50}
- max: {x: 0, y: 0, z: 50}
- value: {x: .0651872978, y: 0, z: .0325936489}
- length: .0814841539
- modified: 1
- - boneName: LeftEye
- humanName: LeftEye
- limit:
- min: {x: 0, y: -20, z: -10}
- max: {x: 0, y: 20, z: 15.000001}
- value: {x: .0799999759, y: 0, z: .0399999879}
- length: .100000001
- modified: 1
- - boneName: RightEye
- humanName: RightEye
- limit:
- min: {x: 0, y: -20, z: -10}
- max: {x: 0, y: 20, z: 15.000001}
- value: {x: .0799999759, y: 0, z: .0399999879}
- length: .100000001
- modified: 1
- - boneName: Jaw
- humanName: Jaw
- limit:
- min: {x: 0, y: -10, z: -10}
- max: {x: 0, y: 10, z: 10}
- value: {x: .0799999759, y: 0, z: .0399999879}
- length: .100000001
- modified: 1
- - boneName: LeftHandThumb1
- humanName: Left Thumb Proximal
- limit:
- min: {x: 0, y: -25, z: -20}
- max: {x: 0, y: 25, z: 20}
- value: {x: .0232954863, y: 0, z: .0116477432}
- length: .0291193668
- modified: 1
- - boneName: LeftHandThumb2
- humanName: Left Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: -40}
- max: {x: 0, y: 0, z: 35}
- value: {x: .0270181615, y: 0, z: .0135090807}
- length: .0337727107
- modified: 1
- - boneName: LeftHandThumb3
- humanName: Left Thumb Distal
- limit:
- min: {x: 0, y: 0, z: -40}
- max: {x: 0, y: 0, z: 35}
- value: {x: .0202636197, y: 0, z: .0101318099}
- length: .025329534
- modified: 1
- - boneName: LeftHandIndex1
- humanName: Left Index Proximal
- limit:
- min: {x: 0, y: -20, z: -50}
- max: {x: 0, y: 20, z: 50}
- value: {x: .0318519436, y: 0, z: .0159259718}
- length: .039814949
- modified: 1
- - boneName: LeftHandIndex2
- humanName: Left Index Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0223747957, y: 0, z: .0111873979}
- length: .0279685035
- modified: 1
- - boneName: LeftHandIndex3
- humanName: Left Index Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0167810954, y: 0, z: .00839054771}
- length: .0209763777
- modified: 1
- - boneName: LeftHandMiddle1
- humanName: Left Middle Proximal
- limit:
- min: {x: 0, y: -7.50000048, z: -50}
- max: {x: 0, y: 7.50000048, z: 50}
- value: {x: .0354259796, y: 0, z: .0177129898}
- length: .0442824923
- modified: 1
- - boneName: LeftHandMiddle2
- humanName: Left Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0271718819, y: 0, z: .0135859409}
- length: .0339648612
- modified: 1
- - boneName: LeftHandMiddle3
- humanName: Left Middle Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .02037891, y: 0, z: .010189455}
- length: .0254736468
- modified: 1
- - boneName: LeftHandRing1
- humanName: Left Ring Proximal
- limit:
- min: {x: 0, y: -7.50000048, z: -50}
- max: {x: 0, y: 7.50000048, z: 50}
- value: {x: .0345546529, y: 0, z: .0172773264}
- length: .0431933329
- modified: 1
- - boneName: LeftHandRing2
- humanName: Left Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0246684309, y: 0, z: .0123342155}
- length: .0308355466
- modified: 1
- - boneName: LeftHandRing3
- humanName: Left Ring Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0185013209, y: 0, z: .00925066043}
- length: .0231266599
- modified: 1
- - boneName: LeftHandPinky1
- humanName: Left Little Proximal
- limit:
- min: {x: 0, y: -20, z: -50}
- max: {x: 0, y: 20, z: 50}
- value: {x: .0246715974, y: 0, z: .0123357987}
- length: .0308395065
- modified: 1
- - boneName: LeftHandPinky2
- humanName: Left Little Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0184512157, y: 0, z: .00922560785}
- length: .0230640285
- modified: 1
- - boneName: LeftHandPinky3
- humanName: Left Little Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0138384132, y: 0, z: .00691920659}
- length: .0172980204
- modified: 1
- - boneName: RightHandThumb1
- humanName: Right Thumb Proximal
- limit:
- min: {x: 0, y: -25, z: -20}
- max: {x: 0, y: 25, z: 20}
- value: {x: .023295464, y: 0, z: .011647732}
- length: .0291193388
- modified: 1
- - boneName: RightHandThumb2
- humanName: Right Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: -40}
- max: {x: 0, y: 0, z: 35}
- value: {x: .0270181503, y: 0, z: .0135090752}
- length: .0337726958
- modified: 1
- - boneName: RightHandThumb3
- humanName: Right Thumb Distal
- limit:
- min: {x: 0, y: 0, z: -40}
- max: {x: 0, y: 0, z: 35}
- value: {x: .0202636104, y: 0, z: .0101318052}
- length: .0253295228
- modified: 1
- - boneName: RightHandIndex1
- humanName: Right Index Proximal
- limit:
- min: {x: 0, y: -20, z: -50}
- max: {x: 0, y: 20, z: 50}
- value: {x: .0318519659, y: 0, z: .015925983}
- length: .0398149751
- modified: 1
- - boneName: RightHandIndex2
- humanName: Right Index Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0223747883, y: 0, z: .0111873941}
- length: .0279684942
- modified: 1
- - boneName: RightHandIndex3
- humanName: Right Index Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0167810898, y: 0, z: .00839054491}
- length: .0209763702
- modified: 1
- - boneName: RightHandMiddle1
- humanName: Right Middle Proximal
- limit:
- min: {x: 0, y: -7.50000048, z: -50}
- max: {x: 0, y: 7.50000048, z: 50}
- value: {x: .0354259796, y: 0, z: .0177129898}
- length: .0442824923
- modified: 1
- - boneName: RightHandMiddle2
- humanName: Right Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0271718558, y: 0, z: .0135859279}
- length: .0339648277
- modified: 1
- - boneName: RightHandMiddle3
- humanName: Right Middle Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0203788895, y: 0, z: .0101894448}
- length: .0254736207
- modified: 1
- - boneName: RightHandRing1
- humanName: Right Ring Proximal
- limit:
- min: {x: 0, y: -7.50000048, z: -50}
- max: {x: 0, y: 7.50000048, z: 50}
- value: {x: .0345546268, y: 0, z: .0172773134}
- length: .043193303
- modified: 1
- - boneName: RightHandRing2
- humanName: Right Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0246684495, y: 0, z: .0123342248}
- length: .0308355708
- modified: 1
- - boneName: RightHandRing3
- humanName: Right Ring Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0185013358, y: 0, z: .00925066788}
- length: .0231266785
- modified: 1
- - boneName: RightHandPinky1
- humanName: Right Little Proximal
- limit:
- min: {x: 0, y: -20, z: -50}
- max: {x: 0, y: 20, z: 50}
- value: {x: .02467159, y: 0, z: .012335795}
- length: .0308394972
- modified: 1
- - boneName: RightHandPinky2
- humanName: Right Little Intermediate
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .0184512008, y: 0, z: .0092256004}
- length: .0230640098
- modified: 1
- - boneName: RightHandPinky3
- humanName: Right Little Distal
- limit:
- min: {x: 0, y: 0, z: -45}
- max: {x: 0, y: 0, z: 45}
- value: {x: .013838402, y: 0, z: .006919201}
- length: .0172980074
- modified: 1
- skeleton:
- - name:
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Reference
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: -0, z: 0, w: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Hips
- position: {x: -.000576063991, y: .967362523, z: .00204241276}
- rotation: {x: .0223360788, y: .00529096881, z: .00642740354, w: .999715805}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftUpLeg
- position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17}
- rotation: {x: -.0254481398, y: -.077497676, z: .0131525509, w: .996580899}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLeg
- position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
- rotation: {x: .0883606523, y: .0601039417, z: .00689327437, w: .994249642}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftFoot
- position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: -.0747270957, y: .00194939971, z: -.0340461582, w: .996620715}
- 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: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightUpLeg
- position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17}
- rotation: {x: -.0228122752, y: .115679629, z: .0178274363, w: .99286449}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLeg
- position: {x: .0205504671, y: -.409130007, z: -.000718647963}
- rotation: {x: .0877953172, y: -.00208697654, z: .0137627255, w: .996041238}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightFoot
- position: {x: .00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: -.0812724829, y: .00466302643, z: -.057345245, w: .995029926}
- 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: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Spine
- position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313}
- rotation: {x: .0223924816, y: -.000647847774, z: .0213667471, w: .999520659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Chest
- position: {x: -0, y: .162540287, z: -.00165605545}
- rotation: {x: -2.13748743e-15, y: -3.46944675e-18, z: 1.90819566e-17, w: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftShoulder
- position: {x: -.0382859968, y: .221622497, z: -.017063085}
- rotation: {x: .0139149353, y: -.00394780654, z: .131782964, w: .991173029}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftArm
- position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15}
- rotation: {x: .37622869, y: -.0543028153, z: -.13020131, w: .915724158}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftForeArm
- position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13}
- rotation: {x: -.0333404355, y: .0205719378, z: -.0173609424, w: .999081433}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHand
- position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11}
- rotation: {x: -.00459451135, y: -.0165043119, z: -.00508450065, w: .99984026}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex1
- position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
- rotation: {x: -.0308349449, y: .0179683398, z: .0871938765, w: .995551884}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex2
- position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
- rotation: {x: -.068933852, y: .0147166522, z: .027954815, w: .997120857}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex3
- position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08}
- rotation: {x: -.0662777126, y: -.00754973805, z: .171201751, w: .982975125}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle1
- position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
- rotation: {x: -.0157173555, y: .0537218116, z: .0864742398, w: .994680345}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle2
- position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125}
- rotation: {x: -.0151246209, y: -.00647278596, z: .0269566793, w: .999501169}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle3
- position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09}
- rotation: {x: -.00722864736, y: .000813854625, z: .290401727, w: .956877112}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky1
- position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
- rotation: {x: -.0464275964, y: .075739637, z: .086158894, w: .992312729}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky2
- position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
- rotation: {x: .0492937081, y: -.021721568, z: .0329473726, 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: .0462911353, y: -.000569252239, z: .241861716, w: .969205678}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing1
- position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
- rotation: {x: -.0137463231, y: .0746487528, z: .0850582421, w: .993480563}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing2
- position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
- rotation: {x: .0193218105, y: -.0256573409, z: .0290447082, w: .999061882}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing3
- position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08}
- rotation: {x: .0185098108, y: -.00236002333, z: .245544434, w: .969205678}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb1
- position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
- rotation: {x: -.202251598, y: -.110913076, z: -.2050322, w: .951185763}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb2
- position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
- rotation: {x: -.0300429408, y: .0994002447, z: .00653865794, w: .994572341}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb3
- position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0482696705, y: -.21970883, z: -.0199516751, w: .974166274}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Neck
- position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554}
- rotation: {x: -.0470599942, y: -.00595978182, z: -.00467421999, w: .99886328}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Head
- position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815}
- rotation: {x: -.0252206065, y: -.00425317558, z: -.0123739783, w: .999596238}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Jaw
- position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
- rotation: {x: -2.07289378e-36, y: -1.57659684e-18, z: -1.31478994e-18, w: .99999994}
- 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: .99999994}
- 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: .99999994}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightShoulder
- position: {x: .0382860154, y: .221621141, z: -.017063085}
- rotation: {x: .184811041, y: .982165337, z: .0290686917, w: .0187379587}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightArm
- position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
- rotation: {x: .106947966, y: .951947629, z: -.285819441, w: -.0257873461}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightForeArm
- position: {x: .253428251, y: .00601135287, z: -.0167045239}
- rotation: {x: .00554432906, y: .0252693761, z: -.0140679898, w: .999566257}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHand
- position: {x: .245373696, y: .0216417722, z: .00555046508}
- rotation: {x: -.00922487117, y: .022404477, z: .0338127092, w: .999134421}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex1
- position: {x: .0747694969, y: -.00124305359, z: .0343444981}
- rotation: {x: -.0269999094, y: .13470526, z: -.0601701103, w: .988688469}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex2
- position: {x: .0370584019, y: .00072612107, z: .0145388944}
- rotation: {x: -.0803578943, y: .023019379, z: .043747969, w: .995539427}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex3
- position: {x: .0252250377, y: -.00496646529, z: .0110121462}
- rotation: {x: .00452318508, y: .0132934432, z: -.0882905722, w: .99599576}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle1
- position: {x: .0756476447, y: .00479140272, z: .0118531818}
- rotation: {x: -.0139237707, y: .00904196221, z: -.046430029, w: .998783529}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle2
- position: {x: .0438090637, y: .000194188149, z: .00645493623}
- rotation: {x: -.0214388836, y: -.0445644185, z: .0864201039, w: .995030582}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle3
- position: {x: .0330724716, y: -.00754753686, z: .00168984616}
- rotation: {x: .00494018523, y: -.000555257779, z: -.197933093, w: .980202854}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky1
- position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
- rotation: {x: -.0533697084, y: -.254999846, z: -.012574737, w: .965385199}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky2
- position: {x: .0285308417, y: -.001397143, z: -.0116237961}
- rotation: {x: .0333438665, y: .0010600572, z: -.0586728975, w: .997719646}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky3
- position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
- rotation: {x: -.0291062221, y: .000397295575, z: -.152253702, w: .987912655}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing1
- position: {x: .0705984756, y: .00245709647, z: -.00982145779}
- rotation: {x: -.0145360986, y: -.117994778, z: -.0257458817, w: .992573917}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing2
- position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
- rotation: {x: .0220794417, y: -.0216988493, z: .0796099529, w: .996345222}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing3
- position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
- rotation: {x: -.0116657401, y: .00135601033, z: -.154779926, w: .987879097}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb1
- position: {x: .0146849155, y: -.0111049423, z: .0258580949}
- rotation: {x: -.202457637, y: .0650082007, z: .211026832, w: .954071522}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb2
- position: {x: .0163739994, y: -.00528999977, z: .0234913602}
- rotation: {x: -.030088516, y: -.0993836001, z: -.00658332603, w: .994572341}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb3
- position: {x: .0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0482729301, y: .219708115, z: .0199370738, w: .974166512}
- 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: {instanceID: 0}
- animationType: 3
- additionalBone: 0
- userData:
- assetBundleName:
- assetBundleVariant:
|