123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884 |
- fileFormatVersion: 2
- guid: 25275a2ff07f278408cfa0a8ff8ebce9
- ModelImporter:
- serializedVersion: 18
- fileIDToRecycleName:
- 100000: Chest
- 100002: Geo_grp
- 100004: Head
- 100006: Hips
- 100008: //RootNode
- 100010: Jaw
- 100012: JawEND
- 100014: Le_Eye_Mesh
- 100016: LeftArm
- 100018: LeftCheek
- 100020: LeftEye
- 100022: LeftEyelidLower
- 100024: LeftEyelidUpper
- 100026: LeftFoot
- 100028: LeftForeArm
- 100030: LeftHand
- 100032: LeftHandIndex1
- 100034: LeftHandIndex2
- 100036: LeftHandIndex3
- 100038: LeftHandMiddle1
- 100040: LeftHandMiddle2
- 100042: LeftHandMiddle3
- 100044: LeftHandPinky1
- 100046: LeftHandPinky2
- 100048: LeftHandPinky3
- 100050: LeftHandRing1
- 100052: LeftHandRing2
- 100054: LeftHandRing3
- 100056: LeftHandThumb1
- 100058: LeftHandThumb2
- 100060: LeftHandThumb3
- 100062: LeftInnerBrow
- 100064: LeftIOuterBrow
- 100066: LeftLeg
- 100068: LeftLipCorner
- 100070: LeftLipLower
- 100072: LeftLipUpper
- 100074: LeftNostril
- 100076: LeftShoulder
- 100078: LeftToes
- 100080: LeftUpLeg
- 100082: Lw_Teeth_Mesh
- 100084: Neck
- 100086: Reference
- 100088: Ri_Eye_Mesh
- 100090: RightArm
- 100092: RightCheek
- 100094: RightEye
- 100096: RightEyelidLower
- 100098: RightEyelidUpper
- 100100: RightFoot
- 100102: RightForeArm
- 100104: RightHand
- 100106: RightHandIndex1
- 100108: RightHandIndex2
- 100110: RightHandIndex3
- 100112: RightHandMiddle1
- 100114: RightHandMiddle2
- 100116: RightHandMiddle3
- 100118: RightHandPinky1
- 100120: RightHandPinky2
- 100122: RightHandPinky3
- 100124: RightHandRing1
- 100126: RightHandRing2
- 100128: RightHandRing3
- 100130: RightHandThumb1
- 100132: RightHandThumb2
- 100134: RightHandThumb3
- 100136: RightInnerBrow
- 100138: RightIOuterBrow
- 100140: RightLeg
- 100142: RightLipCorner
- 100144: RightLipLower
- 100146: RightLipUpper
- 100148: RightNostril
- 100150: RightShoulder
- 100152: RightToes
- 100154: RightUpLeg
- 100156: Spine
- 100158: TongueBack
- 100160: TongueTip
- 100162: Tounge_Mesh
- 100164: Unity_Body_Mesh
- 100166: Up_Teeth_Mesh
- 400000: Chest
- 400002: Geo_grp
- 400004: Head
- 400006: Hips
- 400008: //RootNode
- 400010: Jaw
- 400012: JawEND
- 400014: Le_Eye_Mesh
- 400016: LeftArm
- 400018: LeftCheek
- 400020: LeftEye
- 400022: LeftEyelidLower
- 400024: LeftEyelidUpper
- 400026: LeftFoot
- 400028: LeftForeArm
- 400030: LeftHand
- 400032: LeftHandIndex1
- 400034: LeftHandIndex2
- 400036: LeftHandIndex3
- 400038: LeftHandMiddle1
- 400040: LeftHandMiddle2
- 400042: LeftHandMiddle3
- 400044: LeftHandPinky1
- 400046: LeftHandPinky2
- 400048: LeftHandPinky3
- 400050: LeftHandRing1
- 400052: LeftHandRing2
- 400054: LeftHandRing3
- 400056: LeftHandThumb1
- 400058: LeftHandThumb2
- 400060: LeftHandThumb3
- 400062: LeftInnerBrow
- 400064: LeftIOuterBrow
- 400066: LeftLeg
- 400068: LeftLipCorner
- 400070: LeftLipLower
- 400072: LeftLipUpper
- 400074: LeftNostril
- 400076: LeftShoulder
- 400078: LeftToes
- 400080: LeftUpLeg
- 400082: Lw_Teeth_Mesh
- 400084: Neck
- 400086: Reference
- 400088: Ri_Eye_Mesh
- 400090: RightArm
- 400092: RightCheek
- 400094: RightEye
- 400096: RightEyelidLower
- 400098: RightEyelidUpper
- 400100: RightFoot
- 400102: RightForeArm
- 400104: RightHand
- 400106: RightHandIndex1
- 400108: RightHandIndex2
- 400110: RightHandIndex3
- 400112: RightHandMiddle1
- 400114: RightHandMiddle2
- 400116: RightHandMiddle3
- 400118: RightHandPinky1
- 400120: RightHandPinky2
- 400122: RightHandPinky3
- 400124: RightHandRing1
- 400126: RightHandRing2
- 400128: RightHandRing3
- 400130: RightHandThumb1
- 400132: RightHandThumb2
- 400134: RightHandThumb3
- 400136: RightInnerBrow
- 400138: RightIOuterBrow
- 400140: RightLeg
- 400142: RightLipCorner
- 400144: RightLipLower
- 400146: RightLipUpper
- 400148: RightNostril
- 400150: RightShoulder
- 400152: RightToes
- 400154: RightUpLeg
- 400156: Spine
- 400158: TongueBack
- 400160: TongueTip
- 400162: Tounge_Mesh
- 400164: Unity_Body_Mesh
- 400166: Up_Teeth_Mesh
- 2300000: Le_Eye_Mesh
- 2300002: Ri_Eye_Mesh
- 3300000: Le_Eye_Mesh
- 3300002: Ri_Eye_Mesh
- 4300000: Le_Eye_Mesh
- 4300002: Ri_Eye_Mesh
- 4300004: Unity_Body_Mesh
- 4300006: Up_Teeth_Mesh
- 4300008: Lw_Teeth_Mesh
- 4300010: Tounge_Mesh
- 7400000: Jump Forward Left
- 7400002: Fall Left
- 7400004: Jump Forward Right
- 7400006: Fall Right
- 9500000: //RootNode
- 13700000: Lw_Teeth_Mesh
- 13700002: Tounge_Mesh
- 13700004: Unity_Body_Mesh
- 13700006: Up_Teeth_Mesh
- materials:
- importMaterials: 0
- materialName: 1
- materialSearch: 2
- 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: Jump Forward Left
- takeName: idle_jumpFwd_idle_tk01
- firstFrame: 350
- lastFrame: 352
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Geo_grp
- weight: 0
- - path: Geo_grp/Lw_Teeth_Mesh
- weight: 0
- - path: Geo_grp/Tounge_Mesh
- weight: 0
- - path: Geo_grp/Unity_Body_Mesh
- weight: 0
- - path: Geo_grp/Up_Teeth_Mesh
- weight: 0
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Fall Left
- takeName: idle_jumpFwd_idle_tk01
- firstFrame: 355
- lastFrame: 357
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Geo_grp
- weight: 0
- - path: Geo_grp/Lw_Teeth_Mesh
- weight: 0
- - path: Geo_grp/Tounge_Mesh
- weight: 0
- - path: Geo_grp/Unity_Body_Mesh
- weight: 0
- - path: Geo_grp/Up_Teeth_Mesh
- weight: 0
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Jump Forward Right
- takeName: idle_jumpFwd_idle_tk01
- firstFrame: 350
- lastFrame: 352
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 1
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Geo_grp
- weight: 0
- - path: Geo_grp/Lw_Teeth_Mesh
- weight: 0
- - path: Geo_grp/Tounge_Mesh
- weight: 0
- - path: Geo_grp/Unity_Body_Mesh
- weight: 0
- - path: Geo_grp/Up_Teeth_Mesh
- weight: 0
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- maskType: 0
- maskSource: {instanceID: 0}
- - serializedVersion: 16
- name: Fall Right
- takeName: idle_jumpFwd_idle_tk01
- firstFrame: 355
- lastFrame: 357
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 0
- loopBlendPositionY: 1
- loopBlendPositionXZ: 0
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Geo_grp
- weight: 0
- - path: Geo_grp/Lw_Teeth_Mesh
- weight: 0
- - path: Geo_grp/Tounge_Mesh
- weight: 0
- - path: Geo_grp/Unity_Body_Mesh
- weight: 0
- - path: Geo_grp/Up_Teeth_Mesh
- weight: 0
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/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: Jump And Fall(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: Geo_grp
- 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: Lw_Teeth_Mesh
- 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: Tounge_Mesh
- 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: Unity_Body_Mesh
- 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: Up_Teeth_Mesh
- 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: Hips
- position: {x: -1.86264515e-08, y: .978280663, z: 0}
- rotation: {x: 5.82076698e-09, y: -4.23516639e-18, z: -7.27595928e-10, w: 1}
- scale: {x: .999999881, y: .99999994, z: 1}
- transformModified: 1
- - name: Spine
- position: {x: -0, y: .0922631845, z: .0157713313}
- rotation: {x: -5.82076698e-09, y: 6.35274917e-18, z: 1.09139386e-09, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Chest
- position: {x: -0, y: .162540287, z: .0218507219}
- rotation: {x: -1.37642846e-17, y: -2.9103826e-09, z: -1.09139364e-09, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Neck
- position: {x: -0, y: .235723898, z: -.0324132554}
- rotation: {x: -1.05879077e-18, y: 5.82076565e-09, z: 3.63797825e-10, w: 1}
- scale: {x: .99999994, y: .99999994, z: .99999994}
- transformModified: 1
- - name: Head
- position: {x: -0, y: .106355801, z: .0113267815}
- rotation: {x: 7.27595872e-10, y: -3.27418093e-09, z: 6.82121026e-11, w: 1}
- scale: {x: 1.00000012, y: .99999994, z: 1}
- transformModified: 1
- - name: LeftEye
- position: {x: -.0208482333, y: .0825027004, z: .0554274321}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: Le_Eye_Mesh
- position: {x: -.00168411608, y: .000405807485, z: .00531818997}
- 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: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: Ri_Eye_Mesh
- position: {x: .00166187854, y: .000383453356, z: .00531667331}
- 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: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftNostril
- position: {x: -.0178999994, y: .0263128281, z: .0908674002}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftCheek
- position: {x: -.0542440265, y: .0337019488, z: .0594304018}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidUpper
- position: {x: -.0344068967, y: .10060814, z: .0802053064}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidLower
- position: {x: -.0356189571, y: .0650736615, z: .076234743}
- rotation: {x: -.0348994993, y: -3.62782637e-10, z: -3.54198684e-11, w: .999390841}
- scale: {x: 1.00000012, y: 1, z: 1.00000012}
- transformModified: 1
- - name: LeftInnerBrow
- position: {x: -.0120626912, y: .118765265, z: .0934668258}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftIOuterBrow
- position: {x: -.0550398715, y: .114825293, z: .061777398}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightInnerBrow
- position: {x: .0120626874, y: .118765265, z: .0934668258}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightIOuterBrow
- position: {x: .0550400019, y: .114822827, z: .061777398}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidUpper
- position: {x: .0344099998, y: .100612827, z: .0802073926}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidLower
- position: {x: .0356200002, y: .065072827, z: .0762374029}
- rotation: {x: -.0348994993, y: -3.62782637e-10, z: -3.54198684e-11, w: .999390841}
- scale: {x: 1.00000012, y: 1, z: 1.00000012}
- transformModified: 1
- - name: RightCheek
- position: {x: .0542399958, y: .033702828, z: .0594273992}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightNostril
- position: {x: .0178999994, y: .0263089053, z: .0908706188}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: RightLipUpper
- position: {x: .0145013221, y: -.00510717137, z: .094617404}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: Jaw
- position: {x: -0, y: .0111267585, z: .0103275431}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipLower
- position: {x: -.0142508168, y: -.0216887593, z: .0822406337}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: JawEND
- position: {x: -0, y: -.0482887588, z: .071851708}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipLower
- position: {x: .0142508168, y: -.0216887593, z: .0822387859}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipCorner
- position: {x: .0328399986, y: -.01657876, z: .0661187842}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipCorner
- position: {x: -.032843262, y: -.01657876, z: .0661217645}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueBack
- position: {x: -0, y: -.022869369, z: .0100954091}
- rotation: {x: 1.11022302e-16, y: 3.87740912e-26, z: -5.16987883e-26, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueTip
- position: {x: -0, y: -.000409444125, z: .0282272995}
- rotation: {x: -3.33066907e-16, y: -9.04728795e-26, z: 1.03397577e-25, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightShoulder
- position: {x: .0383285098, y: .192176744, z: -.017063085}
- rotation: {x: .228671983, y: .971582174, z: -.0140056787, w: -.0595073812}
- scale: {x: .999999881, y: 1, z: .99999994}
- transformModified: 1
- - name: RightArm
- position: {x: -.0835755169, y: .0360957012, z: -5.15574072e-08}
- rotation: {x: -.211052105, y: -.974394143, z: .0173117165, w: -.0755877495}
- scale: {x: .999999762, y: 1.00000024, z: 1.00000012}
- transformModified: 1
- - name: RightForeArm
- position: {x: .253428251, y: .00601135287, z: -.0167045239}
- rotation: {x: -.000616543461, y: .0220786314, z: -.0160702392, w: .999626935}
- scale: {x: 1, y: .99999994, z: .999999821}
- transformModified: 1
- - name: RightHand
- position: {x: .245373696, y: .0216417722, z: .00555046508}
- rotation: {x: 1.70984986e-08, y: -1.57888258e-09, z: .0214136858, w: .999770761}
- scale: {x: .999999821, y: .999999881, z: 1.00000012}
- transformModified: 1
- - name: RightHandThumb1
- position: {x: .0146849155, y: -.0111049423, z: .0258580949}
- rotation: {x: -.0128182266, y: -.00325535284, z: .0314610563, w: .999417543}
- scale: {x: 1, y: 1.00000012, z: 1.00000012}
- transformModified: 1
- - name: RightHandThumb2
- position: {x: .0163739994, y: -.00528999977, z: .0234913602}
- rotation: {x: -.026064774, y: -.0966913775, z: -.00360590452, w: .994966567}
- scale: {x: .999999881, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb3
- position: {x: .0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: 1.13153336e-08, y: 2.31102559e-09, z: 5.59119195e-09, w: 1}
- scale: {x: .999999881, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex1
- position: {x: .0747694969, y: -.00124305359, z: .0343444981}
- rotation: {x: -.00211892766, y: .0802574307, z: .0175381731, w: .996617615}
- scale: {x: .99999994, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex2
- position: {x: .0370584019, y: .00072612107, z: .0145388944}
- rotation: {x: -.00332582067, y: .0159311574, z: .0606318489, w: .998027503}
- scale: {x: 1, y: 1.00000012, z: .999999821}
- transformModified: 1
- - name: RightHandIndex3
- position: {x: .0252250377, y: -.00496646529, z: .0110121462}
- rotation: {x: 0, y: -1.455191e-11, z: 2.910382e-11, w: 1}
- scale: {x: .99999994, y: .999999881, z: 1.00000012}
- transformModified: 1
- - name: RightHandMiddle1
- position: {x: .0756476447, y: .00479140272, z: .0118531818}
- rotation: {x: -.000768889498, y: .0333210677, z: .0209075157, w: .999225676}
- scale: {x: 1.00000024, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle2
- position: {x: .0438090637, y: .000194188149, z: .00645493623}
- rotation: {x: -.00413070014, y: -.0335120521, z: .0761224926, w: .996526599}
- scale: {x: .99999994, y: 1.00000012, z: 1}
- transformModified: 1
- - name: RightHandMiddle3
- position: {x: .0330724716, y: -.00754753686, z: .00168984616}
- rotation: {x: 3.60887409e-09, y: 1.1903464e-08, z: 1.49457229e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing1
- position: {x: .0705984756, y: .00245709647, z: -.00982145779}
- rotation: {x: .000710894004, y: -.0543421358, z: .034944851, w: .99791044}
- scale: {x: 1.00000012, y: 1, z: .999999881}
- transformModified: 1
- - name: RightHandRing2
- position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
- rotation: {x: .000484050892, y: -.0212898124, z: .069858171, w: .997329593}
- scale: {x: .99999994, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing3
- position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
- rotation: {x: 2.32830599e-09, y: -3.94356814e-09, z: 2.2264425e-08, w: 1}
- scale: {x: .999999881, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky1
- position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
- rotation: {x: .00317619881, y: -.192004204, z: .0451152287, w: .980351448}
- scale: {x: 1.00000024, y: 1, z: 1.00000012}
- transformModified: 1
- - name: RightHandPinky2
- position: {x: .0285308417, y: -.001397143, z: -.0116237961}
- rotation: {x: -.000170621264, y: -.00966137275, z: -.00536240172, w: .999938965}
- scale: {x: .999999583, y: .999999881, z: 1}
- transformModified: 1
- - name: RightHandPinky3
- position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
- rotation: {x: 3.37604278e-09, y: -4.72937037e-11, z: 7.21047044e-09, w: 1}
- scale: {x: 1, y: 1, z: .999999881}
- transformModified: 1
- - name: LeftShoulder
- position: {x: -.0382435061, y: .192178085, z: -.017063085}
- rotation: {x: -.0140067171, y: -.0595068187, z: .228689909, w: .971577942}
- scale: {x: 1, y: .99999994, z: .99999994}
- transformModified: 1
- - name: LeftArm
- position: {x: -.0835747719, y: .036097575, z: 0}
- rotation: {x: .00946443528, y: .0436916985, z: -.223042414, w: .973783135}
- scale: {x: .999999762, y: 1.00000012, z: 1.00000012}
- transformModified: 1
- - name: LeftForeArm
- position: {x: -.254049301, y: 0, z: 0}
- rotation: {x: -.000616567559, y: .0220786165, z: -.0160702746, w: .999626935}
- scale: {x: 1.00000012, y: .999999881, z: .999999762}
- transformModified: 1
- - name: LeftHand
- position: {x: -.24638927, y: 0, z: 0}
- rotation: {x: -4.86506835e-08, y: -1.05901554e-08, z: -.0214135516, w: .999770761}
- scale: {x: .99999994, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb1
- position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
- rotation: {x: -.0123151885, y: -.00852606539, z: .0125835631, w: .999808669}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb2
- position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
- rotation: {x: -.0260630194, y: .0966895893, z: .00360708754, w: .994966805}
- scale: {x: 1.00000012, y: .99999994, z: 1}
- transformModified: 1
- - name: LeftHandThumb3
- position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: 7.0898885e-08, y: 2.4798279e-08, z: 1.90114924e-09, w: 1}
- scale: {x: .999999881, y: .99999994, z: 1}
- transformModified: 1
- - name: LeftHandIndex1
- position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
- rotation: {x: -.00211881264, y: .0802575052, z: .0175382141, w: .996617615}
- scale: {x: .999999821, y: 1.00000012, z: 1.00000012}
- transformModified: 1
- - name: LeftHandIndex2
- position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
- rotation: {x: .000501843693, y: .0154713113, z: .0404128991, w: .999063194}
- scale: {x: 1.00000024, y: .99999994, z: 1}
- transformModified: 1
- - name: LeftHandIndex3
- position: {x: -.0279684775, y: -6.28122399e-09, z: -5.17186614e-08}
- rotation: {x: -1.02445457e-08, y: -7.07222902e-09, z: 3.28873213e-08, w: 1}
- scale: {x: 1, y: 1.00000012, z: .99999994}
- transformModified: 1
- - name: LeftHandMiddle1
- position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
- rotation: {x: -.000768819125, y: .0333211087, z: .020907566, w: .999225736}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle2
- position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125}
- rotation: {x: -.00136211119, y: -.0191527214, z: .0378838591, w: .999097705}
- scale: {x: 1, y: 1, z: 1.00000024}
- transformModified: 1
- - name: LeftHandMiddle3
- position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09}
- rotation: {x: -5.23868904e-09, y: 2.25554658e-10, z: 1.11112959e-08, w: 1}
- scale: {x: 1, y: 1, z: .99999994}
- transformModified: 1
- - name: LeftHandRing1
- position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
- rotation: {x: -.000324034045, y: .0115974192, z: .0247375518, w: .999626696}
- scale: {x: 1.00000012, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing2
- position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
- rotation: {x: -.00120339729, y: -.0231137481, z: .0409838855, w: .998891771}
- scale: {x: .999999821, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing3
- position: {x: -.0308355652, y: 7.71049682e-11, z: -1.64932707e-08}
- rotation: {x: 9.31322353e-10, y: -3.84170473e-09, z: 2.60624748e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky1
- position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
- rotation: {x: -.000912261487, y: .012160643, z: .0212250836, w: .999700367}
- scale: {x: 1.00000012, y: 1.00000012, z: 1.00000012}
- transformModified: 1
- - name: LeftHandPinky2
- position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
- rotation: {x: -.000170690633, y: -.00966135133, z: -.00536237098, w: .999939024}
- scale: {x: .99999994, y: .99999994, z: 1.00000012}
- transformModified: 1
- - name: LeftHandPinky3
- position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08}
- rotation: {x: 2.29920127e-09, y: -1.48311212e-08, z: -1.83354025e-08, w: 1}
- scale: {x: .99999994, y: .999999821, z: .999999762}
- transformModified: 1
- - name: RightUpLeg
- position: {x: .0754495338, y: -.0456639901, z: 0}
- rotation: {x: -5.09317122e-09, y: -1.9653813e-17, z: -3.00133229e-09, w: 1}
- scale: {x: 1, y: 1.00000012, z: .99999994}
- transformModified: 1
- - name: RightLeg
- position: {x: .0205504671, y: -.409130007, z: .00717136543}
- rotation: {x: -7.27595706e-10, y: -5.82076609e-09, z: 1.54614099e-09, w: 1}
- scale: {x: 1, y: .999999881, z: 1.00000012}
- transformModified: 1
- - name: RightFoot
- position: {x: .00515299942, y: -.423155904, z: -.0120320888}
- rotation: {x: -7.2759565e-10, y: -5.82076787e-09, z: 2.91038305e-09, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightToes
- position: {x: .00748699997, y: -.0731673017, z: .145427495}
- rotation: {x: 3.63797825e-10, y: 5.82076787e-09, z: -6.36646402e-10, w: 1}
- scale: {x: 1, y: .99999994, z: 1.00000012}
- transformModified: 1
- - name: LeftUpLeg
- position: {x: -.0754494965, y: -.0456640199, z: 0}
- rotation: {x: -6.04814065e-09, y: 4.75967632e-17, z: 8.50946069e-09, w: 1}
- scale: {x: 1, y: .99999994, z: .99999994}
- transformModified: 1
- - name: LeftLeg
- position: {x: -.0205504987, y: -.409129977, z: .00717136543}
- rotation: {x: 2.27373675e-10, y: 1.2730839e-18, z: -5.59907765e-09, w: 1}
- scale: {x: 1, y: .999999881, z: 1}
- transformModified: 1
- - name: LeftFoot
- position: {x: -.00515299942, y: -.423155904, z: -.0120320888}
- rotation: {x: -7.27595872e-10, y: 5.8207652e-09, z: -2.13731233e-09, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftToes
- position: {x: -.00748699997, y: -.0731673017, z: .145427123}
- rotation: {x: 9.09494702e-10, y: -5.8207652e-09, z: -5.68432315e-11, w: 1}
- scale: {x: .99999994, y: 1.00000012, z: .99999994}
- transformModified: 1
- armTwist: .5
- foreArmTwist: .5
- upperLegTwist: .5
- legTwist: .5
- armStretch: .0500000007
- legStretch: .0500000007
- feetSpacing: 0
- rootMotionBoneName:
- lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9bde93922c5ea4196b87f9b5593da1dc,
- type: 3}
- animationType: 3
- additionalBone: 0
- userData:
- assetBundleName:
- assetBundleVariant:
|