123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535 |
- fileFormatVersion: 2
- guid: e566a601721485e46863d1027d4d6d4e
- ModelImporter:
- serializedVersion: 18
- fileIDToRecycleName:
- 100000: //RootNode
- 100002: Chest
- 100004: Head
- 100006: Hips
- 100008: Jaw
- 100010: JawEND
- 100012: LeftArm
- 100014: LeftCheek
- 100016: LeftEye
- 100018: LeftEyelidLower
- 100020: LeftEyelidUpper
- 100022: LeftFoot
- 100024: LeftForeArm
- 100026: LeftHand
- 100028: LeftHandIndex1
- 100030: LeftHandIndex2
- 100032: LeftHandIndex3
- 100034: LeftHandMiddle1
- 100036: LeftHandMiddle2
- 100038: LeftHandMiddle3
- 100040: LeftHandPinky1
- 100042: LeftHandPinky2
- 100044: LeftHandPinky3
- 100046: LeftHandRing1
- 100048: LeftHandRing2
- 100050: LeftHandRing3
- 100052: LeftHandThumb1
- 100054: LeftHandThumb2
- 100056: LeftHandThumb3
- 100058: LeftInnerBrow
- 100060: LeftIOuterBrow
- 100062: LeftLeg
- 100064: LeftLipCorner
- 100066: LeftLipLower
- 100068: LeftLipUpper
- 100070: LeftNostril
- 100072: LeftShoulder
- 100074: LeftToes
- 100076: LeftUpLeg
- 100078: Neck
- 100080: Pivot
- 100082: Reference
- 100084: RightArm
- 100086: RightCheek
- 100088: RightEye
- 100090: RightEyelidLower
- 100092: RightEyelidUpper
- 100094: RightFoot
- 100096: RightForeArm
- 100098: RightHand
- 100100: RightHandIndex1
- 100102: RightHandIndex2
- 100104: RightHandIndex3
- 100106: RightHandMiddle1
- 100108: RightHandMiddle2
- 100110: RightHandMiddle3
- 100112: RightHandPinky1
- 100114: RightHandPinky2
- 100116: RightHandPinky3
- 100118: RightHandRing1
- 100120: RightHandRing2
- 100122: RightHandRing3
- 100124: RightHandThumb1
- 100126: RightHandThumb2
- 100128: RightHandThumb3
- 100130: RightInnerBrow
- 100132: RightIOuterBrow
- 100134: RightLeg
- 100136: RightLipCorner
- 100138: RightLipLower
- 100140: RightLipUpper
- 100142: RightNostril
- 100144: RightShoulder
- 100146: RightToes
- 100148: RightUpLeg
- 100150: Root
- 100152: Spine
- 100154: TongueBack
- 100156: TongueTip
- 400000: //RootNode
- 400002: Chest
- 400004: Head
- 400006: Hips
- 400008: Jaw
- 400010: JawEND
- 400012: LeftArm
- 400014: LeftCheek
- 400016: LeftEye
- 400018: LeftEyelidLower
- 400020: LeftEyelidUpper
- 400022: LeftFoot
- 400024: LeftForeArm
- 400026: LeftHand
- 400028: LeftHandIndex1
- 400030: LeftHandIndex2
- 400032: LeftHandIndex3
- 400034: LeftHandMiddle1
- 400036: LeftHandMiddle2
- 400038: LeftHandMiddle3
- 400040: LeftHandPinky1
- 400042: LeftHandPinky2
- 400044: LeftHandPinky3
- 400046: LeftHandRing1
- 400048: LeftHandRing2
- 400050: LeftHandRing3
- 400052: LeftHandThumb1
- 400054: LeftHandThumb2
- 400056: LeftHandThumb3
- 400058: LeftInnerBrow
- 400060: LeftIOuterBrow
- 400062: LeftLeg
- 400064: LeftLipCorner
- 400066: LeftLipLower
- 400068: LeftLipUpper
- 400070: LeftNostril
- 400072: LeftShoulder
- 400074: LeftToes
- 400076: LeftUpLeg
- 400078: Neck
- 400080: Pivot
- 400082: Reference
- 400084: RightArm
- 400086: RightCheek
- 400088: RightEye
- 400090: RightEyelidLower
- 400092: RightEyelidUpper
- 400094: RightFoot
- 400096: RightForeArm
- 400098: RightHand
- 400100: RightHandIndex1
- 400102: RightHandIndex2
- 400104: RightHandIndex3
- 400106: RightHandMiddle1
- 400108: RightHandMiddle2
- 400110: RightHandMiddle3
- 400112: RightHandPinky1
- 400114: RightHandPinky2
- 400116: RightHandPinky3
- 400118: RightHandRing1
- 400120: RightHandRing2
- 400122: RightHandRing3
- 400124: RightHandThumb1
- 400126: RightHandThumb2
- 400128: RightHandThumb3
- 400130: RightInnerBrow
- 400132: RightIOuterBrow
- 400134: RightLeg
- 400136: RightLipCorner
- 400138: RightLipLower
- 400140: RightLipUpper
- 400142: RightNostril
- 400144: RightShoulder
- 400146: RightToes
- 400148: RightUpLeg
- 400150: Root
- 400152: Spine
- 400154: TongueBack
- 400156: TongueTip
- 7400000: Idle2Strafe_AllAngles
- 7400002: Strafe LF
- 7400004: Strafe RB
- 7400006: Strafe L
- 7400008: Strafe R
- 7400010: Strafe RF (m)
- 7400012: Strafe LB (m)
- 7400014: Strafe R (m)
- 7400016: Strafe L (m)
- 9500000: //RootNode
- materials:
- importMaterials: 0
- materialName: 0
- materialSearch: 1
- animations:
- legacyGenerateAnimations: 4
- 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: Strafe LF
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 179
- lastFrame: 211
- wrapMode: 0
- orientationOffsetY: 3.32999992
- level: 0
- cycleOffset: .699999988
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe RB
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 306
- lastFrame: 337
- wrapMode: 0
- orientationOffsetY: -1.91999996
- level: 0
- cycleOffset: .699999988
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe L
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 432
- lastFrame: 464
- wrapMode: 0
- orientationOffsetY: .629999995
- level: 0
- cycleOffset: .699999988
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe R
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 538
- lastFrame: 568
- wrapMode: 0
- orientationOffsetY: 5.8499999
- level: 0
- cycleOffset: .699999988
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe RF (m)
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 179
- lastFrame: 211
- wrapMode: 0
- orientationOffsetY: 3.32999992
- level: 0
- cycleOffset: .300000012
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe LB (m)
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 306
- lastFrame: 337
- wrapMode: 0
- orientationOffsetY: -1.91999996
- level: 0
- cycleOffset: .300000012
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe R (m)
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 432
- lastFrame: 464
- wrapMode: 0
- orientationOffsetY: .629999995
- level: 0
- cycleOffset: .200000003
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Strafe L (m)
- takeName: _117_to_120_a_U1_M_P_idle2Strafe_AllAngles__Fb_p45-180_No_0_PJ_1
- firstFrame: 538
- lastFrame: 568
- wrapMode: 0
- orientationOffsetY: 5.8499999
- level: 0
- cycleOffset: .200000003
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 1
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Pivot
- weight: 1
- - path: Reference/Pivot/Root
- weight: 1
- - path: Reference/Pivot/Root/Hips
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Pivot/Root/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Pivot/Root/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- 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: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftUpLeg
- humanName: LeftUpperLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightUpLeg
- humanName: RightUpperLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftLeg
- humanName: LeftLowerLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightLeg
- humanName: RightLowerLeg
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftFoot
- humanName: LeftFoot
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightFoot
- humanName: RightFoot
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Spine
- humanName: Spine
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Chest
- humanName: Chest
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Neck
- humanName: Neck
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Head
- humanName: Head
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftShoulder
- humanName: LeftShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightShoulder
- humanName: RightShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftArm
- humanName: LeftUpperArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightArm
- humanName: RightUpperArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftForeArm
- humanName: LeftLowerArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightForeArm
- humanName: RightLowerArm
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHand
- humanName: LeftHand
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHand
- humanName: RightHand
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftToes
- humanName: LeftToes
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightToes
- humanName: RightToes
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftEye
- humanName: LeftEye
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightEye
- humanName: RightEye
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Jaw
- humanName: Jaw
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb1
- humanName: Left Thumb Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb2
- humanName: Left Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandThumb3
- humanName: Left Thumb Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex1
- humanName: Left Index Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex2
- humanName: Left Index Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandIndex3
- humanName: Left Index Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle1
- humanName: Left Middle Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle2
- humanName: Left Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandMiddle3
- humanName: Left Middle Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing1
- humanName: Left Ring Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing2
- humanName: Left Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandRing3
- humanName: Left Ring Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky1
- humanName: Left Little Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky2
- humanName: Left Little Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftHandPinky3
- humanName: Left Little Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb1
- humanName: Right Thumb Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb2
- humanName: Right Thumb Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandThumb3
- humanName: Right Thumb Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex1
- humanName: Right Index Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex2
- humanName: Right Index Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandIndex3
- humanName: Right Index Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle1
- humanName: Right Middle Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle2
- humanName: Right Middle Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandMiddle3
- humanName: Right Middle Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing1
- humanName: Right Ring Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing2
- humanName: Right Ring Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandRing3
- humanName: Right Ring Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky1
- humanName: Right Little Proximal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky2
- humanName: Right Little Intermediate
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightHandPinky3
- humanName: Right Little Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- skeleton:
- - name: Idle2Strafe_AllAngles(Clone)
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Reference
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: -0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Pivot
- position: {x: -0, y: 0, z: 0}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Root
- position: {x: -.0786111653, y: 0, z: 0}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Hips
- position: {x: .0758348852, y: .954797447, z: -.0800148398}
- rotation: {x: -.0227765962, y: -.0432573967, z: .0314371623, w: .998309433}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftUpLeg
- position: {x: -.0754494965, y: -.0456640199, z: 0}
- rotation: {x: -.0340525955, y: .113452338, z: -.0533894785, w: .991523325}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLeg
- position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
- rotation: {x: .128800243, y: -.139413506, z: -.0164815914, w: .981683612}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftFoot
- position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: -.0645051301, y: .0273233354, z: .0460502207, w: .99647975}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftToes
- position: {x: -.00748699997, y: -.0731673017, z: .145427123}
- rotation: {x: -.0309631079, y: -.00768887112, z: .00844666176, w: .999455273}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightUpLeg
- position: {x: .0754495338, y: -.0456639901, z: 0}
- rotation: {x: -.000246795476, y: .100348376, z: -.0290859472, w: .994527102}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLeg
- position: {x: .0205504671, y: -.409130007, z: -.000718647963}
- rotation: {x: .0629970655, y: .0777208358, z: .0142751504, w: .994880438}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightFoot
- position: {x: .00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: -.0376192629, y: -.00843541138, z: -.0133914119, w: .999166787}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightToes
- position: {x: .00748699997, y: -.0731673017, z: .145427495}
- rotation: {x: -.0059218877, y: -.00770602375, z: -.00114537252, w: .999952137}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Spine
- position: {x: 2.6469779e-25, y: .0922631845, z: .0157713313}
- rotation: {x: .0566621535, y: .00928122085, z: -.0510134473, w: .997046113}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Chest
- position: {x: -0, y: .162540287, z: -.00165605545}
- rotation: {x: -.0220640022, y: .00516655156, z: .00962900463, w: .999696851}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftShoulder
- position: {x: -.0382859968, y: .221622497, z: -.017063085}
- rotation: {x: -.0151933925, y: -.0480584987, z: .168568924, w: .984400392}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftArm
- position: {x: -.100502051, y: 0, z: -1.110223e-18}
- rotation: {x: -.021372484, y: .0442547649, z: -.147945687, w: .987773657}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftForeArm
- position: {x: -.254049301, y: 0, z: 2.6645352e-17}
- rotation: {x: .244938239, y: .0353025645, z: -.0205566157, w: .9686777}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHand
- position: {x: -.24638927, y: 2.84217088e-16, z: -1.59872109e-16}
- rotation: {x: -.0327789597, y: -.077272892, z: -.0685191453, w: .994112432}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex1
- position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
- rotation: {x: .0428058654, y: .0563288629, z: .0690113083, w: .995104074}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex2
- position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
- rotation: {x: -.118419774, y: .0150018381, z: .0166641381, w: .992710531}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex3
- position: {x: -.0279684775, y: -6.28122487e-09, z: -5.17186614e-08}
- rotation: {x: -.129113048, y: .0120547581, z: .629106462, w: .766426563}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle1
- position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
- rotation: {x: -.0333421715, y: .0704219267, z: .0723077729, w: .99433428}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle2
- position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125}
- rotation: {x: -.0331731476, y: -.00512576289, z: .0114895413, w: .999370396}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle3
- position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09}
- rotation: {x: -.0151140336, y: .00170164288, z: .607185066, w: .794414937}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky1
- position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
- rotation: {x: -.110299699, y: .079448998, z: .0742757469, w: .987929642}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky2
- position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
- rotation: {x: -.07216952, y: -.026308462, z: .0134685058, w: .996954441}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky3
- position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08}
- rotation: {x: .10740757, y: -.00132079667, z: .561182439, w: .82069248}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing1
- position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
- rotation: {x: .0157959461, y: .0917722806, z: .0679113567, w: .993335962}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing2
- position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
- rotation: {x: -.134465724, y: -.0260946881, z: .00873861369, w: .990536034}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing3
- position: {x: -.0308355652, y: 7.71029768e-11, z: -1.64932707e-08}
- rotation: {x: .0804869533, y: .0206211321, z: .569380462, w: .817864597}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb1
- position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
- rotation: {x: -.142054215, y: -.0390089713, z: -.0554101914, w: .987536609}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb2
- position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
- rotation: {x: -.0275061186, y: .102850311, z: .000798565219, w: .994316161}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb3
- position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0244276039, y: -.135908455, z: -.0199881736, w: .99021852}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Neck
- position: {x: -0, y: .259009302, z: -.0324132554}
- rotation: {x: .00184617075, y: .0271745622, z: .0152320014, w: .99951297}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Head
- position: {x: -2.6469779e-25, y: .0830703825, z: .0113267815}
- rotation: {x: -.0846226513, y: .0395146608, z: -.0304225683, w: .995164394}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Jaw
- position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: JawEND
- position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipCorner
- position: {x: -.032843262, y: -.01657876, z: .0661217645}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipLower
- position: {x: -.0142508168, y: -.0216887593, z: .0822406337}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipCorner
- position: {x: .0328399986, y: -.01657876, z: .0661187842}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipLower
- position: {x: .0142508168, y: -.0216887593, z: .0822387859}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueBack
- position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueTip
- position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftCheek
- position: {x: -.0542440265, y: .0337019488, z: .0594304018}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEye
- position: {x: -.0208482333, y: .0825027004, z: .0554274321}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidLower
- position: {x: -.0356189571, y: .0650736615, z: .076234743}
- rotation: {x: -.0348994955, y: 0, z: -0, w: .999390841}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidUpper
- position: {x: -.0344068967, y: .10060814, z: .0802053064}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftInnerBrow
- position: {x: -.0120626912, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftIOuterBrow
- position: {x: -.0550398715, y: .114825293, z: .061777398}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipUpper
- position: {x: -.0145013221, y: -.00511181122, z: .094618842}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftNostril
- position: {x: -.0178999994, y: .0263128281, z: .0908674002}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightCheek
- position: {x: .0542399958, y: .033702828, z: .0594273992}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEye
- position: {x: .020849999, y: .082502827, z: .0554273985}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidLower
- position: {x: .0356200002, y: .065072827, z: .0762374029}
- rotation: {x: -.0348994955, y: 0, z: -0, w: .999390841}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidUpper
- position: {x: .0344099998, y: .100612827, z: .0802073926}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightInnerBrow
- position: {x: .0120626874, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightIOuterBrow
- position: {x: .0550400019, y: .114822827, z: .061777398}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipUpper
- position: {x: .0145013221, y: -.00510717137, z: .094617404}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightNostril
- position: {x: .0178999994, y: .0263089053, z: .0908706188}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightShoulder
- position: {x: .0382860154, y: .221621141, z: -.017063085}
- rotation: {x: .148647591, y: .988515913, z: -.00858308095, w: -.0258187}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightArm
- position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
- rotation: {x: .134768516, y: .986597121, z: .050720688, w: .0767536238}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightForeArm
- position: {x: .253428251, y: .00601135287, z: -.0167045239}
- rotation: {x: .158024758, y: .0162775721, z: -.0215464476, w: .987065852}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHand
- position: {x: .245373696, y: .0216417722, z: .00555046508}
- rotation: {x: -.101104543, y: .016735401, z: .0640241504, w: .992672503}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex1
- position: {x: .0747694969, y: -.00124305359, z: .0343444981}
- rotation: {x: .0254417546, y: .130953118, z: -.0503668748, w: .989781439}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex2
- position: {x: .0370584019, y: .00072612107, z: .0145388944}
- rotation: {x: -.0172103513, y: .0170163978, z: .0608807728, w: .99785167}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex3
- position: {x: .0252250377, y: -.00496646529, z: .0110121462}
- rotation: {x: .0159065742, y: -.00148513378, z: -.0775051862, w: .996863961}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle1
- position: {x: .0756476447, y: .00479140272, z: .0118531818}
- rotation: {x: -.023514552, y: .00831687078, z: -.0464003831, w: .99861151}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle2
- position: {x: .0438090637, y: .000194188149, z: .00645493623}
- rotation: {x: -.0202250537, y: -.0445864052, z: .0858977437, w: .995100319}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle3
- position: {x: .0330724716, y: -.00754753686, z: .00168984616}
- rotation: {x: .00617986685, y: -.000695775147, z: -.248267606, w: .96867156}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky1
- position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
- rotation: {x: -.0811230838, y: -.249176338, z: -.000126572064, w: .965054572}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky2
- position: {x: .0285308417, y: -.001397143, z: -.0116237961}
- rotation: {x: .0921179578, y: 8.03379517e-05, z: -.0694601014, w: .993322551}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky3
- position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
- rotation: {x: -.0771195069, y: .000948339468, z: -.402933508, w: .911973834}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing1
- position: {x: .0705984756, y: .00245709647, z: -.00982145779}
- rotation: {x: -.106500767, y: -.118271872, z: -.0198986083, w: .987052858}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing2
- position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
- rotation: {x: .0447983146, y: -.0248964801, z: .084656097, w: .995091259}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing3
- position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
- rotation: {x: -.0231638942, y: .000574080506, z: -.354138941, w: .934905708}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb1
- position: {x: .0146849155, y: -.0111049423, z: .0258580949}
- rotation: {x: -.0307615455, y: -.0214612857, z: .0343217179, w: .998706818}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb2
- position: {x: .0163739994, y: -.00528999977, z: .0234913602}
- rotation: {x: -.0268684197, y: -.0987464637, z: -.00234098267, w: .994747043}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb3
- position: {x: .0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0115484716, y: .0642524138, z: .00944968499, w: .997822106}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- armTwist: .5
- foreArmTwist: .5
- upperLegTwist: .5
- legTwist: .5
- armStretch: .0500000007
- legStretch: .0500000007
- feetSpacing: 0
- rootMotionBoneName:
- lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: b1a5e04ae51004842aba06704a6c2903,
- type: 3}
- animationType: 3
- additionalBone: 0
- userData:
- assetBundleName:
- assetBundleVariant:
|