Ragdoll Utility.unity 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!29 &1
  4. OcclusionCullingSettings:
  5. m_ObjectHideFlags: 0
  6. serializedVersion: 2
  7. m_OcclusionBakeSettings:
  8. smallestOccluder: 5
  9. smallestHole: 0.25
  10. backfaceThreshold: 100
  11. m_SceneGUID: 00000000000000000000000000000000
  12. m_OcclusionCullingData: {fileID: 0}
  13. --- !u!104 &2
  14. RenderSettings:
  15. m_ObjectHideFlags: 0
  16. serializedVersion: 8
  17. m_Fog: 0
  18. m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  19. m_FogMode: 3
  20. m_FogDensity: 0.01
  21. m_LinearFogStart: 0
  22. m_LinearFogEnd: 300
  23. m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
  24. m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
  25. m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
  26. m_AmbientIntensity: 1
  27. m_AmbientMode: 3
  28. m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
  29. m_SkyboxMaterial: {fileID: 0}
  30. m_HaloStrength: 0.5
  31. m_FlareStrength: 1
  32. m_FlareFadeSpeed: 3
  33. m_HaloTexture: {fileID: 0}
  34. m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
  35. m_DefaultReflectionMode: 0
  36. m_DefaultReflectionResolution: 128
  37. m_ReflectionBounces: 1
  38. m_ReflectionIntensity: 1
  39. m_CustomReflection: {fileID: 0}
  40. m_Sun: {fileID: 0}
  41. m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
  42. --- !u!157 &4
  43. LightmapSettings:
  44. m_ObjectHideFlags: 0
  45. serializedVersion: 11
  46. m_GIWorkflowMode: 1
  47. m_GISettings:
  48. serializedVersion: 2
  49. m_BounceScale: 1
  50. m_IndirectOutputScale: 1
  51. m_AlbedoBoost: 1
  52. m_TemporalCoherenceThreshold: 1
  53. m_EnvironmentLightingMode: 0
  54. m_EnableBakedLightmaps: 1
  55. m_EnableRealtimeLightmaps: 0
  56. m_LightmapEditorSettings:
  57. serializedVersion: 9
  58. m_Resolution: 1
  59. m_BakeResolution: 50
  60. m_TextureWidth: 1024
  61. m_TextureHeight: 1024
  62. m_AO: 0
  63. m_AOMaxDistance: 1
  64. m_CompAOExponent: 0
  65. m_CompAOExponentDirect: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 0
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 1024
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 1
  75. m_BakeBackend: 0
  76. m_PVRSampling: 1
  77. m_PVRDirectSampleCount: 32
  78. m_PVRSampleCount: 500
  79. m_PVRBounces: 2
  80. m_PVRFilterTypeDirect: 0
  81. m_PVRFilterTypeIndirect: 0
  82. m_PVRFilterTypeAO: 0
  83. m_PVRFilteringMode: 0
  84. m_PVRCulling: 1
  85. m_PVRFilteringGaussRadiusDirect: 1
  86. m_PVRFilteringGaussRadiusIndirect: 5
  87. m_PVRFilteringGaussRadiusAO: 2
  88. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  89. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  90. m_PVRFilteringAtrousPositionSigmaAO: 1
  91. m_ShowResolutionOverlay: 1
  92. m_LightingDataAsset: {fileID: 0}
  93. m_UseShadowmask: 0
  94. --- !u!196 &5
  95. NavMeshSettings:
  96. serializedVersion: 2
  97. m_ObjectHideFlags: 0
  98. m_BuildSettings:
  99. serializedVersion: 2
  100. agentTypeID: 0
  101. agentRadius: 0.5
  102. agentHeight: 2
  103. agentSlope: 45
  104. agentClimb: 0.4
  105. ledgeDropHeight: 0
  106. maxJumpAcrossDistance: 0
  107. minRegionArea: 2
  108. manualCellSize: 0
  109. cellSize: 0.16666666
  110. manualTileSize: 0
  111. tileSize: 256
  112. accuratePlacement: 0
  113. debug:
  114. m_Flags: 0
  115. m_NavMeshData: {fileID: 0}
  116. --- !u!1 &25958828
  117. GameObject:
  118. m_ObjectHideFlags: 0
  119. m_PrefabParentObject: {fileID: 173110, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  120. m_PrefabInternal: {fileID: 0}
  121. serializedVersion: 5
  122. m_Component:
  123. - component: {fileID: 25958829}
  124. m_Layer: 0
  125. m_Name: Bip002 Spine
  126. m_TagString: Untagged
  127. m_Icon: {fileID: 0}
  128. m_NavMeshLayer: 0
  129. m_StaticEditorFlags: 0
  130. m_IsActive: 1
  131. --- !u!4 &25958829
  132. Transform:
  133. m_ObjectHideFlags: 0
  134. m_PrefabParentObject: {fileID: 467038, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  135. m_PrefabInternal: {fileID: 0}
  136. m_GameObject: {fileID: 25958828}
  137. m_LocalRotation: {x: -0.000002070677, y: 0.000000684224, z: 0.013477894, w: 0.99990916}
  138. m_LocalPosition: {x: -0.09316022, y: -0.00008378435, z: 0.00000012931065}
  139. m_LocalScale: {x: 1, y: 1, z: 1}
  140. m_Children:
  141. - {fileID: 61632316}
  142. - {fileID: 739463182}
  143. - {fileID: 1892673806}
  144. m_Father: {fileID: 1417853825}
  145. m_RootOrder: 0
  146. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  147. --- !u!1 &39792839
  148. GameObject:
  149. m_ObjectHideFlags: 0
  150. m_PrefabParentObject: {fileID: 103736, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  151. m_PrefabInternal: {fileID: 0}
  152. serializedVersion: 5
  153. m_Component:
  154. - component: {fileID: 39792840}
  155. m_Layer: 0
  156. m_Name: BipDummy R Finger1
  157. m_TagString: Untagged
  158. m_Icon: {fileID: 0}
  159. m_NavMeshLayer: 0
  160. m_StaticEditorFlags: 0
  161. m_IsActive: 1
  162. --- !u!4 &39792840
  163. Transform:
  164. m_ObjectHideFlags: 0
  165. m_PrefabParentObject: {fileID: 408906, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  166. m_PrefabInternal: {fileID: 0}
  167. m_GameObject: {fileID: 39792839}
  168. m_LocalRotation: {x: 0.00039008295, y: 0.000079733094, z: -0.20024739, w: 0.97974527}
  169. m_LocalPosition: {x: -0.1003982, y: -0.003286316, z: 0.022276932}
  170. m_LocalScale: {x: 1, y: 1, z: 1.0000001}
  171. m_Children:
  172. - {fileID: 2025746363}
  173. m_Father: {fileID: 899844550}
  174. m_RootOrder: 1
  175. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  176. --- !u!1 &55246136
  177. GameObject:
  178. m_ObjectHideFlags: 0
  179. m_PrefabParentObject: {fileID: 173130, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  180. m_PrefabInternal: {fileID: 0}
  181. serializedVersion: 5
  182. m_Component:
  183. - component: {fileID: 55246137}
  184. m_Layer: 0
  185. m_Name: BipDummy L Finger4
  186. m_TagString: Untagged
  187. m_Icon: {fileID: 0}
  188. m_NavMeshLayer: 0
  189. m_StaticEditorFlags: 0
  190. m_IsActive: 1
  191. --- !u!4 &55246137
  192. Transform:
  193. m_ObjectHideFlags: 0
  194. m_PrefabParentObject: {fileID: 427828, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  195. m_PrefabInternal: {fileID: 0}
  196. m_GameObject: {fileID: 55246136}
  197. m_LocalRotation: {x: -0.002490904, y: 0.009521965, z: -0.21373138, w: 0.9768429}
  198. m_LocalPosition: {x: -0.09384656, y: 0.00909961, z: 0.03997948}
  199. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.9999999}
  200. m_Children:
  201. - {fileID: 154519227}
  202. m_Father: {fileID: 311460911}
  203. m_RootOrder: 4
  204. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  205. --- !u!1 &61632315
  206. GameObject:
  207. m_ObjectHideFlags: 0
  208. m_PrefabParentObject: {fileID: 105254, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  209. m_PrefabInternal: {fileID: 0}
  210. serializedVersion: 5
  211. m_Component:
  212. - component: {fileID: 61632316}
  213. - component: {fileID: 61632319}
  214. - component: {fileID: 61632318}
  215. - component: {fileID: 61632317}
  216. m_Layer: 0
  217. m_Name: Bip002 L Thigh
  218. m_TagString: Untagged
  219. m_Icon: {fileID: 0}
  220. m_NavMeshLayer: 0
  221. m_StaticEditorFlags: 0
  222. m_IsActive: 1
  223. --- !u!4 &61632316
  224. Transform:
  225. m_ObjectHideFlags: 0
  226. m_PrefabParentObject: {fileID: 453166, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  227. m_PrefabInternal: {fileID: 0}
  228. m_GameObject: {fileID: 61632315}
  229. m_LocalRotation: {x: -0.012555973, y: 0.9998845, z: 0.0005191883, w: 0.008549745}
  230. m_LocalPosition: {x: 0.09312867, y: -0.0024274522, z: 0.096502244}
  231. m_LocalScale: {x: 1, y: 1, z: 1.0000001}
  232. m_Children:
  233. - {fileID: 944893523}
  234. m_Father: {fileID: 25958829}
  235. m_RootOrder: 0
  236. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  237. --- !u!144 &61632317
  238. CharacterJoint:
  239. m_ObjectHideFlags: 0
  240. m_PrefabParentObject: {fileID: 14411032, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  241. type: 2}
  242. m_PrefabInternal: {fileID: 0}
  243. m_GameObject: {fileID: 61632315}
  244. m_ConnectedBody: {fileID: 1417853826}
  245. m_Anchor: {x: 0, y: 0, z: 0}
  246. m_Axis: {x: 0, y: 0, z: 1}
  247. m_AutoConfigureConnectedAnchor: 1
  248. m_ConnectedAnchor: {x: 0.00000017881393, y: 0.00000017881393, z: 0.096502244}
  249. serializedVersion: 2
  250. m_SwingAxis: {x: 0, y: 1, z: 0}
  251. m_TwistLimitSpring:
  252. spring: 0
  253. damper: 0
  254. m_LowTwistLimit:
  255. limit: -38.178562
  256. bounciness: 0
  257. contactDistance: 0
  258. m_HighTwistLimit:
  259. limit: 132.84805
  260. bounciness: 0
  261. contactDistance: 0
  262. m_SwingLimitSpring:
  263. spring: 0
  264. damper: 0
  265. m_Swing1Limit:
  266. limit: 30
  267. bounciness: 0
  268. contactDistance: 0
  269. m_Swing2Limit:
  270. limit: 25
  271. bounciness: 0
  272. contactDistance: 0
  273. m_EnableProjection: 0
  274. m_ProjectionDistance: 0.1
  275. m_ProjectionAngle: 180
  276. m_BreakForce: Infinity
  277. m_BreakTorque: Infinity
  278. m_EnableCollision: 0
  279. m_EnablePreprocessing: 1
  280. m_MassScale: 1
  281. m_ConnectedMassScale: 1
  282. --- !u!54 &61632318
  283. Rigidbody:
  284. m_ObjectHideFlags: 0
  285. m_PrefabParentObject: {fileID: 5459288, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  286. type: 2}
  287. m_PrefabInternal: {fileID: 0}
  288. m_GameObject: {fileID: 61632315}
  289. serializedVersion: 2
  290. m_Mass: 1.875
  291. m_Drag: 0
  292. m_AngularDrag: 0.05
  293. m_UseGravity: 1
  294. m_IsKinematic: 1
  295. m_Interpolate: 0
  296. m_Constraints: 0
  297. m_CollisionDetection: 0
  298. --- !u!136 &61632319
  299. CapsuleCollider:
  300. m_ObjectHideFlags: 0
  301. m_PrefabParentObject: {fileID: 13678706, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  302. type: 2}
  303. m_PrefabInternal: {fileID: 0}
  304. m_GameObject: {fileID: 61632315}
  305. m_Material: {fileID: 0}
  306. m_IsTrigger: 0
  307. m_Enabled: 1
  308. m_Radius: 0.1
  309. m_Height: 0.4223068
  310. m_Direction: 0
  311. m_Center: {x: -0.2111534, y: 0, z: 0}
  312. --- !u!1 &63618766
  313. GameObject:
  314. m_ObjectHideFlags: 0
  315. m_PrefabParentObject: {fileID: 180038, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  316. m_PrefabInternal: {fileID: 0}
  317. serializedVersion: 5
  318. m_Component:
  319. - component: {fileID: 63618767}
  320. m_Layer: 0
  321. m_Name: Bip002 L Clavicle
  322. m_TagString: Untagged
  323. m_Icon: {fileID: 0}
  324. m_NavMeshLayer: 0
  325. m_StaticEditorFlags: 0
  326. m_IsActive: 1
  327. --- !u!4 &63618767
  328. Transform:
  329. m_ObjectHideFlags: 0
  330. m_PrefabParentObject: {fileID: 462324, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  331. m_PrefabInternal: {fileID: 0}
  332. m_GameObject: {fileID: 63618766}
  333. m_LocalRotation: {x: -0.69003224, y: -0.10505305, z: 0.7079568, w: -0.10778003}
  334. m_LocalPosition: {x: -0, y: 0.000108856206, z: 0.028353818}
  335. m_LocalScale: {x: 1, y: 1, z: 1}
  336. m_Children:
  337. - {fileID: 1781373756}
  338. m_Father: {fileID: 1085885242}
  339. m_RootOrder: 1
  340. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  341. --- !u!1 &134381629
  342. GameObject:
  343. m_ObjectHideFlags: 0
  344. m_PrefabParentObject: {fileID: 132344, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  345. m_PrefabInternal: {fileID: 0}
  346. serializedVersion: 5
  347. m_Component:
  348. - component: {fileID: 134381630}
  349. - component: {fileID: 134381633}
  350. - component: {fileID: 134381631}
  351. - component: {fileID: 134381632}
  352. m_Layer: 0
  353. m_Name: Dummy Humanoid Ragdoll
  354. m_TagString: Untagged
  355. m_Icon: {fileID: 0}
  356. m_NavMeshLayer: 0
  357. m_StaticEditorFlags: 0
  358. m_IsActive: 1
  359. --- !u!4 &134381630
  360. Transform:
  361. m_ObjectHideFlags: 0
  362. m_PrefabParentObject: {fileID: 445896, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  363. m_PrefabInternal: {fileID: 0}
  364. m_GameObject: {fileID: 134381629}
  365. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  366. m_LocalPosition: {x: 0, y: 0, z: 0}
  367. m_LocalScale: {x: 1, y: 1, z: 1}
  368. m_Children:
  369. - {fileID: 1554393212}
  370. - {fileID: 455170423}
  371. m_Father: {fileID: 0}
  372. m_RootOrder: 6
  373. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  374. --- !u!114 &134381631
  375. MonoBehaviour:
  376. m_ObjectHideFlags: 0
  377. m_PrefabParentObject: {fileID: 0}
  378. m_PrefabInternal: {fileID: 0}
  379. m_GameObject: {fileID: 134381629}
  380. m_Enabled: 1
  381. m_EditorHideFlags: 0
  382. m_Script: {fileID: 11500000, guid: bc258957e94624710928e65beef13de4, type: 3}
  383. m_Name:
  384. m_EditorClassIdentifier:
  385. ik: {fileID: 134381632}
  386. ragdollToAnimationTime: 0.2
  387. applyIkOnRagdoll: 1
  388. applyVelocity: 1
  389. applyAngularVelocity: 1
  390. --- !u!114 &134381632
  391. MonoBehaviour:
  392. m_ObjectHideFlags: 0
  393. m_PrefabParentObject: {fileID: 0}
  394. m_PrefabInternal: {fileID: 0}
  395. m_GameObject: {fileID: 134381629}
  396. m_Enabled: 1
  397. m_EditorHideFlags: 0
  398. m_Script: {fileID: 11500000, guid: a70e525c82ce9413fa4d940ad7fcf1db, type: 3}
  399. m_Name:
  400. m_EditorClassIdentifier:
  401. fixTransforms: 1
  402. references:
  403. root: {fileID: 134381630}
  404. pelvis: {fileID: 1417853825}
  405. leftThigh: {fileID: 61632316}
  406. leftCalf: {fileID: 944893523}
  407. leftFoot: {fileID: 1107710775}
  408. rightThigh: {fileID: 739463182}
  409. rightCalf: {fileID: 1063876483}
  410. rightFoot: {fileID: 331626494}
  411. leftUpperArm: {fileID: 1781373756}
  412. leftForearm: {fileID: 1723654465}
  413. leftHand: {fileID: 311460911}
  414. rightUpperArm: {fileID: 2047611160}
  415. rightForearm: {fileID: 1738428775}
  416. rightHand: {fileID: 899844550}
  417. head: {fileID: 1359369973}
  418. spine:
  419. - {fileID: 1892673806}
  420. - {fileID: 741672767}
  421. eyes: []
  422. solver:
  423. executedInEditor: 0
  424. IKPosition: {x: 0, y: 0, z: 0}
  425. IKPositionWeight: 1
  426. root: {fileID: 134381630}
  427. iterations: 4
  428. chain:
  429. - pin: 0
  430. pull: 1
  431. push: 0
  432. pushParent: 0
  433. reach: 0.1
  434. reachSmoothing: 1
  435. pushSmoothing: 1
  436. nodes:
  437. - transform: {fileID: 1892673806}
  438. weight: 1
  439. solverPosition: {x: 0, y: 0, z: 0}
  440. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  441. defaultLocalPosition: {x: 0, y: 0, z: 0}
  442. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  443. length: 0
  444. effectorPositionWeight: 0
  445. effectorRotationWeight: 0
  446. offset: {x: 0, y: 0, z: 0}
  447. children: 01000000020000000300000004000000
  448. childConstraints:
  449. - pushElasticity: 0
  450. pullElasticity: 1
  451. bone1: {fileID: 1781373756}
  452. bone2: {fileID: 739463182}
  453. - pushElasticity: 0
  454. pullElasticity: 1
  455. bone1: {fileID: 2047611160}
  456. bone2: {fileID: 61632316}
  457. - pushElasticity: 0
  458. pullElasticity: 0
  459. bone1: {fileID: 1781373756}
  460. bone2: {fileID: 2047611160}
  461. - pushElasticity: 0
  462. pullElasticity: 0
  463. bone1: {fileID: 61632316}
  464. bone2: {fileID: 739463182}
  465. bendConstraint:
  466. bone1: {fileID: 0}
  467. bone2: {fileID: 0}
  468. bone3: {fileID: 0}
  469. bendGoal: {fileID: 0}
  470. direction: {x: 1, y: 0, z: 0}
  471. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  472. weight: 0
  473. defaultLocalDirection: {x: 0, y: 0, z: 0}
  474. defaultChildDirection: {x: 0, y: 0, z: 0}
  475. - pin: 0
  476. pull: 1
  477. push: 0
  478. pushParent: 0
  479. reach: 0.1
  480. reachSmoothing: 1
  481. pushSmoothing: 1
  482. nodes:
  483. - transform: {fileID: 1781373756}
  484. weight: 1
  485. solverPosition: {x: 0, y: 0, z: 0}
  486. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  487. defaultLocalPosition: {x: 0, y: 0, z: 0}
  488. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  489. length: 0
  490. effectorPositionWeight: 0
  491. effectorRotationWeight: 0
  492. offset: {x: 0, y: 0, z: 0}
  493. - transform: {fileID: 1723654465}
  494. weight: 1
  495. solverPosition: {x: 0, y: 0, z: 0}
  496. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  497. defaultLocalPosition: {x: 0, y: 0, z: 0}
  498. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  499. length: 0
  500. effectorPositionWeight: 0
  501. effectorRotationWeight: 0
  502. offset: {x: 0, y: 0, z: 0}
  503. - transform: {fileID: 311460911}
  504. weight: 1
  505. solverPosition: {x: 0, y: 0, z: 0}
  506. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  507. defaultLocalPosition: {x: 0, y: 0, z: 0}
  508. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  509. length: 0
  510. effectorPositionWeight: 0
  511. effectorRotationWeight: 0
  512. offset: {x: 0, y: 0, z: 0}
  513. children:
  514. childConstraints: []
  515. bendConstraint:
  516. bone1: {fileID: 0}
  517. bone2: {fileID: 0}
  518. bone3: {fileID: 0}
  519. bendGoal: {fileID: 0}
  520. direction: {x: 1, y: 0, z: 0}
  521. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  522. weight: 0
  523. defaultLocalDirection: {x: 0, y: 0, z: 0}
  524. defaultChildDirection: {x: 0, y: 0, z: 0}
  525. - pin: 0
  526. pull: 1
  527. push: 0
  528. pushParent: 0
  529. reach: 0.1
  530. reachSmoothing: 1
  531. pushSmoothing: 1
  532. nodes:
  533. - transform: {fileID: 2047611160}
  534. weight: 1
  535. solverPosition: {x: 0, y: 0, z: 0}
  536. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  537. defaultLocalPosition: {x: 0, y: 0, z: 0}
  538. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  539. length: 0
  540. effectorPositionWeight: 0
  541. effectorRotationWeight: 0
  542. offset: {x: 0, y: 0, z: 0}
  543. - transform: {fileID: 1738428775}
  544. weight: 1
  545. solverPosition: {x: 0, y: 0, z: 0}
  546. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  547. defaultLocalPosition: {x: 0, y: 0, z: 0}
  548. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  549. length: 0
  550. effectorPositionWeight: 0
  551. effectorRotationWeight: 0
  552. offset: {x: 0, y: 0, z: 0}
  553. - transform: {fileID: 899844550}
  554. weight: 1
  555. solverPosition: {x: 0, y: 0, z: 0}
  556. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  557. defaultLocalPosition: {x: 0, y: 0, z: 0}
  558. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  559. length: 0
  560. effectorPositionWeight: 0
  561. effectorRotationWeight: 0
  562. offset: {x: 0, y: 0, z: 0}
  563. children:
  564. childConstraints: []
  565. bendConstraint:
  566. bone1: {fileID: 0}
  567. bone2: {fileID: 0}
  568. bone3: {fileID: 0}
  569. bendGoal: {fileID: 0}
  570. direction: {x: 1, y: 0, z: 0}
  571. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  572. weight: 0
  573. defaultLocalDirection: {x: 0, y: 0, z: 0}
  574. defaultChildDirection: {x: 0, y: 0, z: 0}
  575. - pin: 0
  576. pull: 1
  577. push: 0
  578. pushParent: 0
  579. reach: 0.1
  580. reachSmoothing: 1
  581. pushSmoothing: 1
  582. nodes:
  583. - transform: {fileID: 61632316}
  584. weight: 1
  585. solverPosition: {x: 0, y: 0, z: 0}
  586. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  587. defaultLocalPosition: {x: 0, y: 0, z: 0}
  588. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  589. length: 0
  590. effectorPositionWeight: 0
  591. effectorRotationWeight: 0
  592. offset: {x: 0, y: 0, z: 0}
  593. - transform: {fileID: 944893523}
  594. weight: 1
  595. solverPosition: {x: 0, y: 0, z: 0}
  596. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  597. defaultLocalPosition: {x: 0, y: 0, z: 0}
  598. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  599. length: 0
  600. effectorPositionWeight: 0
  601. effectorRotationWeight: 0
  602. offset: {x: 0, y: 0, z: 0}
  603. - transform: {fileID: 1107710775}
  604. weight: 1
  605. solverPosition: {x: 0, y: 0, z: 0}
  606. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  607. defaultLocalPosition: {x: 0, y: 0, z: 0}
  608. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  609. length: 0
  610. effectorPositionWeight: 0
  611. effectorRotationWeight: 0
  612. offset: {x: 0, y: 0, z: 0}
  613. children:
  614. childConstraints: []
  615. bendConstraint:
  616. bone1: {fileID: 0}
  617. bone2: {fileID: 0}
  618. bone3: {fileID: 0}
  619. bendGoal: {fileID: 0}
  620. direction: {x: 1, y: 0, z: 0}
  621. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  622. weight: 0
  623. defaultLocalDirection: {x: 0, y: 0, z: 0}
  624. defaultChildDirection: {x: 0, y: 0, z: 0}
  625. - pin: 0
  626. pull: 1
  627. push: 0
  628. pushParent: 0
  629. reach: 0.1
  630. reachSmoothing: 1
  631. pushSmoothing: 1
  632. nodes:
  633. - transform: {fileID: 739463182}
  634. weight: 1
  635. solverPosition: {x: 0, y: 0, z: 0}
  636. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  637. defaultLocalPosition: {x: 0, y: 0, z: 0}
  638. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  639. length: 0
  640. effectorPositionWeight: 0
  641. effectorRotationWeight: 0
  642. offset: {x: 0, y: 0, z: 0}
  643. - transform: {fileID: 1063876483}
  644. weight: 1
  645. solverPosition: {x: 0, y: 0, z: 0}
  646. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  647. defaultLocalPosition: {x: 0, y: 0, z: 0}
  648. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  649. length: 0
  650. effectorPositionWeight: 0
  651. effectorRotationWeight: 0
  652. offset: {x: 0, y: 0, z: 0}
  653. - transform: {fileID: 331626494}
  654. weight: 1
  655. solverPosition: {x: 0, y: 0, z: 0}
  656. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  657. defaultLocalPosition: {x: 0, y: 0, z: 0}
  658. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  659. length: 0
  660. effectorPositionWeight: 0
  661. effectorRotationWeight: 0
  662. offset: {x: 0, y: 0, z: 0}
  663. children:
  664. childConstraints: []
  665. bendConstraint:
  666. bone1: {fileID: 0}
  667. bone2: {fileID: 0}
  668. bone3: {fileID: 0}
  669. bendGoal: {fileID: 0}
  670. direction: {x: 1, y: 0, z: 0}
  671. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  672. weight: 0
  673. defaultLocalDirection: {x: 0, y: 0, z: 0}
  674. defaultChildDirection: {x: 0, y: 0, z: 0}
  675. effectors:
  676. - bone: {fileID: 1892673806}
  677. target: {fileID: 0}
  678. positionWeight: 0
  679. rotationWeight: 0
  680. position: {x: 0, y: 0, z: 0}
  681. rotation: {x: 0, y: 0, z: 0, w: 1}
  682. positionOffset: {x: 0, y: 0, z: 0}
  683. effectChildNodes: 1
  684. maintainRelativePositionWeight: 0
  685. childBones:
  686. - {fileID: 61632316}
  687. - {fileID: 739463182}
  688. planeBone1: {fileID: 0}
  689. planeBone2: {fileID: 0}
  690. planeBone3: {fileID: 0}
  691. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  692. - bone: {fileID: 1781373756}
  693. target: {fileID: 0}
  694. positionWeight: 0
  695. rotationWeight: 0
  696. position: {x: 0, y: 0, z: 0}
  697. rotation: {x: 0, y: 0, z: 0, w: 1}
  698. positionOffset: {x: 0, y: 0, z: 0}
  699. effectChildNodes: 1
  700. maintainRelativePositionWeight: 0
  701. childBones: []
  702. planeBone1: {fileID: 0}
  703. planeBone2: {fileID: 0}
  704. planeBone3: {fileID: 0}
  705. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  706. - bone: {fileID: 2047611160}
  707. target: {fileID: 0}
  708. positionWeight: 0
  709. rotationWeight: 0
  710. position: {x: 0, y: 0, z: 0}
  711. rotation: {x: 0, y: 0, z: 0, w: 1}
  712. positionOffset: {x: 0, y: 0, z: 0}
  713. effectChildNodes: 1
  714. maintainRelativePositionWeight: 0
  715. childBones: []
  716. planeBone1: {fileID: 0}
  717. planeBone2: {fileID: 0}
  718. planeBone3: {fileID: 0}
  719. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  720. - bone: {fileID: 61632316}
  721. target: {fileID: 0}
  722. positionWeight: 0
  723. rotationWeight: 0
  724. position: {x: 0, y: 0, z: 0}
  725. rotation: {x: 0, y: 0, z: 0, w: 1}
  726. positionOffset: {x: 0, y: 0, z: 0}
  727. effectChildNodes: 1
  728. maintainRelativePositionWeight: 0
  729. childBones: []
  730. planeBone1: {fileID: 0}
  731. planeBone2: {fileID: 0}
  732. planeBone3: {fileID: 0}
  733. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  734. - bone: {fileID: 739463182}
  735. target: {fileID: 0}
  736. positionWeight: 0
  737. rotationWeight: 0
  738. position: {x: 0, y: 0, z: 0}
  739. rotation: {x: 0, y: 0, z: 0, w: 1}
  740. positionOffset: {x: 0, y: 0, z: 0}
  741. effectChildNodes: 1
  742. maintainRelativePositionWeight: 0
  743. childBones: []
  744. planeBone1: {fileID: 0}
  745. planeBone2: {fileID: 0}
  746. planeBone3: {fileID: 0}
  747. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  748. - bone: {fileID: 311460911}
  749. target: {fileID: 0}
  750. positionWeight: 0
  751. rotationWeight: 0
  752. position: {x: 0, y: 0, z: 0}
  753. rotation: {x: 0, y: 0, z: 0, w: 1}
  754. positionOffset: {x: 0, y: 0, z: 0}
  755. effectChildNodes: 1
  756. maintainRelativePositionWeight: 0
  757. childBones: []
  758. planeBone1: {fileID: 1781373756}
  759. planeBone2: {fileID: 2047611160}
  760. planeBone3: {fileID: 1892673806}
  761. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  762. - bone: {fileID: 899844550}
  763. target: {fileID: 0}
  764. positionWeight: 0
  765. rotationWeight: 0
  766. position: {x: 0, y: 0, z: 0}
  767. rotation: {x: 0, y: 0, z: 0, w: 1}
  768. positionOffset: {x: 0, y: 0, z: 0}
  769. effectChildNodes: 1
  770. maintainRelativePositionWeight: 0
  771. childBones: []
  772. planeBone1: {fileID: 2047611160}
  773. planeBone2: {fileID: 1781373756}
  774. planeBone3: {fileID: 1892673806}
  775. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  776. - bone: {fileID: 1107710775}
  777. target: {fileID: 0}
  778. positionWeight: 0
  779. rotationWeight: 0
  780. position: {x: 0, y: 0, z: 0}
  781. rotation: {x: 0, y: 0, z: 0, w: 1}
  782. positionOffset: {x: 0, y: 0, z: 0}
  783. effectChildNodes: 1
  784. maintainRelativePositionWeight: 0
  785. childBones: []
  786. planeBone1: {fileID: 61632316}
  787. planeBone2: {fileID: 739463182}
  788. planeBone3: {fileID: 1892673806}
  789. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  790. - bone: {fileID: 331626494}
  791. target: {fileID: 0}
  792. positionWeight: 0
  793. rotationWeight: 0
  794. position: {x: 0, y: 0, z: 0}
  795. rotation: {x: 0, y: 0, z: 0, w: 1}
  796. positionOffset: {x: 0, y: 0, z: 0}
  797. effectChildNodes: 1
  798. maintainRelativePositionWeight: 0
  799. childBones: []
  800. planeBone1: {fileID: 739463182}
  801. planeBone2: {fileID: 61632316}
  802. planeBone3: {fileID: 1892673806}
  803. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  804. spineMapping:
  805. spineBones:
  806. - {fileID: 1417853825}
  807. - {fileID: 1892673806}
  808. - {fileID: 741672767}
  809. leftUpperArmBone: {fileID: 1781373756}
  810. rightUpperArmBone: {fileID: 2047611160}
  811. leftThighBone: {fileID: 61632316}
  812. rightThighBone: {fileID: 739463182}
  813. iterations: 3
  814. twistWeight: 1
  815. boneMappings:
  816. - bone: {fileID: 1359369973}
  817. maintainRotationWeight: 0
  818. limbMappings:
  819. - parentBone: {fileID: 63618767}
  820. bone1: {fileID: 1781373756}
  821. bone2: {fileID: 1723654465}
  822. bone3: {fileID: 311460911}
  823. maintainRotationWeight: 0
  824. weight: 1
  825. - parentBone: {fileID: 522026903}
  826. bone1: {fileID: 2047611160}
  827. bone2: {fileID: 1738428775}
  828. bone3: {fileID: 899844550}
  829. maintainRotationWeight: 0
  830. weight: 1
  831. - parentBone: {fileID: 0}
  832. bone1: {fileID: 61632316}
  833. bone2: {fileID: 944893523}
  834. bone3: {fileID: 1107710775}
  835. maintainRotationWeight: 1
  836. weight: 1
  837. - parentBone: {fileID: 0}
  838. bone1: {fileID: 739463182}
  839. bone2: {fileID: 1063876483}
  840. bone3: {fileID: 331626494}
  841. maintainRotationWeight: 1
  842. weight: 1
  843. FABRIKPass: 1
  844. rootNode: {fileID: 1892673806}
  845. spineStiffness: 0.5
  846. pullBodyVertical: 0.5
  847. pullBodyHorizontal: 0
  848. --- !u!95 &134381633
  849. Animator:
  850. serializedVersion: 3
  851. m_ObjectHideFlags: 0
  852. m_PrefabParentObject: {fileID: 9503446, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  853. type: 2}
  854. m_PrefabInternal: {fileID: 0}
  855. m_GameObject: {fileID: 134381629}
  856. m_Enabled: 1
  857. m_Avatar: {fileID: 9000000, guid: 959d14bf134f54a6e993fe6ca6e063c0, type: 3}
  858. m_Controller: {fileID: 9100000, guid: 1204362ea160d44f7937305b219e3e19, type: 2}
  859. m_CullingMode: 1
  860. m_UpdateMode: 0
  861. m_ApplyRootMotion: 0
  862. m_LinearVelocityBlending: 0
  863. m_WarningMessage:
  864. m_HasTransformHierarchy: 1
  865. m_AllowConstantClipSamplingOptimization: 1
  866. --- !u!1 &154519226
  867. GameObject:
  868. m_ObjectHideFlags: 0
  869. m_PrefabParentObject: {fileID: 111588, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  870. m_PrefabInternal: {fileID: 0}
  871. serializedVersion: 5
  872. m_Component:
  873. - component: {fileID: 154519227}
  874. m_Layer: 0
  875. m_Name: BipDummy L Finger41
  876. m_TagString: Untagged
  877. m_Icon: {fileID: 0}
  878. m_NavMeshLayer: 0
  879. m_StaticEditorFlags: 0
  880. m_IsActive: 1
  881. --- !u!4 &154519227
  882. Transform:
  883. m_ObjectHideFlags: 0
  884. m_PrefabParentObject: {fileID: 487446, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  885. m_PrefabInternal: {fileID: 0}
  886. m_GameObject: {fileID: 154519226}
  887. m_LocalRotation: {x: -0.000000027031515, y: 0.0000000021954984, z: -0.35165805,
  888. w: 0.93612856}
  889. m_LocalPosition: {x: -0.03212024, y: -0.00000003051758, z: -0.000000045776368}
  890. m_LocalScale: {x: 0.99999994, y: 0.99999976, z: 1}
  891. m_Children:
  892. - {fileID: 378644418}
  893. m_Father: {fileID: 55246137}
  894. m_RootOrder: 0
  895. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  896. --- !u!1 &236312174
  897. GameObject:
  898. m_ObjectHideFlags: 0
  899. m_PrefabParentObject: {fileID: 123646, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  900. m_PrefabInternal: {fileID: 0}
  901. serializedVersion: 5
  902. m_Component:
  903. - component: {fileID: 236312175}
  904. m_Layer: 0
  905. m_Name: BipDummy R Finger31
  906. m_TagString: Untagged
  907. m_Icon: {fileID: 0}
  908. m_NavMeshLayer: 0
  909. m_StaticEditorFlags: 0
  910. m_IsActive: 1
  911. --- !u!4 &236312175
  912. Transform:
  913. m_ObjectHideFlags: 0
  914. m_PrefabParentObject: {fileID: 477034, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  915. m_PrefabInternal: {fileID: 0}
  916. m_GameObject: {fileID: 236312174}
  917. m_LocalRotation: {x: -0.000000009311458, y: 1.813486e-10, z: -0.615464, w: 0.78816503}
  918. m_LocalPosition: {x: -0.040773623, y: 0.00000003051758, z: 0.00000001525879}
  919. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  920. m_Children:
  921. - {fileID: 789706365}
  922. m_Father: {fileID: 2028498809}
  923. m_RootOrder: 0
  924. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  925. --- !u!1 &268987938
  926. GameObject:
  927. m_ObjectHideFlags: 0
  928. m_PrefabParentObject: {fileID: 166880, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  929. m_PrefabInternal: {fileID: 0}
  930. serializedVersion: 5
  931. m_Component:
  932. - component: {fileID: 268987939}
  933. m_Layer: 0
  934. m_Name: BipDummy L Finger31
  935. m_TagString: Untagged
  936. m_Icon: {fileID: 0}
  937. m_NavMeshLayer: 0
  938. m_StaticEditorFlags: 0
  939. m_IsActive: 1
  940. --- !u!4 &268987939
  941. Transform:
  942. m_ObjectHideFlags: 0
  943. m_PrefabParentObject: {fileID: 471388, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  944. m_PrefabInternal: {fileID: 0}
  945. m_GameObject: {fileID: 268987938}
  946. m_LocalRotation: {x: 0.0000000026053375, y: -0.0000000045790607, z: -0.26490858,
  947. w: 0.9642736}
  948. m_LocalPosition: {x: -0.040773623, y: 0.00000003051758, z: 0.00000001525879}
  949. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
  950. m_Children:
  951. - {fileID: 791457429}
  952. m_Father: {fileID: 546800076}
  953. m_RootOrder: 0
  954. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  955. --- !u!1 &278188351
  956. GameObject:
  957. m_ObjectHideFlags: 0
  958. m_PrefabParentObject: {fileID: 125728, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  959. m_PrefabInternal: {fileID: 0}
  960. serializedVersion: 5
  961. m_Component:
  962. - component: {fileID: 278188352}
  963. m_Layer: 0
  964. m_Name: BipDummy L Finger11
  965. m_TagString: Untagged
  966. m_Icon: {fileID: 0}
  967. m_NavMeshLayer: 0
  968. m_StaticEditorFlags: 0
  969. m_IsActive: 1
  970. --- !u!4 &278188352
  971. Transform:
  972. m_ObjectHideFlags: 0
  973. m_PrefabParentObject: {fileID: 421376, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  974. m_PrefabInternal: {fileID: 0}
  975. m_GameObject: {fileID: 278188351}
  976. m_LocalRotation: {x: -0.00000004303571, y: 0.000000014207038, z: -0.15310442, w: 0.98821}
  977. m_LocalPosition: {x: -0.047266666, y: 0, z: 0.00000003051758}
  978. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  979. m_Children:
  980. - {fileID: 1181134534}
  981. m_Father: {fileID: 1054321362}
  982. m_RootOrder: 0
  983. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  984. --- !u!1 &311460910
  985. GameObject:
  986. m_ObjectHideFlags: 0
  987. m_PrefabParentObject: {fileID: 123990, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  988. m_PrefabInternal: {fileID: 0}
  989. serializedVersion: 5
  990. m_Component:
  991. - component: {fileID: 311460911}
  992. m_Layer: 0
  993. m_Name: Bip002 L Hand
  994. m_TagString: Untagged
  995. m_Icon: {fileID: 0}
  996. m_NavMeshLayer: 0
  997. m_StaticEditorFlags: 0
  998. m_IsActive: 1
  999. --- !u!4 &311460911
  1000. Transform:
  1001. m_ObjectHideFlags: 0
  1002. m_PrefabParentObject: {fileID: 404446, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1003. m_PrefabInternal: {fileID: 0}
  1004. m_GameObject: {fileID: 311460910}
  1005. m_LocalRotation: {x: -0.7212754, y: -0.08105717, z: 0.07682164, w: 0.6835861}
  1006. m_LocalPosition: {x: -0.2430326, y: -0.00000003051758, z: 0}
  1007. m_LocalScale: {x: 1, y: 1, z: 1.0000001}
  1008. m_Children:
  1009. - {fileID: 992188098}
  1010. - {fileID: 1054321362}
  1011. - {fileID: 1156901903}
  1012. - {fileID: 546800076}
  1013. - {fileID: 55246137}
  1014. m_Father: {fileID: 1723654465}
  1015. m_RootOrder: 0
  1016. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1017. --- !u!1 &322397191
  1018. GameObject:
  1019. m_ObjectHideFlags: 0
  1020. m_PrefabParentObject: {fileID: 0}
  1021. m_PrefabInternal: {fileID: 0}
  1022. serializedVersion: 5
  1023. m_Component:
  1024. - component: {fileID: 322397193}
  1025. - component: {fileID: 322397192}
  1026. m_Layer: 0
  1027. m_Name: READ ME!
  1028. m_TagString: Untagged
  1029. m_Icon: {fileID: 0}
  1030. m_NavMeshLayer: 0
  1031. m_StaticEditorFlags: 0
  1032. m_IsActive: 1
  1033. --- !u!114 &322397192
  1034. MonoBehaviour:
  1035. m_ObjectHideFlags: 0
  1036. m_PrefabParentObject: {fileID: 0}
  1037. m_PrefabInternal: {fileID: 0}
  1038. m_GameObject: {fileID: 322397191}
  1039. m_Enabled: 1
  1040. m_EditorHideFlags: 0
  1041. m_Script: {fileID: 11500000, guid: 92471cc1733c49042be56cd39b4b6e5e, type: 3}
  1042. m_Name:
  1043. m_EditorClassIdentifier:
  1044. text: 'This scene demonstrates how RagdollUtility.cs can be used to smoothly blend
  1045. a character between animated and ragdoll modes.
  1046. When a character with IK if switched to ragdoll, it needs to be done after IK
  1047. has updated and before animation overwrites that pose the next frame. RagdollUtility
  1048. handles that for you automatically.
  1049. It also enables you to apply IK on a ragdoll character. Enable "Apply IK On Ragdoll"
  1050. and weigh in one of the FBBIK effectors and see what happens.
  1051. RagdollUtility is managed in this scene by RagdollUtilityDemo.cs'
  1052. --- !u!4 &322397193
  1053. Transform:
  1054. m_ObjectHideFlags: 0
  1055. m_PrefabParentObject: {fileID: 0}
  1056. m_PrefabInternal: {fileID: 0}
  1057. m_GameObject: {fileID: 322397191}
  1058. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1059. m_LocalPosition: {x: -0.3748566, y: 1.4219937, z: -0.4940662}
  1060. m_LocalScale: {x: 1, y: 1, z: 1}
  1061. m_Children: []
  1062. m_Father: {fileID: 0}
  1063. m_RootOrder: 0
  1064. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1065. --- !u!1 &331626493
  1066. GameObject:
  1067. m_ObjectHideFlags: 0
  1068. m_PrefabParentObject: {fileID: 182212, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1069. m_PrefabInternal: {fileID: 0}
  1070. serializedVersion: 5
  1071. m_Component:
  1072. - component: {fileID: 331626494}
  1073. m_Layer: 0
  1074. m_Name: Bip002 R Foot
  1075. m_TagString: Untagged
  1076. m_Icon: {fileID: 0}
  1077. m_NavMeshLayer: 0
  1078. m_StaticEditorFlags: 0
  1079. m_IsActive: 1
  1080. --- !u!4 &331626494
  1081. Transform:
  1082. m_ObjectHideFlags: 0
  1083. m_PrefabParentObject: {fileID: 432300, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1084. m_PrefabInternal: {fileID: 0}
  1085. m_GameObject: {fileID: 331626493}
  1086. m_LocalRotation: {x: 0.045867775, y: -0.013275983, z: -0.10180175, w: 0.99365807}
  1087. m_LocalPosition: {x: -0.41098925, y: -0.000000007629395, z: 0}
  1088. m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994}
  1089. m_Children:
  1090. - {fileID: 1378595737}
  1091. m_Father: {fileID: 1063876483}
  1092. m_RootOrder: 0
  1093. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1094. --- !u!1 &378644417
  1095. GameObject:
  1096. m_ObjectHideFlags: 0
  1097. m_PrefabParentObject: {fileID: 187130, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1098. m_PrefabInternal: {fileID: 0}
  1099. serializedVersion: 5
  1100. m_Component:
  1101. - component: {fileID: 378644418}
  1102. m_Layer: 0
  1103. m_Name: BipDummy L Finger42
  1104. m_TagString: Untagged
  1105. m_Icon: {fileID: 0}
  1106. m_NavMeshLayer: 0
  1107. m_StaticEditorFlags: 0
  1108. m_IsActive: 1
  1109. --- !u!4 &378644418
  1110. Transform:
  1111. m_ObjectHideFlags: 0
  1112. m_PrefabParentObject: {fileID: 489900, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1113. m_PrefabInternal: {fileID: 0}
  1114. m_GameObject: {fileID: 378644417}
  1115. m_LocalRotation: {x: 0.00000001644754, y: 0.00000001808565, z: -0.41532043, w: 0.90967524}
  1116. m_LocalPosition: {x: -0.01889612, y: 0, z: 0.000000045776368}
  1117. m_LocalScale: {x: 1, y: 1.0000001, z: 1}
  1118. m_Children: []
  1119. m_Father: {fileID: 154519227}
  1120. m_RootOrder: 0
  1121. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1122. --- !u!1 &385228159
  1123. GameObject:
  1124. m_ObjectHideFlags: 0
  1125. m_PrefabParentObject: {fileID: 0}
  1126. m_PrefabInternal: {fileID: 0}
  1127. serializedVersion: 5
  1128. m_Component:
  1129. - component: {fileID: 385228161}
  1130. - component: {fileID: 385228160}
  1131. m_Layer: 0
  1132. m_Name: Ragdoll Utility Demo
  1133. m_TagString: Untagged
  1134. m_Icon: {fileID: 0}
  1135. m_NavMeshLayer: 0
  1136. m_StaticEditorFlags: 0
  1137. m_IsActive: 1
  1138. --- !u!114 &385228160
  1139. MonoBehaviour:
  1140. m_ObjectHideFlags: 0
  1141. m_PrefabParentObject: {fileID: 0}
  1142. m_PrefabInternal: {fileID: 0}
  1143. m_GameObject: {fileID: 385228159}
  1144. m_Enabled: 1
  1145. m_EditorHideFlags: 0
  1146. m_Script: {fileID: 11500000, guid: 73d9168c07539433286485f01c12bf23, type: 3}
  1147. m_Name:
  1148. m_EditorClassIdentifier:
  1149. ragdollUtility: {fileID: 134381631}
  1150. root: {fileID: 134381630}
  1151. pelvis: {fileID: 1417853826}
  1152. --- !u!4 &385228161
  1153. Transform:
  1154. m_ObjectHideFlags: 0
  1155. m_PrefabParentObject: {fileID: 0}
  1156. m_PrefabInternal: {fileID: 0}
  1157. m_GameObject: {fileID: 385228159}
  1158. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1159. m_LocalPosition: {x: 0.53340745, y: 0.73896265, z: -0.5030111}
  1160. m_LocalScale: {x: 1, y: 1, z: 1}
  1161. m_Children: []
  1162. m_Father: {fileID: 0}
  1163. m_RootOrder: 1
  1164. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1165. --- !u!1 &433356874
  1166. GameObject:
  1167. m_ObjectHideFlags: 0
  1168. m_PrefabParentObject: {fileID: 106696, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1169. m_PrefabInternal: {fileID: 0}
  1170. serializedVersion: 5
  1171. m_Component:
  1172. - component: {fileID: 433356875}
  1173. m_Layer: 0
  1174. m_Name: BipDummy R Finger4
  1175. m_TagString: Untagged
  1176. m_Icon: {fileID: 0}
  1177. m_NavMeshLayer: 0
  1178. m_StaticEditorFlags: 0
  1179. m_IsActive: 1
  1180. --- !u!4 &433356875
  1181. Transform:
  1182. m_ObjectHideFlags: 0
  1183. m_PrefabParentObject: {fileID: 401766, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1184. m_PrefabInternal: {fileID: 0}
  1185. m_GameObject: {fileID: 433356874}
  1186. m_LocalRotation: {x: 0.0007130304, y: -0.0098164985, z: -0.032043967, w: 0.99943805}
  1187. m_LocalPosition: {x: -0.09384656, y: 0.009099671, z: -0.039979525}
  1188. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  1189. m_Children:
  1190. - {fileID: 1694741765}
  1191. m_Father: {fileID: 899844550}
  1192. m_RootOrder: 4
  1193. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1194. --- !u!1 &455170422
  1195. GameObject:
  1196. m_ObjectHideFlags: 0
  1197. m_PrefabParentObject: {fileID: 175244, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1198. m_PrefabInternal: {fileID: 0}
  1199. serializedVersion: 5
  1200. m_Component:
  1201. - component: {fileID: 455170423}
  1202. - component: {fileID: 455170424}
  1203. m_Layer: 0
  1204. m_Name: Dummy
  1205. m_TagString: Untagged
  1206. m_Icon: {fileID: 0}
  1207. m_NavMeshLayer: 0
  1208. m_StaticEditorFlags: 0
  1209. m_IsActive: 1
  1210. --- !u!4 &455170423
  1211. Transform:
  1212. m_ObjectHideFlags: 0
  1213. m_PrefabParentObject: {fileID: 460404, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1214. m_PrefabInternal: {fileID: 0}
  1215. m_GameObject: {fileID: 455170422}
  1216. m_LocalRotation: {x: 0.000000021855694, y: 0, z: 0, w: 1}
  1217. m_LocalPosition: {x: 0, y: 0, z: 0}
  1218. m_LocalScale: {x: 1.9103826, y: 1.9103826, z: 1.9103826}
  1219. m_Children: []
  1220. m_Father: {fileID: 134381630}
  1221. m_RootOrder: 1
  1222. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1223. --- !u!137 &455170424
  1224. SkinnedMeshRenderer:
  1225. m_ObjectHideFlags: 0
  1226. m_PrefabParentObject: {fileID: 13753222, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  1227. type: 2}
  1228. m_PrefabInternal: {fileID: 0}
  1229. m_GameObject: {fileID: 455170422}
  1230. m_Enabled: 1
  1231. m_CastShadows: 1
  1232. m_ReceiveShadows: 1
  1233. m_DynamicOccludee: 1
  1234. m_MotionVectors: 1
  1235. m_LightProbeUsage: 1
  1236. m_ReflectionProbeUsage: 1
  1237. m_Materials:
  1238. - {fileID: 2100000, guid: 8a758f41de96147d29c0b9d92ce2a3c5, type: 2}
  1239. m_StaticBatchInfo:
  1240. firstSubMesh: 0
  1241. subMeshCount: 0
  1242. m_StaticBatchRoot: {fileID: 0}
  1243. m_ProbeAnchor: {fileID: 0}
  1244. m_LightProbeVolumeOverride: {fileID: 0}
  1245. m_ScaleInLightmap: 1
  1246. m_PreserveUVs: 0
  1247. m_IgnoreNormalsForChartDetection: 0
  1248. m_ImportantGI: 0
  1249. m_StitchLightmapSeams: 0
  1250. m_SelectedEditorRenderState: 3
  1251. m_MinimumChartSize: 4
  1252. m_AutoUVMaxDistance: 0.5
  1253. m_AutoUVMaxAngle: 89
  1254. m_LightmapParameters: {fileID: 0}
  1255. m_SortingLayerID: 0
  1256. m_SortingLayer: 0
  1257. m_SortingOrder: 0
  1258. serializedVersion: 2
  1259. m_Quality: 0
  1260. m_UpdateWhenOffscreen: 0
  1261. m_SkinnedMotionVectors: 1
  1262. m_Mesh: {fileID: 4300000, guid: 959d14bf134f54a6e993fe6ca6e063c0, type: 3}
  1263. m_Bones:
  1264. - {fileID: 61632316}
  1265. - {fileID: 1417853825}
  1266. - {fileID: 25958829}
  1267. - {fileID: 1554393212}
  1268. - {fileID: 739463182}
  1269. - {fileID: 63618767}
  1270. - {fileID: 1781373756}
  1271. - {fileID: 741672767}
  1272. - {fileID: 1858565651}
  1273. - {fileID: 1085885242}
  1274. - {fileID: 1359369973}
  1275. - {fileID: 522026903}
  1276. - {fileID: 1723654465}
  1277. - {fileID: 2047611160}
  1278. - {fileID: 1738428775}
  1279. - {fileID: 1892673806}
  1280. - {fileID: 944893523}
  1281. - {fileID: 1107710775}
  1282. - {fileID: 331626494}
  1283. - {fileID: 1529277861}
  1284. - {fileID: 1063876483}
  1285. - {fileID: 1378595737}
  1286. - {fileID: 992188098}
  1287. - {fileID: 311460911}
  1288. - {fileID: 1156901903}
  1289. - {fileID: 546800076}
  1290. - {fileID: 1054321362}
  1291. - {fileID: 1412265616}
  1292. - {fileID: 55246137}
  1293. - {fileID: 734630921}
  1294. - {fileID: 2019569169}
  1295. - {fileID: 1823152269}
  1296. - {fileID: 268987939}
  1297. - {fileID: 791457429}
  1298. - {fileID: 278188352}
  1299. - {fileID: 1181134534}
  1300. - {fileID: 154519227}
  1301. - {fileID: 378644418}
  1302. - {fileID: 1934001200}
  1303. - {fileID: 899844550}
  1304. - {fileID: 1996935680}
  1305. - {fileID: 2028498809}
  1306. - {fileID: 39792840}
  1307. - {fileID: 1513902503}
  1308. - {fileID: 433356875}
  1309. - {fileID: 2132739557}
  1310. - {fileID: 906241913}
  1311. - {fileID: 1426362350}
  1312. - {fileID: 236312175}
  1313. - {fileID: 789706365}
  1314. - {fileID: 2025746363}
  1315. - {fileID: 1326064280}
  1316. - {fileID: 1694741765}
  1317. - {fileID: 1762626580}
  1318. - {fileID: 1318409404}
  1319. - {fileID: 616662557}
  1320. m_BlendShapeWeights: []
  1321. m_RootBone: {fileID: 1554393212}
  1322. m_AABB:
  1323. m_Center: {x: -0.01371482, y: -0.0000008493662, z: 0.00061777234}
  1324. m_Extent: {x: 0.16746342, y: 0.48301, z: 0.89055586}
  1325. m_DirtyAABB: 0
  1326. --- !u!1 &478509465
  1327. GameObject:
  1328. m_ObjectHideFlags: 0
  1329. m_PrefabParentObject: {fileID: 0}
  1330. m_PrefabInternal: {fileID: 0}
  1331. serializedVersion: 5
  1332. m_Component:
  1333. - component: {fileID: 478509467}
  1334. - component: {fileID: 478509466}
  1335. m_Layer: 0
  1336. m_Name: Directional light
  1337. m_TagString: Untagged
  1338. m_Icon: {fileID: 0}
  1339. m_NavMeshLayer: 0
  1340. m_StaticEditorFlags: 0
  1341. m_IsActive: 1
  1342. --- !u!108 &478509466
  1343. Light:
  1344. m_ObjectHideFlags: 0
  1345. m_PrefabParentObject: {fileID: 0}
  1346. m_PrefabInternal: {fileID: 0}
  1347. m_GameObject: {fileID: 478509465}
  1348. m_Enabled: 1
  1349. serializedVersion: 8
  1350. m_Type: 1
  1351. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1352. m_Intensity: 1
  1353. m_Range: 10
  1354. m_SpotAngle: 30
  1355. m_CookieSize: 10
  1356. m_Shadows:
  1357. m_Type: 2
  1358. m_Resolution: -1
  1359. m_CustomResolution: -1
  1360. m_Strength: 1
  1361. m_Bias: 0.05
  1362. m_NormalBias: 0.4
  1363. m_NearPlane: 0.2
  1364. m_Cookie: {fileID: 0}
  1365. m_DrawHalo: 0
  1366. m_Flare: {fileID: 0}
  1367. m_RenderMode: 0
  1368. m_CullingMask:
  1369. serializedVersion: 2
  1370. m_Bits: 4294967295
  1371. m_Lightmapping: 1
  1372. m_AreaSize: {x: 1, y: 1}
  1373. m_BounceIntensity: 1
  1374. m_ColorTemperature: 6570
  1375. m_UseColorTemperature: 0
  1376. m_ShadowRadius: 0
  1377. m_ShadowAngle: 0
  1378. --- !u!4 &478509467
  1379. Transform:
  1380. m_ObjectHideFlags: 0
  1381. m_PrefabParentObject: {fileID: 0}
  1382. m_PrefabInternal: {fileID: 0}
  1383. m_GameObject: {fileID: 478509465}
  1384. m_LocalRotation: {x: 0.78854567, y: -0.05990483, z: -0.37021592, w: 0.4873883}
  1385. m_LocalPosition: {x: 0.788, y: 3.609, z: 0.96}
  1386. m_LocalScale: {x: 1, y: 1, z: 1}
  1387. m_Children: []
  1388. m_Father: {fileID: 0}
  1389. m_RootOrder: 4
  1390. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1391. --- !u!1 &522026902
  1392. GameObject:
  1393. m_ObjectHideFlags: 0
  1394. m_PrefabParentObject: {fileID: 121198, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1395. m_PrefabInternal: {fileID: 0}
  1396. serializedVersion: 5
  1397. m_Component:
  1398. - component: {fileID: 522026903}
  1399. m_Layer: 0
  1400. m_Name: Bip002 R Clavicle
  1401. m_TagString: Untagged
  1402. m_Icon: {fileID: 0}
  1403. m_NavMeshLayer: 0
  1404. m_StaticEditorFlags: 0
  1405. m_IsActive: 1
  1406. --- !u!4 &522026903
  1407. Transform:
  1408. m_ObjectHideFlags: 0
  1409. m_PrefabParentObject: {fileID: 420596, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1410. m_PrefabInternal: {fileID: 0}
  1411. m_GameObject: {fileID: 522026902}
  1412. m_LocalRotation: {x: 0.69003195, y: 0.10505109, z: 0.7079571, w: -0.10778195}
  1413. m_LocalPosition: {x: -0, y: 0.0001090088, z: -0.028353818}
  1414. m_LocalScale: {x: 1, y: 1, z: 1}
  1415. m_Children:
  1416. - {fileID: 2047611160}
  1417. m_Father: {fileID: 1085885242}
  1418. m_RootOrder: 2
  1419. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1420. --- !u!1 &546800075
  1421. GameObject:
  1422. m_ObjectHideFlags: 0
  1423. m_PrefabParentObject: {fileID: 116648, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1424. m_PrefabInternal: {fileID: 0}
  1425. serializedVersion: 5
  1426. m_Component:
  1427. - component: {fileID: 546800076}
  1428. m_Layer: 0
  1429. m_Name: BipDummy L Finger3
  1430. m_TagString: Untagged
  1431. m_Icon: {fileID: 0}
  1432. m_NavMeshLayer: 0
  1433. m_StaticEditorFlags: 0
  1434. m_IsActive: 1
  1435. --- !u!4 &546800076
  1436. Transform:
  1437. m_ObjectHideFlags: 0
  1438. m_PrefabParentObject: {fileID: 409354, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1439. m_PrefabInternal: {fileID: 0}
  1440. m_GameObject: {fileID: 546800075}
  1441. m_LocalRotation: {x: -0.002835928, y: 0.013507943, z: -0.17714134, w: 0.98408866}
  1442. m_LocalPosition: {x: -0.10328601, y: 0.0010223389, z: 0.020135194}
  1443. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
  1444. m_Children:
  1445. - {fileID: 268987939}
  1446. m_Father: {fileID: 311460911}
  1447. m_RootOrder: 3
  1448. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1449. --- !u!1 &609301800
  1450. GameObject:
  1451. m_ObjectHideFlags: 0
  1452. m_PrefabParentObject: {fileID: 0}
  1453. m_PrefabInternal: {fileID: 0}
  1454. serializedVersion: 5
  1455. m_Component:
  1456. - component: {fileID: 609301805}
  1457. - component: {fileID: 609301804}
  1458. - component: {fileID: 609301802}
  1459. - component: {fileID: 609301801}
  1460. m_Layer: 0
  1461. m_Name: Main Camera
  1462. m_TagString: MainCamera
  1463. m_Icon: {fileID: 0}
  1464. m_NavMeshLayer: 0
  1465. m_StaticEditorFlags: 0
  1466. m_IsActive: 1
  1467. --- !u!81 &609301801
  1468. AudioListener:
  1469. m_ObjectHideFlags: 0
  1470. m_PrefabParentObject: {fileID: 0}
  1471. m_PrefabInternal: {fileID: 0}
  1472. m_GameObject: {fileID: 609301800}
  1473. m_Enabled: 1
  1474. --- !u!124 &609301802
  1475. Behaviour:
  1476. m_ObjectHideFlags: 0
  1477. m_PrefabParentObject: {fileID: 0}
  1478. m_PrefabInternal: {fileID: 0}
  1479. m_GameObject: {fileID: 609301800}
  1480. m_Enabled: 1
  1481. --- !u!20 &609301804
  1482. Camera:
  1483. m_ObjectHideFlags: 0
  1484. m_PrefabParentObject: {fileID: 0}
  1485. m_PrefabInternal: {fileID: 0}
  1486. m_GameObject: {fileID: 609301800}
  1487. m_Enabled: 1
  1488. serializedVersion: 2
  1489. m_ClearFlags: 1
  1490. m_BackGroundColor: {r: 0.2784314, g: 0.2784314, b: 0.2784314, a: 0.019607844}
  1491. m_NormalizedViewPortRect:
  1492. serializedVersion: 2
  1493. x: 0
  1494. y: 0
  1495. width: 1
  1496. height: 1
  1497. near clip plane: 0.3
  1498. far clip plane: 1000
  1499. field of view: 60
  1500. orthographic: 0
  1501. orthographic size: 5
  1502. m_Depth: -1
  1503. m_CullingMask:
  1504. serializedVersion: 2
  1505. m_Bits: 4294967295
  1506. m_RenderingPath: -1
  1507. m_TargetTexture: {fileID: 0}
  1508. m_TargetDisplay: 0
  1509. m_TargetEye: 3
  1510. m_HDR: 0
  1511. m_AllowMSAA: 1
  1512. m_AllowDynamicResolution: 0
  1513. m_ForceIntoRT: 0
  1514. m_OcclusionCulling: 1
  1515. m_StereoConvergence: 10
  1516. m_StereoSeparation: 0.022
  1517. --- !u!4 &609301805
  1518. Transform:
  1519. m_ObjectHideFlags: 0
  1520. m_PrefabParentObject: {fileID: 0}
  1521. m_PrefabInternal: {fileID: 0}
  1522. m_GameObject: {fileID: 609301800}
  1523. m_LocalRotation: {x: 0, y: -0.9466836, z: 0, w: 0.3221649}
  1524. m_LocalPosition: {x: 1.61, y: 1, z: 2.02}
  1525. m_LocalScale: {x: 1, y: 1, z: 1}
  1526. m_Children: []
  1527. m_Father: {fileID: 0}
  1528. m_RootOrder: 2
  1529. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1530. --- !u!1 &616662556
  1531. GameObject:
  1532. m_ObjectHideFlags: 0
  1533. m_PrefabParentObject: {fileID: 160568, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1534. m_PrefabInternal: {fileID: 0}
  1535. serializedVersion: 5
  1536. m_Component:
  1537. - component: {fileID: 616662557}
  1538. m_Layer: 0
  1539. m_Name: Bip002 L Toe02
  1540. m_TagString: Untagged
  1541. m_Icon: {fileID: 0}
  1542. m_NavMeshLayer: 0
  1543. m_StaticEditorFlags: 0
  1544. m_IsActive: 1
  1545. --- !u!4 &616662557
  1546. Transform:
  1547. m_ObjectHideFlags: 0
  1548. m_PrefabParentObject: {fileID: 401166, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1549. m_PrefabInternal: {fileID: 0}
  1550. m_GameObject: {fileID: 616662556}
  1551. m_LocalRotation: {x: 0, y: -9.407548e-16, z: -0, w: 1}
  1552. m_LocalPosition: {x: -0.012151627, y: 0, z: -0.000000007629395}
  1553. m_LocalScale: {x: 1, y: 1, z: 1}
  1554. m_Children: []
  1555. m_Father: {fileID: 732188857}
  1556. m_RootOrder: 0
  1557. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1558. --- !u!1 &645331775
  1559. GameObject:
  1560. m_ObjectHideFlags: 0
  1561. m_PrefabParentObject: {fileID: 0}
  1562. m_PrefabInternal: {fileID: 0}
  1563. serializedVersion: 5
  1564. m_Component:
  1565. - component: {fileID: 645331779}
  1566. - component: {fileID: 645331778}
  1567. - component: {fileID: 645331777}
  1568. - component: {fileID: 645331776}
  1569. m_Layer: 0
  1570. m_Name: EventSystem
  1571. m_TagString: Untagged
  1572. m_Icon: {fileID: 0}
  1573. m_NavMeshLayer: 0
  1574. m_StaticEditorFlags: 0
  1575. m_IsActive: 1
  1576. --- !u!114 &645331776
  1577. MonoBehaviour:
  1578. m_ObjectHideFlags: 0
  1579. m_PrefabParentObject: {fileID: 0}
  1580. m_PrefabInternal: {fileID: 0}
  1581. m_GameObject: {fileID: 645331775}
  1582. m_Enabled: 1
  1583. m_EditorHideFlags: 0
  1584. m_Script: {fileID: 1997211142, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  1585. m_Name:
  1586. m_EditorClassIdentifier:
  1587. m_ForceModuleActive: 0
  1588. --- !u!114 &645331777
  1589. MonoBehaviour:
  1590. m_ObjectHideFlags: 0
  1591. m_PrefabParentObject: {fileID: 0}
  1592. m_PrefabInternal: {fileID: 0}
  1593. m_GameObject: {fileID: 645331775}
  1594. m_Enabled: 1
  1595. m_EditorHideFlags: 0
  1596. m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  1597. m_Name:
  1598. m_EditorClassIdentifier:
  1599. m_HorizontalAxis: Horizontal
  1600. m_VerticalAxis: Vertical
  1601. m_SubmitButton: Submit
  1602. m_CancelButton: Cancel
  1603. m_InputActionsPerSecond: 10
  1604. m_RepeatDelay: 0.5
  1605. m_ForceModuleActive: 0
  1606. --- !u!114 &645331778
  1607. MonoBehaviour:
  1608. m_ObjectHideFlags: 0
  1609. m_PrefabParentObject: {fileID: 0}
  1610. m_PrefabInternal: {fileID: 0}
  1611. m_GameObject: {fileID: 645331775}
  1612. m_Enabled: 1
  1613. m_EditorHideFlags: 0
  1614. m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  1615. m_Name:
  1616. m_EditorClassIdentifier:
  1617. m_FirstSelected: {fileID: 0}
  1618. m_sendNavigationEvents: 1
  1619. m_DragThreshold: 5
  1620. --- !u!4 &645331779
  1621. Transform:
  1622. m_ObjectHideFlags: 0
  1623. m_PrefabParentObject: {fileID: 0}
  1624. m_PrefabInternal: {fileID: 0}
  1625. m_GameObject: {fileID: 645331775}
  1626. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1627. m_LocalPosition: {x: 0, y: 0, z: 0}
  1628. m_LocalScale: {x: 1, y: 1, z: 1}
  1629. m_Children: []
  1630. m_Father: {fileID: 0}
  1631. m_RootOrder: 5
  1632. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1633. --- !u!1 &713235085
  1634. GameObject:
  1635. m_ObjectHideFlags: 0
  1636. m_PrefabParentObject: {fileID: 0}
  1637. m_PrefabInternal: {fileID: 0}
  1638. serializedVersion: 5
  1639. m_Component:
  1640. - component: {fileID: 713235089}
  1641. - component: {fileID: 713235088}
  1642. - component: {fileID: 713235087}
  1643. - component: {fileID: 713235086}
  1644. m_Layer: 0
  1645. m_Name: Cube
  1646. m_TagString: Untagged
  1647. m_Icon: {fileID: 0}
  1648. m_NavMeshLayer: 0
  1649. m_StaticEditorFlags: 0
  1650. m_IsActive: 1
  1651. --- !u!23 &713235086
  1652. MeshRenderer:
  1653. m_ObjectHideFlags: 0
  1654. m_PrefabParentObject: {fileID: 0}
  1655. m_PrefabInternal: {fileID: 0}
  1656. m_GameObject: {fileID: 713235085}
  1657. m_Enabled: 1
  1658. m_CastShadows: 1
  1659. m_ReceiveShadows: 1
  1660. m_DynamicOccludee: 1
  1661. m_MotionVectors: 1
  1662. m_LightProbeUsage: 0
  1663. m_ReflectionProbeUsage: 1
  1664. m_Materials:
  1665. - {fileID: 2100000, guid: 035a48a539312914f8762cf7100ec0cb, type: 2}
  1666. m_StaticBatchInfo:
  1667. firstSubMesh: 0
  1668. subMeshCount: 0
  1669. m_StaticBatchRoot: {fileID: 0}
  1670. m_ProbeAnchor: {fileID: 0}
  1671. m_LightProbeVolumeOverride: {fileID: 0}
  1672. m_ScaleInLightmap: 1
  1673. m_PreserveUVs: 0
  1674. m_IgnoreNormalsForChartDetection: 0
  1675. m_ImportantGI: 0
  1676. m_StitchLightmapSeams: 0
  1677. m_SelectedEditorRenderState: 3
  1678. m_MinimumChartSize: 4
  1679. m_AutoUVMaxDistance: 0.5
  1680. m_AutoUVMaxAngle: 89
  1681. m_LightmapParameters: {fileID: 0}
  1682. m_SortingLayerID: 0
  1683. m_SortingLayer: 0
  1684. m_SortingOrder: 0
  1685. --- !u!65 &713235087
  1686. BoxCollider:
  1687. m_ObjectHideFlags: 0
  1688. m_PrefabParentObject: {fileID: 0}
  1689. m_PrefabInternal: {fileID: 0}
  1690. m_GameObject: {fileID: 713235085}
  1691. m_Material: {fileID: 0}
  1692. m_IsTrigger: 0
  1693. m_Enabled: 1
  1694. serializedVersion: 2
  1695. m_Size: {x: 1, y: 1, z: 1}
  1696. m_Center: {x: 0, y: 0, z: 0}
  1697. --- !u!33 &713235088
  1698. MeshFilter:
  1699. m_ObjectHideFlags: 0
  1700. m_PrefabParentObject: {fileID: 0}
  1701. m_PrefabInternal: {fileID: 0}
  1702. m_GameObject: {fileID: 713235085}
  1703. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  1704. --- !u!4 &713235089
  1705. Transform:
  1706. m_ObjectHideFlags: 0
  1707. m_PrefabParentObject: {fileID: 0}
  1708. m_PrefabInternal: {fileID: 0}
  1709. m_GameObject: {fileID: 713235085}
  1710. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1711. m_LocalPosition: {x: 0, y: -0.5, z: 0}
  1712. m_LocalScale: {x: 10, y: 1, z: 10}
  1713. m_Children: []
  1714. m_Father: {fileID: 0}
  1715. m_RootOrder: 3
  1716. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1717. --- !u!1 &732188856
  1718. GameObject:
  1719. m_ObjectHideFlags: 0
  1720. m_PrefabParentObject: {fileID: 184914, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1721. m_PrefabInternal: {fileID: 0}
  1722. serializedVersion: 5
  1723. m_Component:
  1724. - component: {fileID: 732188857}
  1725. m_Layer: 0
  1726. m_Name: Bip002 L Toe01
  1727. m_TagString: Untagged
  1728. m_Icon: {fileID: 0}
  1729. m_NavMeshLayer: 0
  1730. m_StaticEditorFlags: 0
  1731. m_IsActive: 1
  1732. --- !u!4 &732188857
  1733. Transform:
  1734. m_ObjectHideFlags: 0
  1735. m_PrefabParentObject: {fileID: 461868, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1736. m_PrefabInternal: {fileID: 0}
  1737. m_GameObject: {fileID: 732188856}
  1738. m_LocalRotation: {x: 0, y: -9.407548e-16, z: -0, w: 1}
  1739. m_LocalPosition: {x: -0.012151627, y: 0, z: 0}
  1740. m_LocalScale: {x: 1, y: 1, z: 1}
  1741. m_Children:
  1742. - {fileID: 616662557}
  1743. m_Father: {fileID: 1529277861}
  1744. m_RootOrder: 0
  1745. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1746. --- !u!1 &734630920
  1747. GameObject:
  1748. m_ObjectHideFlags: 0
  1749. m_PrefabParentObject: {fileID: 135640, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1750. m_PrefabInternal: {fileID: 0}
  1751. serializedVersion: 5
  1752. m_Component:
  1753. - component: {fileID: 734630921}
  1754. m_Layer: 0
  1755. m_Name: BipDummy L Finger02
  1756. m_TagString: Untagged
  1757. m_Icon: {fileID: 0}
  1758. m_NavMeshLayer: 0
  1759. m_StaticEditorFlags: 0
  1760. m_IsActive: 1
  1761. --- !u!4 &734630921
  1762. Transform:
  1763. m_ObjectHideFlags: 0
  1764. m_PrefabParentObject: {fileID: 461820, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1765. m_PrefabInternal: {fileID: 0}
  1766. m_GameObject: {fileID: 734630920}
  1767. m_LocalRotation: {x: 0.032045208, y: 0.123279884, z: -0.24952908, w: 0.95995337}
  1768. m_LocalPosition: {x: -0.032908816, y: -0.000000007629395, z: 0.00000003051758}
  1769. m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1}
  1770. m_Children: []
  1771. m_Father: {fileID: 1412265616}
  1772. m_RootOrder: 0
  1773. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1774. --- !u!1 &739463181
  1775. GameObject:
  1776. m_ObjectHideFlags: 0
  1777. m_PrefabParentObject: {fileID: 164322, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1778. m_PrefabInternal: {fileID: 0}
  1779. serializedVersion: 5
  1780. m_Component:
  1781. - component: {fileID: 739463182}
  1782. - component: {fileID: 739463185}
  1783. - component: {fileID: 739463184}
  1784. - component: {fileID: 739463183}
  1785. m_Layer: 0
  1786. m_Name: Bip002 R Thigh
  1787. m_TagString: Untagged
  1788. m_Icon: {fileID: 0}
  1789. m_NavMeshLayer: 0
  1790. m_StaticEditorFlags: 0
  1791. m_IsActive: 1
  1792. --- !u!4 &739463182
  1793. Transform:
  1794. m_ObjectHideFlags: 0
  1795. m_PrefabParentObject: {fileID: 437988, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1796. m_PrefabInternal: {fileID: 0}
  1797. m_GameObject: {fileID: 739463181}
  1798. m_LocalRotation: {x: -0.012553991, y: 0.99988455, z: -0.0005164296, w: -0.008549793}
  1799. m_LocalPosition: {x: 0.09312867, y: -0.0024269181, z: -0.096502244}
  1800. m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 1.0000001}
  1801. m_Children:
  1802. - {fileID: 1063876483}
  1803. m_Father: {fileID: 25958829}
  1804. m_RootOrder: 1
  1805. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1806. --- !u!144 &739463183
  1807. CharacterJoint:
  1808. m_ObjectHideFlags: 0
  1809. m_PrefabParentObject: {fileID: 14447946, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  1810. type: 2}
  1811. m_PrefabInternal: {fileID: 0}
  1812. m_GameObject: {fileID: 739463181}
  1813. m_ConnectedBody: {fileID: 1417853826}
  1814. m_Anchor: {x: 0, y: 0, z: 0}
  1815. m_Axis: {x: 0, y: 0, z: 1}
  1816. m_AutoConfigureConnectedAnchor: 1
  1817. m_ConnectedAnchor: {x: -0.00000011920929, y: -0.00000009685755, z: -0.096502244}
  1818. serializedVersion: 2
  1819. m_SwingAxis: {x: 0, y: 1, z: 0}
  1820. m_TwistLimitSpring:
  1821. spring: 0
  1822. damper: 0
  1823. m_LowTwistLimit:
  1824. limit: -39.304832
  1825. bounciness: 0
  1826. contactDistance: 0
  1827. m_HighTwistLimit:
  1828. limit: 129.59645
  1829. bounciness: 0
  1830. contactDistance: 0
  1831. m_SwingLimitSpring:
  1832. spring: 0
  1833. damper: 0
  1834. m_Swing1Limit:
  1835. limit: 30
  1836. bounciness: 0
  1837. contactDistance: 0
  1838. m_Swing2Limit:
  1839. limit: 25
  1840. bounciness: 0
  1841. contactDistance: 0
  1842. m_EnableProjection: 0
  1843. m_ProjectionDistance: 0.1
  1844. m_ProjectionAngle: 180
  1845. m_BreakForce: Infinity
  1846. m_BreakTorque: Infinity
  1847. m_EnableCollision: 0
  1848. m_EnablePreprocessing: 1
  1849. m_MassScale: 1
  1850. m_ConnectedMassScale: 1
  1851. --- !u!54 &739463184
  1852. Rigidbody:
  1853. m_ObjectHideFlags: 0
  1854. m_PrefabParentObject: {fileID: 5477506, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  1855. type: 2}
  1856. m_PrefabInternal: {fileID: 0}
  1857. m_GameObject: {fileID: 739463181}
  1858. serializedVersion: 2
  1859. m_Mass: 1.875
  1860. m_Drag: 0
  1861. m_AngularDrag: 0.05
  1862. m_UseGravity: 1
  1863. m_IsKinematic: 1
  1864. m_Interpolate: 0
  1865. m_Constraints: 0
  1866. m_CollisionDetection: 0
  1867. --- !u!136 &739463185
  1868. CapsuleCollider:
  1869. m_ObjectHideFlags: 0
  1870. m_PrefabParentObject: {fileID: 13676408, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  1871. type: 2}
  1872. m_PrefabInternal: {fileID: 0}
  1873. m_GameObject: {fileID: 739463181}
  1874. m_Material: {fileID: 0}
  1875. m_IsTrigger: 0
  1876. m_Enabled: 1
  1877. m_Radius: 0.1
  1878. m_Height: 0.42230684
  1879. m_Direction: 0
  1880. m_Center: {x: -0.21115342, y: 0, z: 0}
  1881. --- !u!1 &741672766
  1882. GameObject:
  1883. m_ObjectHideFlags: 0
  1884. m_PrefabParentObject: {fileID: 143388, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1885. m_PrefabInternal: {fileID: 0}
  1886. serializedVersion: 5
  1887. m_Component:
  1888. - component: {fileID: 741672767}
  1889. m_Layer: 0
  1890. m_Name: Bip002 Spine2
  1891. m_TagString: Untagged
  1892. m_Icon: {fileID: 0}
  1893. m_NavMeshLayer: 0
  1894. m_StaticEditorFlags: 0
  1895. m_IsActive: 1
  1896. --- !u!4 &741672767
  1897. Transform:
  1898. m_ObjectHideFlags: 0
  1899. m_PrefabParentObject: {fileID: 422786, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1900. m_PrefabInternal: {fileID: 0}
  1901. m_GameObject: {fileID: 741672766}
  1902. m_LocalRotation: {x: -8.096637e-15, y: 0.000000010320556, z: -0.0037209948, w: 0.9999931}
  1903. m_LocalPosition: {x: -0.10531482, y: -0.00008385659, z: -2.3258327e-10}
  1904. m_LocalScale: {x: 1, y: 1, z: 1}
  1905. m_Children:
  1906. - {fileID: 1858565651}
  1907. m_Father: {fileID: 1892673806}
  1908. m_RootOrder: 0
  1909. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1910. --- !u!1 &789706364
  1911. GameObject:
  1912. m_ObjectHideFlags: 0
  1913. m_PrefabParentObject: {fileID: 108938, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1914. m_PrefabInternal: {fileID: 0}
  1915. serializedVersion: 5
  1916. m_Component:
  1917. - component: {fileID: 789706365}
  1918. m_Layer: 0
  1919. m_Name: BipDummy R Finger32
  1920. m_TagString: Untagged
  1921. m_Icon: {fileID: 0}
  1922. m_NavMeshLayer: 0
  1923. m_StaticEditorFlags: 0
  1924. m_IsActive: 1
  1925. --- !u!4 &789706365
  1926. Transform:
  1927. m_ObjectHideFlags: 0
  1928. m_PrefabParentObject: {fileID: 433164, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1929. m_PrefabInternal: {fileID: 0}
  1930. m_GameObject: {fileID: 789706364}
  1931. m_LocalRotation: {x: 0.000000014849564, y: -0.0000000022370685, z: -0.27046826,
  1932. w: 0.9627289}
  1933. m_LocalPosition: {x: -0.02278583, y: 0, z: -0.00000001525879}
  1934. m_LocalScale: {x: 1, y: 1, z: 1}
  1935. m_Children: []
  1936. m_Father: {fileID: 236312175}
  1937. m_RootOrder: 0
  1938. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1939. --- !u!1 &791457428
  1940. GameObject:
  1941. m_ObjectHideFlags: 0
  1942. m_PrefabParentObject: {fileID: 198786, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1943. m_PrefabInternal: {fileID: 0}
  1944. serializedVersion: 5
  1945. m_Component:
  1946. - component: {fileID: 791457429}
  1947. m_Layer: 0
  1948. m_Name: BipDummy L Finger32
  1949. m_TagString: Untagged
  1950. m_Icon: {fileID: 0}
  1951. m_NavMeshLayer: 0
  1952. m_StaticEditorFlags: 0
  1953. m_IsActive: 1
  1954. --- !u!4 &791457429
  1955. Transform:
  1956. m_ObjectHideFlags: 0
  1957. m_PrefabParentObject: {fileID: 476740, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1958. m_PrefabInternal: {fileID: 0}
  1959. m_GameObject: {fileID: 791457428}
  1960. m_LocalRotation: {x: -0.000000023906223, y: -0.000000025557926, z: -0.30713028,
  1961. w: 0.9516675}
  1962. m_LocalPosition: {x: -0.02278595, y: -0.00000001525879, z: 0}
  1963. m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994}
  1964. m_Children: []
  1965. m_Father: {fileID: 268987939}
  1966. m_RootOrder: 0
  1967. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1968. --- !u!1 &899844549
  1969. GameObject:
  1970. m_ObjectHideFlags: 0
  1971. m_PrefabParentObject: {fileID: 132090, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1972. m_PrefabInternal: {fileID: 0}
  1973. serializedVersion: 5
  1974. m_Component:
  1975. - component: {fileID: 899844550}
  1976. m_Layer: 0
  1977. m_Name: Bip002 R Hand
  1978. m_TagString: Untagged
  1979. m_Icon: {fileID: 0}
  1980. m_NavMeshLayer: 0
  1981. m_StaticEditorFlags: 0
  1982. m_IsActive: 1
  1983. --- !u!4 &899844550
  1984. Transform:
  1985. m_ObjectHideFlags: 0
  1986. m_PrefabParentObject: {fileID: 470068, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  1987. m_PrefabInternal: {fileID: 0}
  1988. m_GameObject: {fileID: 899844549}
  1989. m_LocalRotation: {x: 0.72127545, y: 0.08105711, z: 0.07682161, w: 0.68358606}
  1990. m_LocalPosition: {x: -0.2430326, y: 0.00000003051758, z: -0.00000006103516}
  1991. m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994}
  1992. m_Children:
  1993. - {fileID: 1934001200}
  1994. - {fileID: 39792840}
  1995. - {fileID: 1996935680}
  1996. - {fileID: 2028498809}
  1997. - {fileID: 433356875}
  1998. m_Father: {fileID: 1738428775}
  1999. m_RootOrder: 0
  2000. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2001. --- !u!1 &906241912
  2002. GameObject:
  2003. m_ObjectHideFlags: 0
  2004. m_PrefabParentObject: {fileID: 104360, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2005. m_PrefabInternal: {fileID: 0}
  2006. serializedVersion: 5
  2007. m_Component:
  2008. - component: {fileID: 906241913}
  2009. m_Layer: 0
  2010. m_Name: BipDummy R Finger21
  2011. m_TagString: Untagged
  2012. m_Icon: {fileID: 0}
  2013. m_NavMeshLayer: 0
  2014. m_StaticEditorFlags: 0
  2015. m_IsActive: 1
  2016. --- !u!4 &906241913
  2017. Transform:
  2018. m_ObjectHideFlags: 0
  2019. m_PrefabParentObject: {fileID: 476550, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2020. m_PrefabInternal: {fileID: 0}
  2021. m_GameObject: {fileID: 906241912}
  2022. m_LocalRotation: {x: 0.000000035312798, y: 0.0000000014167345, z: -0.2779434, w: 0.96059746}
  2023. m_LocalPosition: {x: -0.044976626, y: -0.00000001525879, z: 0}
  2024. m_LocalScale: {x: 1, y: 1, z: 1}
  2025. m_Children:
  2026. - {fileID: 1426362350}
  2027. m_Father: {fileID: 1996935680}
  2028. m_RootOrder: 0
  2029. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2030. --- !u!1 &944893522
  2031. GameObject:
  2032. m_ObjectHideFlags: 0
  2033. m_PrefabParentObject: {fileID: 127560, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2034. m_PrefabInternal: {fileID: 0}
  2035. serializedVersion: 5
  2036. m_Component:
  2037. - component: {fileID: 944893523}
  2038. - component: {fileID: 944893526}
  2039. - component: {fileID: 944893525}
  2040. - component: {fileID: 944893524}
  2041. m_Layer: 0
  2042. m_Name: Bip002 L Calf
  2043. m_TagString: Untagged
  2044. m_Icon: {fileID: 0}
  2045. m_NavMeshLayer: 0
  2046. m_StaticEditorFlags: 0
  2047. m_IsActive: 1
  2048. --- !u!4 &944893523
  2049. Transform:
  2050. m_ObjectHideFlags: 0
  2051. m_PrefabParentObject: {fileID: 488204, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2052. m_PrefabInternal: {fileID: 0}
  2053. m_GameObject: {fileID: 944893522}
  2054. m_LocalRotation: {x: -3.5029177e-10, y: 8.9379376e-10, z: 0.12818542, w: 0.99175024}
  2055. m_LocalPosition: {x: -0.42230678, y: 0, z: 0}
  2056. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  2057. m_Children:
  2058. - {fileID: 1107710775}
  2059. m_Father: {fileID: 61632316}
  2060. m_RootOrder: 0
  2061. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2062. --- !u!144 &944893524
  2063. CharacterJoint:
  2064. m_ObjectHideFlags: 0
  2065. m_PrefabParentObject: {fileID: 14496686, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2066. type: 2}
  2067. m_PrefabInternal: {fileID: 0}
  2068. m_GameObject: {fileID: 944893522}
  2069. m_ConnectedBody: {fileID: 61632318}
  2070. m_Anchor: {x: 0, y: 0, z: 0}
  2071. m_Axis: {x: 0, y: 0, z: 1}
  2072. m_AutoConfigureConnectedAnchor: 1
  2073. m_ConnectedAnchor: {x: -0.42230684, y: 0.0000000017994353, z: 0.00000001862645}
  2074. serializedVersion: 2
  2075. m_SwingAxis: {x: 0, y: 1, z: 0}
  2076. m_TwistLimitSpring:
  2077. spring: 0
  2078. damper: 0
  2079. m_LowTwistLimit:
  2080. limit: -129.23193
  2081. bounciness: 0
  2082. contactDistance: 0
  2083. m_HighTwistLimit:
  2084. limit: 0
  2085. bounciness: 0
  2086. contactDistance: 0
  2087. m_SwingLimitSpring:
  2088. spring: 0
  2089. damper: 0
  2090. m_Swing1Limit:
  2091. limit: 7.1272836
  2092. bounciness: 0
  2093. contactDistance: 0
  2094. m_Swing2Limit:
  2095. limit: 15.752324
  2096. bounciness: 0
  2097. contactDistance: 0
  2098. m_EnableProjection: 0
  2099. m_ProjectionDistance: 0.1
  2100. m_ProjectionAngle: 180
  2101. m_BreakForce: Infinity
  2102. m_BreakTorque: Infinity
  2103. m_EnableCollision: 0
  2104. m_EnablePreprocessing: 1
  2105. m_MassScale: 1
  2106. m_ConnectedMassScale: 1
  2107. --- !u!54 &944893525
  2108. Rigidbody:
  2109. m_ObjectHideFlags: 0
  2110. m_PrefabParentObject: {fileID: 5409458, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2111. type: 2}
  2112. m_PrefabInternal: {fileID: 0}
  2113. m_GameObject: {fileID: 944893522}
  2114. serializedVersion: 2
  2115. m_Mass: 1.875
  2116. m_Drag: 0
  2117. m_AngularDrag: 0.05
  2118. m_UseGravity: 1
  2119. m_IsKinematic: 1
  2120. m_Interpolate: 0
  2121. m_Constraints: 0
  2122. m_CollisionDetection: 0
  2123. --- !u!136 &944893526
  2124. CapsuleCollider:
  2125. m_ObjectHideFlags: 0
  2126. m_PrefabParentObject: {fileID: 13686138, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2127. type: 2}
  2128. m_PrefabInternal: {fileID: 0}
  2129. m_GameObject: {fileID: 944893522}
  2130. m_Material: {fileID: 0}
  2131. m_IsTrigger: 0
  2132. m_Enabled: 1
  2133. m_Radius: 0.08
  2134. m_Height: 0.44984567
  2135. m_Direction: 0
  2136. m_Center: {x: -0.22492284, y: 0, z: 0}
  2137. --- !u!1 &992188097
  2138. GameObject:
  2139. m_ObjectHideFlags: 0
  2140. m_PrefabParentObject: {fileID: 143620, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2141. m_PrefabInternal: {fileID: 0}
  2142. serializedVersion: 5
  2143. m_Component:
  2144. - component: {fileID: 992188098}
  2145. m_Layer: 0
  2146. m_Name: Bip002 L Finger0
  2147. m_TagString: Untagged
  2148. m_Icon: {fileID: 0}
  2149. m_NavMeshLayer: 0
  2150. m_StaticEditorFlags: 0
  2151. m_IsActive: 1
  2152. --- !u!4 &992188098
  2153. Transform:
  2154. m_ObjectHideFlags: 0
  2155. m_PrefabParentObject: {fileID: 485376, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2156. m_PrefabInternal: {fileID: 0}
  2157. m_GameObject: {fileID: 992188097}
  2158. m_LocalRotation: {x: 0.40023914, y: -0.27571434, z: 0.056018174, w: 0.87215376}
  2159. m_LocalPosition: {x: -0.042638857, y: 0.010434205, z: -0.028118744}
  2160. m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999999}
  2161. m_Children:
  2162. - {fileID: 1412265616}
  2163. m_Father: {fileID: 311460911}
  2164. m_RootOrder: 0
  2165. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2166. --- !u!1 &1054321361
  2167. GameObject:
  2168. m_ObjectHideFlags: 0
  2169. m_PrefabParentObject: {fileID: 140352, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2170. m_PrefabInternal: {fileID: 0}
  2171. serializedVersion: 5
  2172. m_Component:
  2173. - component: {fileID: 1054321362}
  2174. m_Layer: 0
  2175. m_Name: BipDummy L Finger1
  2176. m_TagString: Untagged
  2177. m_Icon: {fileID: 0}
  2178. m_NavMeshLayer: 0
  2179. m_StaticEditorFlags: 0
  2180. m_IsActive: 1
  2181. --- !u!4 &1054321362
  2182. Transform:
  2183. m_ObjectHideFlags: 0
  2184. m_PrefabParentObject: {fileID: 459286, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2185. m_PrefabInternal: {fileID: 0}
  2186. m_GameObject: {fileID: 1054321361}
  2187. m_LocalRotation: {x: -0.00039683317, y: -0.00003227424, z: -0.081061095, w: 0.99670905}
  2188. m_LocalPosition: {x: -0.1003982, y: -0.003286377, z: -0.022277009}
  2189. m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994}
  2190. m_Children:
  2191. - {fileID: 278188352}
  2192. m_Father: {fileID: 311460911}
  2193. m_RootOrder: 1
  2194. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2195. --- !u!1 &1063876482
  2196. GameObject:
  2197. m_ObjectHideFlags: 0
  2198. m_PrefabParentObject: {fileID: 146188, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2199. m_PrefabInternal: {fileID: 0}
  2200. serializedVersion: 5
  2201. m_Component:
  2202. - component: {fileID: 1063876483}
  2203. - component: {fileID: 1063876486}
  2204. - component: {fileID: 1063876485}
  2205. - component: {fileID: 1063876484}
  2206. m_Layer: 0
  2207. m_Name: Bip002 R Calf
  2208. m_TagString: Untagged
  2209. m_Icon: {fileID: 0}
  2210. m_NavMeshLayer: 0
  2211. m_StaticEditorFlags: 0
  2212. m_IsActive: 1
  2213. --- !u!4 &1063876483
  2214. Transform:
  2215. m_ObjectHideFlags: 0
  2216. m_PrefabParentObject: {fileID: 491328, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2217. m_PrefabInternal: {fileID: 0}
  2218. m_GameObject: {fileID: 1063876482}
  2219. m_LocalRotation: {x: -2.2306051e-10, y: -0.000000001906969, z: 0.12818292, w: 0.99175054}
  2220. m_LocalPosition: {x: -0.42230672, y: 0, z: 0}
  2221. m_LocalScale: {x: 1, y: 1, z: 0.99999994}
  2222. m_Children:
  2223. - {fileID: 331626494}
  2224. m_Father: {fileID: 739463182}
  2225. m_RootOrder: 0
  2226. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2227. --- !u!144 &1063876484
  2228. CharacterJoint:
  2229. m_ObjectHideFlags: 0
  2230. m_PrefabParentObject: {fileID: 14483952, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2231. type: 2}
  2232. m_PrefabInternal: {fileID: 0}
  2233. m_GameObject: {fileID: 1063876482}
  2234. m_ConnectedBody: {fileID: 739463184}
  2235. m_Anchor: {x: 0, y: 0, z: 0}
  2236. m_Axis: {x: 0, y: 0, z: 1}
  2237. m_AutoConfigureConnectedAnchor: 1
  2238. m_ConnectedAnchor: {x: -0.42230675, y: -0.0000000054037623, z: 0.000000035390254}
  2239. serializedVersion: 2
  2240. m_SwingAxis: {x: 0, y: 1, z: 0}
  2241. m_TwistLimitSpring:
  2242. spring: 0
  2243. damper: 0
  2244. m_LowTwistLimit:
  2245. limit: -123.423
  2246. bounciness: 0
  2247. contactDistance: 0
  2248. m_HighTwistLimit:
  2249. limit: 0
  2250. bounciness: 0
  2251. contactDistance: 0
  2252. m_SwingLimitSpring:
  2253. spring: 0
  2254. damper: 0
  2255. m_Swing1Limit:
  2256. limit: 7.0085707
  2257. bounciness: 0
  2258. contactDistance: 0
  2259. m_Swing2Limit:
  2260. limit: 13.714468
  2261. bounciness: 0
  2262. contactDistance: 0
  2263. m_EnableProjection: 0
  2264. m_ProjectionDistance: 0.1
  2265. m_ProjectionAngle: 180
  2266. m_BreakForce: Infinity
  2267. m_BreakTorque: Infinity
  2268. m_EnableCollision: 0
  2269. m_EnablePreprocessing: 1
  2270. m_MassScale: 1
  2271. m_ConnectedMassScale: 1
  2272. --- !u!54 &1063876485
  2273. Rigidbody:
  2274. m_ObjectHideFlags: 0
  2275. m_PrefabParentObject: {fileID: 5456296, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2276. type: 2}
  2277. m_PrefabInternal: {fileID: 0}
  2278. m_GameObject: {fileID: 1063876482}
  2279. serializedVersion: 2
  2280. m_Mass: 1.875
  2281. m_Drag: 0
  2282. m_AngularDrag: 0.05
  2283. m_UseGravity: 1
  2284. m_IsKinematic: 1
  2285. m_Interpolate: 0
  2286. m_Constraints: 0
  2287. m_CollisionDetection: 0
  2288. --- !u!136 &1063876486
  2289. CapsuleCollider:
  2290. m_ObjectHideFlags: 0
  2291. m_PrefabParentObject: {fileID: 13639080, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2292. type: 2}
  2293. m_PrefabInternal: {fileID: 0}
  2294. m_GameObject: {fileID: 1063876482}
  2295. m_Material: {fileID: 0}
  2296. m_IsTrigger: 0
  2297. m_Enabled: 1
  2298. m_Radius: 0.08
  2299. m_Height: 0.4498458
  2300. m_Direction: 0
  2301. m_Center: {x: -0.2249229, y: 0, z: 0}
  2302. --- !u!1 &1085885241
  2303. GameObject:
  2304. m_ObjectHideFlags: 0
  2305. m_PrefabParentObject: {fileID: 173956, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2306. m_PrefabInternal: {fileID: 0}
  2307. serializedVersion: 5
  2308. m_Component:
  2309. - component: {fileID: 1085885242}
  2310. m_Layer: 0
  2311. m_Name: Bip002 Neck
  2312. m_TagString: Untagged
  2313. m_Icon: {fileID: 0}
  2314. m_NavMeshLayer: 0
  2315. m_StaticEditorFlags: 0
  2316. m_IsActive: 1
  2317. --- !u!4 &1085885242
  2318. Transform:
  2319. m_ObjectHideFlags: 0
  2320. m_PrefabParentObject: {fileID: 488506, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2321. m_PrefabInternal: {fileID: 0}
  2322. m_GameObject: {fileID: 1085885241}
  2323. m_LocalRotation: {x: 4.448862e-14, y: 0.0000004163574, z: -0.15011443, w: 0.9886686}
  2324. m_LocalPosition: {x: -0.10534644, y: -0.00010401631, z: -2.884772e-10}
  2325. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  2326. m_Children:
  2327. - {fileID: 1359369973}
  2328. - {fileID: 63618767}
  2329. - {fileID: 522026903}
  2330. m_Father: {fileID: 1858565651}
  2331. m_RootOrder: 0
  2332. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2333. --- !u!1 &1107710774
  2334. GameObject:
  2335. m_ObjectHideFlags: 0
  2336. m_PrefabParentObject: {fileID: 164382, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2337. m_PrefabInternal: {fileID: 0}
  2338. serializedVersion: 5
  2339. m_Component:
  2340. - component: {fileID: 1107710775}
  2341. m_Layer: 0
  2342. m_Name: Bip002 L Foot
  2343. m_TagString: Untagged
  2344. m_Icon: {fileID: 0}
  2345. m_NavMeshLayer: 0
  2346. m_StaticEditorFlags: 0
  2347. m_IsActive: 1
  2348. --- !u!4 &1107710775
  2349. Transform:
  2350. m_ObjectHideFlags: 0
  2351. m_PrefabParentObject: {fileID: 472690, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2352. m_PrefabInternal: {fileID: 0}
  2353. m_GameObject: {fileID: 1107710774}
  2354. m_LocalRotation: {x: -0.04586778, y: 0.013275927, z: -0.101802245, w: 0.993658}
  2355. m_LocalPosition: {x: -0.41098914, y: -0.000000007629395, z: 0}
  2356. m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994}
  2357. m_Children:
  2358. - {fileID: 1529277861}
  2359. m_Father: {fileID: 944893523}
  2360. m_RootOrder: 0
  2361. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2362. --- !u!1 &1156901902
  2363. GameObject:
  2364. m_ObjectHideFlags: 0
  2365. m_PrefabParentObject: {fileID: 125286, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2366. m_PrefabInternal: {fileID: 0}
  2367. serializedVersion: 5
  2368. m_Component:
  2369. - component: {fileID: 1156901903}
  2370. m_Layer: 0
  2371. m_Name: BipDummy L Finger2
  2372. m_TagString: Untagged
  2373. m_Icon: {fileID: 0}
  2374. m_NavMeshLayer: 0
  2375. m_StaticEditorFlags: 0
  2376. m_IsActive: 1
  2377. --- !u!4 &1156901903
  2378. Transform:
  2379. m_ObjectHideFlags: 0
  2380. m_PrefabParentObject: {fileID: 474736, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2381. m_PrefabInternal: {fileID: 0}
  2382. m_GameObject: {fileID: 1156901902}
  2383. m_LocalRotation: {x: -0.001918456, y: 0.023514757, z: -0.14601779, w: 0.9890006}
  2384. m_LocalPosition: {x: -0.10838886, y: -0.005206055, z: -0.00035929872}
  2385. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
  2386. m_Children:
  2387. - {fileID: 2019569169}
  2388. m_Father: {fileID: 311460911}
  2389. m_RootOrder: 2
  2390. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2391. --- !u!1 &1181134533
  2392. GameObject:
  2393. m_ObjectHideFlags: 0
  2394. m_PrefabParentObject: {fileID: 160110, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2395. m_PrefabInternal: {fileID: 0}
  2396. serializedVersion: 5
  2397. m_Component:
  2398. - component: {fileID: 1181134534}
  2399. m_Layer: 0
  2400. m_Name: BipDummy L Finger12
  2401. m_TagString: Untagged
  2402. m_Icon: {fileID: 0}
  2403. m_NavMeshLayer: 0
  2404. m_StaticEditorFlags: 0
  2405. m_IsActive: 1
  2406. --- !u!4 &1181134534
  2407. Transform:
  2408. m_ObjectHideFlags: 0
  2409. m_PrefabParentObject: {fileID: 410276, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2410. m_PrefabInternal: {fileID: 0}
  2411. m_GameObject: {fileID: 1181134533}
  2412. m_LocalRotation: {x: 0.000000039817607, y: -0.000000012218085, z: -0.117604196,
  2413. w: 0.9930606}
  2414. m_LocalPosition: {x: -0.01876288, y: 0.00000003051758, z: 0}
  2415. m_LocalScale: {x: 1, y: 1.0000001, z: 1}
  2416. m_Children: []
  2417. m_Father: {fileID: 278188352}
  2418. m_RootOrder: 0
  2419. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2420. --- !u!1 &1318409403
  2421. GameObject:
  2422. m_ObjectHideFlags: 0
  2423. m_PrefabParentObject: {fileID: 192052, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2424. m_PrefabInternal: {fileID: 0}
  2425. serializedVersion: 5
  2426. m_Component:
  2427. - component: {fileID: 1318409404}
  2428. m_Layer: 0
  2429. m_Name: Bip002 R Toe02
  2430. m_TagString: Untagged
  2431. m_Icon: {fileID: 0}
  2432. m_NavMeshLayer: 0
  2433. m_StaticEditorFlags: 0
  2434. m_IsActive: 1
  2435. --- !u!4 &1318409404
  2436. Transform:
  2437. m_ObjectHideFlags: 0
  2438. m_PrefabParentObject: {fileID: 449328, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2439. m_PrefabInternal: {fileID: 0}
  2440. m_GameObject: {fileID: 1318409403}
  2441. m_LocalRotation: {x: 0, y: -1.0418551e-15, z: -0, w: 1}
  2442. m_LocalPosition: {x: -0.012151635, y: 0, z: 0}
  2443. m_LocalScale: {x: 1, y: 1, z: 1}
  2444. m_Children: []
  2445. m_Father: {fileID: 1874897147}
  2446. m_RootOrder: 0
  2447. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2448. --- !u!1 &1326064279
  2449. GameObject:
  2450. m_ObjectHideFlags: 0
  2451. m_PrefabParentObject: {fileID: 109388, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2452. m_PrefabInternal: {fileID: 0}
  2453. serializedVersion: 5
  2454. m_Component:
  2455. - component: {fileID: 1326064280}
  2456. m_Layer: 0
  2457. m_Name: BipDummy R Finger12
  2458. m_TagString: Untagged
  2459. m_Icon: {fileID: 0}
  2460. m_NavMeshLayer: 0
  2461. m_StaticEditorFlags: 0
  2462. m_IsActive: 1
  2463. --- !u!4 &1326064280
  2464. Transform:
  2465. m_ObjectHideFlags: 0
  2466. m_PrefabParentObject: {fileID: 405642, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2467. m_PrefabInternal: {fileID: 0}
  2468. m_GameObject: {fileID: 1326064279}
  2469. m_LocalRotation: {x: 0.0000000045875606, y: 0.000000021875893, z: -0.20524399, w: 0.97871083}
  2470. m_LocalPosition: {x: -0.01876288, y: -0.000000045776368, z: 0.00000001525879}
  2471. m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994}
  2472. m_Children: []
  2473. m_Father: {fileID: 2025746363}
  2474. m_RootOrder: 0
  2475. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2476. --- !u!1 &1359369972
  2477. GameObject:
  2478. m_ObjectHideFlags: 0
  2479. m_PrefabParentObject: {fileID: 152354, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2480. m_PrefabInternal: {fileID: 0}
  2481. serializedVersion: 5
  2482. m_Component:
  2483. - component: {fileID: 1359369973}
  2484. - component: {fileID: 1359369976}
  2485. - component: {fileID: 1359369975}
  2486. - component: {fileID: 1359369974}
  2487. m_Layer: 0
  2488. m_Name: Bip002 Head
  2489. m_TagString: Untagged
  2490. m_Icon: {fileID: 0}
  2491. m_NavMeshLayer: 0
  2492. m_StaticEditorFlags: 0
  2493. m_IsActive: 1
  2494. --- !u!4 &1359369973
  2495. Transform:
  2496. m_ObjectHideFlags: 0
  2497. m_PrefabParentObject: {fileID: 408232, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2498. m_PrefabInternal: {fileID: 0}
  2499. m_GameObject: {fileID: 1359369972}
  2500. m_LocalRotation: {x: 4.7719963e-11, y: -0.00000040002516, z: 0.14414449, w: 0.98955667}
  2501. m_LocalPosition: {x: -0.1367727, y: 0, z: 1.1641533e-13}
  2502. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  2503. m_Children: []
  2504. m_Father: {fileID: 1085885242}
  2505. m_RootOrder: 0
  2506. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2507. --- !u!144 &1359369974
  2508. CharacterJoint:
  2509. m_ObjectHideFlags: 0
  2510. m_PrefabParentObject: {fileID: 14440814, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2511. type: 2}
  2512. m_PrefabInternal: {fileID: 0}
  2513. m_GameObject: {fileID: 1359369972}
  2514. m_ConnectedBody: {fileID: 1892673807}
  2515. m_Anchor: {x: 0, y: 0, z: 0}
  2516. m_Axis: {x: 0, y: 0, z: -1}
  2517. m_AutoConfigureConnectedAnchor: 1
  2518. m_ConnectedAnchor: {x: -0.44595355, y: 0.04461719, z: 0.0000001038947}
  2519. serializedVersion: 2
  2520. m_SwingAxis: {x: 0, y: 1, z: 0}
  2521. m_TwistLimitSpring:
  2522. spring: 0
  2523. damper: 0
  2524. m_LowTwistLimit:
  2525. limit: -40
  2526. bounciness: 0
  2527. contactDistance: 0
  2528. m_HighTwistLimit:
  2529. limit: 25
  2530. bounciness: 0
  2531. contactDistance: 0
  2532. m_SwingLimitSpring:
  2533. spring: 0
  2534. damper: 0
  2535. m_Swing1Limit:
  2536. limit: 25
  2537. bounciness: 0
  2538. contactDistance: 0
  2539. m_Swing2Limit:
  2540. limit: 0
  2541. bounciness: 0
  2542. contactDistance: 0
  2543. m_EnableProjection: 0
  2544. m_ProjectionDistance: 0.1
  2545. m_ProjectionAngle: 180
  2546. m_BreakForce: Infinity
  2547. m_BreakTorque: Infinity
  2548. m_EnableCollision: 0
  2549. m_EnablePreprocessing: 1
  2550. m_MassScale: 1
  2551. m_ConnectedMassScale: 1
  2552. --- !u!54 &1359369975
  2553. Rigidbody:
  2554. m_ObjectHideFlags: 0
  2555. m_PrefabParentObject: {fileID: 5450314, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2556. type: 2}
  2557. m_PrefabInternal: {fileID: 0}
  2558. m_GameObject: {fileID: 1359369972}
  2559. serializedVersion: 2
  2560. m_Mass: 1.25
  2561. m_Drag: 0
  2562. m_AngularDrag: 0.05
  2563. m_UseGravity: 1
  2564. m_IsKinematic: 1
  2565. m_Interpolate: 0
  2566. m_Constraints: 0
  2567. m_CollisionDetection: 0
  2568. --- !u!135 &1359369976
  2569. SphereCollider:
  2570. m_ObjectHideFlags: 0
  2571. m_PrefabParentObject: {fileID: 13570018, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2572. type: 2}
  2573. m_PrefabInternal: {fileID: 0}
  2574. m_GameObject: {fileID: 1359369972}
  2575. m_Material: {fileID: 0}
  2576. m_IsTrigger: 0
  2577. m_Enabled: 1
  2578. serializedVersion: 2
  2579. m_Radius: 0.15
  2580. m_Center: {x: -0.10399482, y: 0, z: 0}
  2581. --- !u!1 &1378595736
  2582. GameObject:
  2583. m_ObjectHideFlags: 0
  2584. m_PrefabParentObject: {fileID: 128120, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2585. m_PrefabInternal: {fileID: 0}
  2586. serializedVersion: 5
  2587. m_Component:
  2588. - component: {fileID: 1378595737}
  2589. m_Layer: 0
  2590. m_Name: Bip002 R Toe0
  2591. m_TagString: Untagged
  2592. m_Icon: {fileID: 0}
  2593. m_NavMeshLayer: 0
  2594. m_StaticEditorFlags: 0
  2595. m_IsActive: 1
  2596. --- !u!4 &1378595737
  2597. Transform:
  2598. m_ObjectHideFlags: 0
  2599. m_PrefabParentObject: {fileID: 430200, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2600. m_PrefabInternal: {fileID: 0}
  2601. m_GameObject: {fileID: 1378595736}
  2602. m_LocalRotation: {x: -0.000000015454312, y: 0.000000015454312, z: -0.7071068, w: 0.7071068}
  2603. m_LocalPosition: {x: -0.06716837, y: 0.13374838, z: 0}
  2604. m_LocalScale: {x: 1, y: 1, z: 1}
  2605. m_Children:
  2606. - {fileID: 1874897147}
  2607. m_Father: {fileID: 331626494}
  2608. m_RootOrder: 0
  2609. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2610. --- !u!1 &1412265615
  2611. GameObject:
  2612. m_ObjectHideFlags: 0
  2613. m_PrefabParentObject: {fileID: 196322, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2614. m_PrefabInternal: {fileID: 0}
  2615. serializedVersion: 5
  2616. m_Component:
  2617. - component: {fileID: 1412265616}
  2618. m_Layer: 0
  2619. m_Name: BipDummy L Finger01
  2620. m_TagString: Untagged
  2621. m_Icon: {fileID: 0}
  2622. m_NavMeshLayer: 0
  2623. m_StaticEditorFlags: 0
  2624. m_IsActive: 1
  2625. --- !u!4 &1412265616
  2626. Transform:
  2627. m_ObjectHideFlags: 0
  2628. m_PrefabParentObject: {fileID: 409894, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2629. m_PrefabInternal: {fileID: 0}
  2630. m_GameObject: {fileID: 1412265615}
  2631. m_LocalRotation: {x: 0, y: 0, z: -0.24637195, w: 0.9691754}
  2632. m_LocalPosition: {x: -0.028966127, y: 0, z: -0.00000003051758}
  2633. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  2634. m_Children:
  2635. - {fileID: 734630921}
  2636. m_Father: {fileID: 992188098}
  2637. m_RootOrder: 0
  2638. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2639. --- !u!1 &1417853824
  2640. GameObject:
  2641. m_ObjectHideFlags: 0
  2642. m_PrefabParentObject: {fileID: 183120, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2643. m_PrefabInternal: {fileID: 0}
  2644. serializedVersion: 5
  2645. m_Component:
  2646. - component: {fileID: 1417853825}
  2647. - component: {fileID: 1417853827}
  2648. - component: {fileID: 1417853826}
  2649. m_Layer: 0
  2650. m_Name: Bip002 Pelvis
  2651. m_TagString: Untagged
  2652. m_Icon: {fileID: 0}
  2653. m_NavMeshLayer: 0
  2654. m_StaticEditorFlags: 0
  2655. m_IsActive: 1
  2656. --- !u!4 &1417853825
  2657. Transform:
  2658. m_ObjectHideFlags: 0
  2659. m_PrefabParentObject: {fileID: 499626, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2660. m_PrefabInternal: {fileID: 0}
  2661. m_GameObject: {fileID: 1417853824}
  2662. m_LocalRotation: {x: -0.49999964, y: 0.50000036, z: 0.49999964, w: 0.50000036}
  2663. m_LocalPosition: {x: 0, y: 0, z: 0}
  2664. m_LocalScale: {x: 1, y: 1, z: 1}
  2665. m_Children:
  2666. - {fileID: 25958829}
  2667. m_Father: {fileID: 1554393212}
  2668. m_RootOrder: 0
  2669. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2670. --- !u!54 &1417853826
  2671. Rigidbody:
  2672. m_ObjectHideFlags: 0
  2673. m_PrefabParentObject: {fileID: 5403180, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2674. type: 2}
  2675. m_PrefabInternal: {fileID: 0}
  2676. m_GameObject: {fileID: 1417853824}
  2677. serializedVersion: 2
  2678. m_Mass: 3.125
  2679. m_Drag: 0
  2680. m_AngularDrag: 0.05
  2681. m_UseGravity: 1
  2682. m_IsKinematic: 1
  2683. m_Interpolate: 0
  2684. m_Constraints: 0
  2685. m_CollisionDetection: 0
  2686. --- !u!65 &1417853827
  2687. BoxCollider:
  2688. m_ObjectHideFlags: 0
  2689. m_PrefabParentObject: {fileID: 6559354, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2690. type: 2}
  2691. m_PrefabInternal: {fileID: 0}
  2692. m_GameObject: {fileID: 1417853824}
  2693. m_Material: {fileID: 0}
  2694. m_IsTrigger: 0
  2695. m_Enabled: 1
  2696. serializedVersion: 2
  2697. m_Size: {x: 0.2, y: 0.25485054, z: 0.3}
  2698. m_Center: {x: -0.09921679, y: -0.004639834, z: 0.00000067055225}
  2699. --- !u!1 &1426362349
  2700. GameObject:
  2701. m_ObjectHideFlags: 0
  2702. m_PrefabParentObject: {fileID: 180036, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2703. m_PrefabInternal: {fileID: 0}
  2704. serializedVersion: 5
  2705. m_Component:
  2706. - component: {fileID: 1426362350}
  2707. m_Layer: 0
  2708. m_Name: BipDummy R Finger22
  2709. m_TagString: Untagged
  2710. m_Icon: {fileID: 0}
  2711. m_NavMeshLayer: 0
  2712. m_StaticEditorFlags: 0
  2713. m_IsActive: 1
  2714. --- !u!4 &1426362350
  2715. Transform:
  2716. m_ObjectHideFlags: 0
  2717. m_PrefabParentObject: {fileID: 486042, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2718. m_PrefabInternal: {fileID: 0}
  2719. m_GameObject: {fileID: 1426362349}
  2720. m_LocalRotation: {x: -3.7377737e-10, y: -0.0000000037064913, z: -0.100335106, w: 0.99495375}
  2721. m_LocalPosition: {x: -0.023578431, y: 0, z: 0.00000003051758}
  2722. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
  2723. m_Children: []
  2724. m_Father: {fileID: 906241913}
  2725. m_RootOrder: 0
  2726. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2727. --- !u!1 &1513902502
  2728. GameObject:
  2729. m_ObjectHideFlags: 0
  2730. m_PrefabParentObject: {fileID: 185250, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2731. m_PrefabInternal: {fileID: 0}
  2732. serializedVersion: 5
  2733. m_Component:
  2734. - component: {fileID: 1513902503}
  2735. m_Layer: 0
  2736. m_Name: BipDummy R Finger01
  2737. m_TagString: Untagged
  2738. m_Icon: {fileID: 0}
  2739. m_NavMeshLayer: 0
  2740. m_StaticEditorFlags: 0
  2741. m_IsActive: 1
  2742. --- !u!4 &1513902503
  2743. Transform:
  2744. m_ObjectHideFlags: 0
  2745. m_PrefabParentObject: {fileID: 490442, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2746. m_PrefabInternal: {fileID: 0}
  2747. m_GameObject: {fileID: 1513902502}
  2748. m_LocalRotation: {x: -0.0000000054362164, y: 0.0000000012932826, z: -0.23144192,
  2749. w: 0.9728487}
  2750. m_LocalPosition: {x: -0.028966065, y: 0.00000003051758, z: 0}
  2751. m_LocalScale: {x: 1, y: 0.99999994, z: 1}
  2752. m_Children:
  2753. - {fileID: 2132739557}
  2754. m_Father: {fileID: 1934001200}
  2755. m_RootOrder: 0
  2756. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2757. --- !u!1 &1529277860
  2758. GameObject:
  2759. m_ObjectHideFlags: 0
  2760. m_PrefabParentObject: {fileID: 167750, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2761. m_PrefabInternal: {fileID: 0}
  2762. serializedVersion: 5
  2763. m_Component:
  2764. - component: {fileID: 1529277861}
  2765. m_Layer: 0
  2766. m_Name: Bip002 L Toe0
  2767. m_TagString: Untagged
  2768. m_Icon: {fileID: 0}
  2769. m_NavMeshLayer: 0
  2770. m_StaticEditorFlags: 0
  2771. m_IsActive: 1
  2772. --- !u!4 &1529277861
  2773. Transform:
  2774. m_ObjectHideFlags: 0
  2775. m_PrefabParentObject: {fileID: 474156, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2776. m_PrefabInternal: {fileID: 0}
  2777. m_GameObject: {fileID: 1529277860}
  2778. m_LocalRotation: {x: -0.000000015454312, y: 0.000000015454312, z: -0.7071068, w: 0.7071068}
  2779. m_LocalPosition: {x: -0.06716837, y: 0.13374838, z: 0}
  2780. m_LocalScale: {x: 1, y: 1, z: 1}
  2781. m_Children:
  2782. - {fileID: 732188857}
  2783. m_Father: {fileID: 1107710775}
  2784. m_RootOrder: 0
  2785. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2786. --- !u!1 &1554393211
  2787. GameObject:
  2788. m_ObjectHideFlags: 0
  2789. m_PrefabParentObject: {fileID: 151944, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2790. m_PrefabInternal: {fileID: 0}
  2791. serializedVersion: 5
  2792. m_Component:
  2793. - component: {fileID: 1554393212}
  2794. m_Layer: 0
  2795. m_Name: BipDummy
  2796. m_TagString: Untagged
  2797. m_Icon: {fileID: 0}
  2798. m_NavMeshLayer: 0
  2799. m_StaticEditorFlags: 0
  2800. m_IsActive: 1
  2801. --- !u!4 &1554393212
  2802. Transform:
  2803. m_ObjectHideFlags: 0
  2804. m_PrefabParentObject: {fileID: 472140, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2805. m_PrefabInternal: {fileID: 0}
  2806. m_GameObject: {fileID: 1554393211}
  2807. m_LocalRotation: {x: -0.50000054, y: 0.49999946, z: 0.49999946, w: 0.50000054}
  2808. m_LocalPosition: {x: -1.4901162e-10, y: 0.89560544, z: -0.0034221578}
  2809. m_LocalScale: {x: 1, y: 1, z: 1}
  2810. m_Children:
  2811. - {fileID: 1417853825}
  2812. m_Father: {fileID: 134381630}
  2813. m_RootOrder: 0
  2814. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2815. --- !u!1 &1694741764
  2816. GameObject:
  2817. m_ObjectHideFlags: 0
  2818. m_PrefabParentObject: {fileID: 153768, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2819. m_PrefabInternal: {fileID: 0}
  2820. serializedVersion: 5
  2821. m_Component:
  2822. - component: {fileID: 1694741765}
  2823. m_Layer: 0
  2824. m_Name: BipDummy R Finger41
  2825. m_TagString: Untagged
  2826. m_Icon: {fileID: 0}
  2827. m_NavMeshLayer: 0
  2828. m_StaticEditorFlags: 0
  2829. m_IsActive: 1
  2830. --- !u!4 &1694741765
  2831. Transform:
  2832. m_ObjectHideFlags: 0
  2833. m_PrefabParentObject: {fileID: 467326, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2834. m_PrefabInternal: {fileID: 0}
  2835. m_GameObject: {fileID: 1694741764}
  2836. m_LocalRotation: {x: 0.0000000024180136, y: 0.0000000028339022, z: -0.6490805, w: 0.7607197}
  2837. m_LocalPosition: {x: -0.032120302, y: 0.00000006103516, z: 0.00000006103516}
  2838. m_LocalScale: {x: 0.9999999, y: 0.99999976, z: 0.99999994}
  2839. m_Children:
  2840. - {fileID: 1762626580}
  2841. m_Father: {fileID: 433356875}
  2842. m_RootOrder: 0
  2843. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2844. --- !u!1 &1723654464
  2845. GameObject:
  2846. m_ObjectHideFlags: 0
  2847. m_PrefabParentObject: {fileID: 102610, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2848. m_PrefabInternal: {fileID: 0}
  2849. serializedVersion: 5
  2850. m_Component:
  2851. - component: {fileID: 1723654465}
  2852. - component: {fileID: 1723654468}
  2853. - component: {fileID: 1723654467}
  2854. - component: {fileID: 1723654466}
  2855. m_Layer: 0
  2856. m_Name: Bip002 L Forearm
  2857. m_TagString: Untagged
  2858. m_Icon: {fileID: 0}
  2859. m_NavMeshLayer: 0
  2860. m_StaticEditorFlags: 0
  2861. m_IsActive: 1
  2862. --- !u!4 &1723654465
  2863. Transform:
  2864. m_ObjectHideFlags: 0
  2865. m_PrefabParentObject: {fileID: 434710, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2866. m_PrefabInternal: {fileID: 0}
  2867. m_GameObject: {fileID: 1723654464}
  2868. m_LocalRotation: {x: -0.000000030864356, y: 0.000000021855683, z: 0.28733003, w: 0.9578316}
  2869. m_LocalPosition: {x: -0.2430326, y: 0.00000006103516, z: 0}
  2870. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
  2871. m_Children:
  2872. - {fileID: 311460911}
  2873. m_Father: {fileID: 1781373756}
  2874. m_RootOrder: 0
  2875. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2876. --- !u!144 &1723654466
  2877. CharacterJoint:
  2878. m_ObjectHideFlags: 0
  2879. m_PrefabParentObject: {fileID: 14446806, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2880. type: 2}
  2881. m_PrefabInternal: {fileID: 0}
  2882. m_GameObject: {fileID: 1723654464}
  2883. m_ConnectedBody: {fileID: 1781373758}
  2884. m_Anchor: {x: 0, y: 0, z: 0}
  2885. m_Axis: {x: 0, y: 0, z: 1}
  2886. m_AutoConfigureConnectedAnchor: 1
  2887. m_ConnectedAnchor: {x: -0.24303263, y: 0.0000000745058, z: 0}
  2888. serializedVersion: 2
  2889. m_SwingAxis: {x: 1, y: 0, z: 0}
  2890. m_TwistLimitSpring:
  2891. spring: 0
  2892. damper: 0
  2893. m_LowTwistLimit:
  2894. limit: -123.173485
  2895. bounciness: 0
  2896. contactDistance: 0
  2897. m_HighTwistLimit:
  2898. limit: 0
  2899. bounciness: 0
  2900. contactDistance: 0
  2901. m_SwingLimitSpring:
  2902. spring: 0
  2903. damper: 0
  2904. m_Swing1Limit:
  2905. limit: 5.2851768
  2906. bounciness: 0
  2907. contactDistance: 0
  2908. m_Swing2Limit:
  2909. limit: 4.7180176
  2910. bounciness: 0
  2911. contactDistance: 0
  2912. m_EnableProjection: 0
  2913. m_ProjectionDistance: 0.1
  2914. m_ProjectionAngle: 180
  2915. m_BreakForce: Infinity
  2916. m_BreakTorque: Infinity
  2917. m_EnableCollision: 0
  2918. m_EnablePreprocessing: 1
  2919. m_MassScale: 1
  2920. m_ConnectedMassScale: 1
  2921. --- !u!54 &1723654467
  2922. Rigidbody:
  2923. m_ObjectHideFlags: 0
  2924. m_PrefabParentObject: {fileID: 5429484, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2925. type: 2}
  2926. m_PrefabInternal: {fileID: 0}
  2927. m_GameObject: {fileID: 1723654464}
  2928. serializedVersion: 2
  2929. m_Mass: 1.25
  2930. m_Drag: 0
  2931. m_AngularDrag: 0.05
  2932. m_UseGravity: 1
  2933. m_IsKinematic: 1
  2934. m_Interpolate: 0
  2935. m_Constraints: 0
  2936. m_CollisionDetection: 0
  2937. --- !u!136 &1723654468
  2938. CapsuleCollider:
  2939. m_ObjectHideFlags: 0
  2940. m_PrefabParentObject: {fileID: 13639752, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2941. type: 2}
  2942. m_PrefabInternal: {fileID: 0}
  2943. m_GameObject: {fileID: 1723654464}
  2944. m_Material: {fileID: 0}
  2945. m_IsTrigger: 0
  2946. m_Enabled: 1
  2947. m_Radius: 0.08156099
  2948. m_Height: 0.40780497
  2949. m_Direction: 0
  2950. m_Center: {x: -0.20390248, y: 0, z: 0}
  2951. --- !u!1 &1738428774
  2952. GameObject:
  2953. m_ObjectHideFlags: 0
  2954. m_PrefabParentObject: {fileID: 193312, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2955. m_PrefabInternal: {fileID: 0}
  2956. serializedVersion: 5
  2957. m_Component:
  2958. - component: {fileID: 1738428775}
  2959. - component: {fileID: 1738428778}
  2960. - component: {fileID: 1738428777}
  2961. - component: {fileID: 1738428776}
  2962. m_Layer: 0
  2963. m_Name: Bip002 R Forearm
  2964. m_TagString: Untagged
  2965. m_Icon: {fileID: 0}
  2966. m_NavMeshLayer: 0
  2967. m_StaticEditorFlags: 0
  2968. m_IsActive: 1
  2969. --- !u!4 &1738428775
  2970. Transform:
  2971. m_ObjectHideFlags: 0
  2972. m_PrefabParentObject: {fileID: 472198, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  2973. m_PrefabInternal: {fileID: 0}
  2974. m_GameObject: {fileID: 1738428774}
  2975. m_LocalRotation: {x: -0.000000024085356, y: -0.0000000072251183, z: 0.28733006,
  2976. w: 0.9578316}
  2977. m_LocalPosition: {x: -0.24303266, y: 0, z: 0}
  2978. m_LocalScale: {x: 1, y: 1, z: 1}
  2979. m_Children:
  2980. - {fileID: 899844550}
  2981. m_Father: {fileID: 2047611160}
  2982. m_RootOrder: 0
  2983. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2984. --- !u!144 &1738428776
  2985. CharacterJoint:
  2986. m_ObjectHideFlags: 0
  2987. m_PrefabParentObject: {fileID: 14406004, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  2988. type: 2}
  2989. m_PrefabInternal: {fileID: 0}
  2990. m_GameObject: {fileID: 1738428774}
  2991. m_ConnectedBody: {fileID: 2047611162}
  2992. m_Anchor: {x: 0, y: 0, z: 0}
  2993. m_Axis: {x: 0, y: 0, z: 1}
  2994. m_AutoConfigureConnectedAnchor: 1
  2995. m_ConnectedAnchor: {x: -0.24303266, y: 0.000000014901159, z: 0.000000014901161}
  2996. serializedVersion: 2
  2997. m_SwingAxis: {x: 1, y: 0, z: 0}
  2998. m_TwistLimitSpring:
  2999. spring: 0
  3000. damper: 0
  3001. m_LowTwistLimit:
  3002. limit: -120.89296
  3003. bounciness: 0
  3004. contactDistance: 0
  3005. m_HighTwistLimit:
  3006. limit: 0
  3007. bounciness: 0
  3008. contactDistance: 0
  3009. m_SwingLimitSpring:
  3010. spring: 0
  3011. damper: 0
  3012. m_Swing1Limit:
  3013. limit: 4.5910864
  3014. bounciness: 0
  3015. contactDistance: 0
  3016. m_Swing2Limit:
  3017. limit: 3.8429186
  3018. bounciness: 0
  3019. contactDistance: 0
  3020. m_EnableProjection: 0
  3021. m_ProjectionDistance: 0.1
  3022. m_ProjectionAngle: 180
  3023. m_BreakForce: Infinity
  3024. m_BreakTorque: Infinity
  3025. m_EnableCollision: 0
  3026. m_EnablePreprocessing: 1
  3027. m_MassScale: 1
  3028. m_ConnectedMassScale: 1
  3029. --- !u!54 &1738428777
  3030. Rigidbody:
  3031. m_ObjectHideFlags: 0
  3032. m_PrefabParentObject: {fileID: 5456224, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3033. type: 2}
  3034. m_PrefabInternal: {fileID: 0}
  3035. m_GameObject: {fileID: 1738428774}
  3036. serializedVersion: 2
  3037. m_Mass: 1.25
  3038. m_Drag: 0
  3039. m_AngularDrag: 0.05
  3040. m_UseGravity: 1
  3041. m_IsKinematic: 1
  3042. m_Interpolate: 0
  3043. m_Constraints: 0
  3044. m_CollisionDetection: 0
  3045. --- !u!136 &1738428778
  3046. CapsuleCollider:
  3047. m_ObjectHideFlags: 0
  3048. m_PrefabParentObject: {fileID: 13691936, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3049. type: 2}
  3050. m_PrefabInternal: {fileID: 0}
  3051. m_GameObject: {fileID: 1738428774}
  3052. m_Material: {fileID: 0}
  3053. m_IsTrigger: 0
  3054. m_Enabled: 1
  3055. m_Radius: 0.07942759
  3056. m_Height: 0.39713797
  3057. m_Direction: 0
  3058. m_Center: {x: -0.19856898, y: 0, z: 0}
  3059. --- !u!1 &1762626579
  3060. GameObject:
  3061. m_ObjectHideFlags: 0
  3062. m_PrefabParentObject: {fileID: 150132, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3063. m_PrefabInternal: {fileID: 0}
  3064. serializedVersion: 5
  3065. m_Component:
  3066. - component: {fileID: 1762626580}
  3067. m_Layer: 0
  3068. m_Name: BipDummy R Finger42
  3069. m_TagString: Untagged
  3070. m_Icon: {fileID: 0}
  3071. m_NavMeshLayer: 0
  3072. m_StaticEditorFlags: 0
  3073. m_IsActive: 1
  3074. --- !u!4 &1762626580
  3075. Transform:
  3076. m_ObjectHideFlags: 0
  3077. m_PrefabParentObject: {fileID: 487618, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3078. m_PrefabInternal: {fileID: 0}
  3079. m_GameObject: {fileID: 1762626579}
  3080. m_LocalRotation: {x: 0.00000002317485, y: -0.000000022827779, z: -0.35736334, w: 0.93396544}
  3081. m_LocalPosition: {x: -0.018896058, y: 0, z: -0.00000001525879}
  3082. m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994}
  3083. m_Children: []
  3084. m_Father: {fileID: 1694741765}
  3085. m_RootOrder: 0
  3086. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3087. --- !u!1 &1781373755
  3088. GameObject:
  3089. m_ObjectHideFlags: 0
  3090. m_PrefabParentObject: {fileID: 179546, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3091. m_PrefabInternal: {fileID: 0}
  3092. serializedVersion: 5
  3093. m_Component:
  3094. - component: {fileID: 1781373756}
  3095. - component: {fileID: 1781373759}
  3096. - component: {fileID: 1781373758}
  3097. - component: {fileID: 1781373757}
  3098. m_Layer: 0
  3099. m_Name: Bip002 L UpperArm
  3100. m_TagString: Untagged
  3101. m_Icon: {fileID: 0}
  3102. m_NavMeshLayer: 0
  3103. m_StaticEditorFlags: 0
  3104. m_IsActive: 1
  3105. --- !u!4 &1781373756
  3106. Transform:
  3107. m_ObjectHideFlags: 0
  3108. m_PrefabParentObject: {fileID: 414408, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3109. m_PrefabInternal: {fileID: 0}
  3110. m_GameObject: {fileID: 1781373755}
  3111. m_LocalRotation: {x: 0.3957287, y: -0.43531162, z: 0.03300276, w: 0.8079687}
  3112. m_LocalPosition: {x: -0.17969485, y: 9.536744e-10, z: 0}
  3113. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  3114. m_Children:
  3115. - {fileID: 1723654465}
  3116. m_Father: {fileID: 63618767}
  3117. m_RootOrder: 0
  3118. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3119. --- !u!144 &1781373757
  3120. CharacterJoint:
  3121. m_ObjectHideFlags: 0
  3122. m_PrefabParentObject: {fileID: 14478926, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3123. type: 2}
  3124. m_PrefabInternal: {fileID: 0}
  3125. m_GameObject: {fileID: 1781373755}
  3126. m_ConnectedBody: {fileID: 1892673807}
  3127. m_Anchor: {x: 0, y: 0, z: 0}
  3128. m_Axis: {x: 0, y: -1, z: 0}
  3129. m_AutoConfigureConnectedAnchor: 1
  3130. m_ConnectedAnchor: {x: -0.311323, y: 0.0021180518, z: 0.20798956}
  3131. serializedVersion: 2
  3132. m_SwingAxis: {x: 1, y: 0, z: 0}
  3133. m_TwistLimitSpring:
  3134. spring: 0
  3135. damper: 0
  3136. m_LowTwistLimit:
  3137. limit: -70
  3138. bounciness: 0
  3139. contactDistance: 0
  3140. m_HighTwistLimit:
  3141. limit: 129.79007
  3142. bounciness: 0
  3143. contactDistance: 0
  3144. m_SwingLimitSpring:
  3145. spring: 0
  3146. damper: 0
  3147. m_Swing1Limit:
  3148. limit: 50
  3149. bounciness: 0
  3150. contactDistance: 0
  3151. m_Swing2Limit:
  3152. limit: 100.36009
  3153. bounciness: 0
  3154. contactDistance: 0
  3155. m_EnableProjection: 0
  3156. m_ProjectionDistance: 0.1
  3157. m_ProjectionAngle: 180
  3158. m_BreakForce: Infinity
  3159. m_BreakTorque: Infinity
  3160. m_EnableCollision: 0
  3161. m_EnablePreprocessing: 1
  3162. m_MassScale: 1
  3163. m_ConnectedMassScale: 1
  3164. --- !u!54 &1781373758
  3165. Rigidbody:
  3166. m_ObjectHideFlags: 0
  3167. m_PrefabParentObject: {fileID: 5483296, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3168. type: 2}
  3169. m_PrefabInternal: {fileID: 0}
  3170. m_GameObject: {fileID: 1781373755}
  3171. serializedVersion: 2
  3172. m_Mass: 1.25
  3173. m_Drag: 0
  3174. m_AngularDrag: 0.05
  3175. m_UseGravity: 1
  3176. m_IsKinematic: 1
  3177. m_Interpolate: 0
  3178. m_Constraints: 0
  3179. m_CollisionDetection: 0
  3180. --- !u!136 &1781373759
  3181. CapsuleCollider:
  3182. m_ObjectHideFlags: 0
  3183. m_PrefabParentObject: {fileID: 13657054, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3184. type: 2}
  3185. m_PrefabInternal: {fileID: 0}
  3186. m_GameObject: {fileID: 1781373755}
  3187. m_Material: {fileID: 0}
  3188. m_IsTrigger: 0
  3189. m_Enabled: 1
  3190. m_Radius: 0.08
  3191. m_Height: 0.3
  3192. m_Direction: 0
  3193. m_Center: {x: -0.08, y: 0, z: 0}
  3194. --- !u!1 &1823152268
  3195. GameObject:
  3196. m_ObjectHideFlags: 0
  3197. m_PrefabParentObject: {fileID: 189180, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3198. m_PrefabInternal: {fileID: 0}
  3199. serializedVersion: 5
  3200. m_Component:
  3201. - component: {fileID: 1823152269}
  3202. m_Layer: 0
  3203. m_Name: BipDummy L Finger22
  3204. m_TagString: Untagged
  3205. m_Icon: {fileID: 0}
  3206. m_NavMeshLayer: 0
  3207. m_StaticEditorFlags: 0
  3208. m_IsActive: 1
  3209. --- !u!4 &1823152269
  3210. Transform:
  3211. m_ObjectHideFlags: 0
  3212. m_PrefabParentObject: {fileID: 491820, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3213. m_PrefabInternal: {fileID: 0}
  3214. m_GameObject: {fileID: 1823152268}
  3215. m_LocalRotation: {x: -8.062054e-10, y: -0.000000037430024, z: -0.120907776, w: 0.99266374}
  3216. m_LocalPosition: {x: -0.02357837, y: 0, z: -0.00000001525879}
  3217. m_LocalScale: {x: 1, y: 1.0000001, z: 1}
  3218. m_Children: []
  3219. m_Father: {fileID: 2019569169}
  3220. m_RootOrder: 0
  3221. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3222. --- !u!1 &1858565650
  3223. GameObject:
  3224. m_ObjectHideFlags: 0
  3225. m_PrefabParentObject: {fileID: 137206, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3226. m_PrefabInternal: {fileID: 0}
  3227. serializedVersion: 5
  3228. m_Component:
  3229. - component: {fileID: 1858565651}
  3230. m_Layer: 0
  3231. m_Name: Bip002 Spine3
  3232. m_TagString: Untagged
  3233. m_Icon: {fileID: 0}
  3234. m_NavMeshLayer: 0
  3235. m_StaticEditorFlags: 0
  3236. m_IsActive: 1
  3237. --- !u!4 &1858565651
  3238. Transform:
  3239. m_ObjectHideFlags: 0
  3240. m_PrefabParentObject: {fileID: 415446, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3241. m_PrefabInternal: {fileID: 0}
  3242. m_GameObject: {fileID: 1858565650}
  3243. m_LocalRotation: {x: -1.1736887e-13, y: 0.000000010320554, z: -0.0037209955, w: 0.9999931}
  3244. m_LocalPosition: {x: -0.10531482, y: -0.00008385468, z: -2.3258327e-10}
  3245. m_LocalScale: {x: 1, y: 1, z: 1}
  3246. m_Children:
  3247. - {fileID: 1085885242}
  3248. m_Father: {fileID: 741672767}
  3249. m_RootOrder: 0
  3250. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3251. --- !u!1 &1874897146
  3252. GameObject:
  3253. m_ObjectHideFlags: 0
  3254. m_PrefabParentObject: {fileID: 162164, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3255. m_PrefabInternal: {fileID: 0}
  3256. serializedVersion: 5
  3257. m_Component:
  3258. - component: {fileID: 1874897147}
  3259. m_Layer: 0
  3260. m_Name: Bip002 R Toe01
  3261. m_TagString: Untagged
  3262. m_Icon: {fileID: 0}
  3263. m_NavMeshLayer: 0
  3264. m_StaticEditorFlags: 0
  3265. m_IsActive: 1
  3266. --- !u!4 &1874897147
  3267. Transform:
  3268. m_ObjectHideFlags: 0
  3269. m_PrefabParentObject: {fileID: 470614, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3270. m_PrefabInternal: {fileID: 0}
  3271. m_GameObject: {fileID: 1874897146}
  3272. m_LocalRotation: {x: 0, y: -1.0418551e-15, z: -0, w: 1}
  3273. m_LocalPosition: {x: -0.012151627, y: 0, z: 0}
  3274. m_LocalScale: {x: 1, y: 1, z: 1}
  3275. m_Children:
  3276. - {fileID: 1318409404}
  3277. m_Father: {fileID: 1378595737}
  3278. m_RootOrder: 0
  3279. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3280. --- !u!1 &1892673805
  3281. GameObject:
  3282. m_ObjectHideFlags: 0
  3283. m_PrefabParentObject: {fileID: 186012, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3284. m_PrefabInternal: {fileID: 0}
  3285. serializedVersion: 5
  3286. m_Component:
  3287. - component: {fileID: 1892673806}
  3288. - component: {fileID: 1892673809}
  3289. - component: {fileID: 1892673807}
  3290. - component: {fileID: 1892673808}
  3291. m_Layer: 0
  3292. m_Name: Bip002 Spine1
  3293. m_TagString: Untagged
  3294. m_Icon: {fileID: 0}
  3295. m_NavMeshLayer: 0
  3296. m_StaticEditorFlags: 0
  3297. m_IsActive: 1
  3298. --- !u!4 &1892673806
  3299. Transform:
  3300. m_ObjectHideFlags: 0
  3301. m_PrefabParentObject: {fileID: 400952, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3302. m_PrefabInternal: {fileID: 0}
  3303. m_GameObject: {fileID: 1892673805}
  3304. m_LocalRotation: {x: 4.0745185e-14, y: 0, z: -0, w: 1}
  3305. m_LocalPosition: {x: -0.10531403, y: -0.00008385659, z: -2.3259054e-10}
  3306. m_LocalScale: {x: 1, y: 1, z: 1}
  3307. m_Children:
  3308. - {fileID: 741672767}
  3309. m_Father: {fileID: 25958829}
  3310. m_RootOrder: 2
  3311. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3312. --- !u!54 &1892673807
  3313. Rigidbody:
  3314. m_ObjectHideFlags: 0
  3315. m_PrefabParentObject: {fileID: 5469494, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3316. type: 2}
  3317. m_PrefabInternal: {fileID: 0}
  3318. m_GameObject: {fileID: 1892673805}
  3319. serializedVersion: 2
  3320. m_Mass: 3.125
  3321. m_Drag: 0
  3322. m_AngularDrag: 0.05
  3323. m_UseGravity: 1
  3324. m_IsKinematic: 1
  3325. m_Interpolate: 0
  3326. m_Constraints: 0
  3327. m_CollisionDetection: 0
  3328. --- !u!144 &1892673808
  3329. CharacterJoint:
  3330. m_ObjectHideFlags: 0
  3331. m_PrefabParentObject: {fileID: 14447656, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3332. type: 2}
  3333. m_PrefabInternal: {fileID: 0}
  3334. m_GameObject: {fileID: 1892673805}
  3335. m_ConnectedBody: {fileID: 1417853826}
  3336. m_Anchor: {x: 0, y: 0, z: 0}
  3337. m_Axis: {x: 0, y: 0, z: -1}
  3338. m_AutoConfigureConnectedAnchor: 1
  3339. m_ConnectedAnchor: {x: -0.19843376, y: -0.0030061752, z: 0.0000002682209}
  3340. serializedVersion: 2
  3341. m_SwingAxis: {x: 0, y: 1, z: 0}
  3342. m_TwistLimitSpring:
  3343. spring: 0
  3344. damper: 0
  3345. m_LowTwistLimit:
  3346. limit: -30
  3347. bounciness: 0
  3348. contactDistance: 0
  3349. m_HighTwistLimit:
  3350. limit: 30
  3351. bounciness: 0
  3352. contactDistance: 0
  3353. m_SwingLimitSpring:
  3354. spring: 0
  3355. damper: 0
  3356. m_Swing1Limit:
  3357. limit: 30
  3358. bounciness: 0
  3359. contactDistance: 0
  3360. m_Swing2Limit:
  3361. limit: 38.603886
  3362. bounciness: 0
  3363. contactDistance: 0
  3364. m_EnableProjection: 0
  3365. m_ProjectionDistance: 0.1
  3366. m_ProjectionAngle: 180
  3367. m_BreakForce: Infinity
  3368. m_BreakTorque: Infinity
  3369. m_EnableCollision: 0
  3370. m_EnablePreprocessing: 1
  3371. m_MassScale: 1
  3372. m_ConnectedMassScale: 1
  3373. --- !u!65 &1892673809
  3374. BoxCollider:
  3375. m_ObjectHideFlags: 0
  3376. m_PrefabParentObject: {fileID: 6512340, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3377. type: 2}
  3378. m_PrefabInternal: {fileID: 0}
  3379. m_GameObject: {fileID: 1892673805}
  3380. m_Material: {fileID: 0}
  3381. m_IsTrigger: 0
  3382. m_Enabled: 1
  3383. serializedVersion: 2
  3384. m_Size: {x: 0.4, y: 0.28, z: 0.33}
  3385. m_Center: {x: -0.19000001, y: -0.000112238034, z: -0.00000004470367}
  3386. --- !u!1 &1934001199
  3387. GameObject:
  3388. m_ObjectHideFlags: 0
  3389. m_PrefabParentObject: {fileID: 139002, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3390. m_PrefabInternal: {fileID: 0}
  3391. serializedVersion: 5
  3392. m_Component:
  3393. - component: {fileID: 1934001200}
  3394. m_Layer: 0
  3395. m_Name: Bip002 R Finger0
  3396. m_TagString: Untagged
  3397. m_Icon: {fileID: 0}
  3398. m_NavMeshLayer: 0
  3399. m_StaticEditorFlags: 0
  3400. m_IsActive: 1
  3401. --- !u!4 &1934001200
  3402. Transform:
  3403. m_ObjectHideFlags: 0
  3404. m_PrefabParentObject: {fileID: 493210, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3405. m_PrefabInternal: {fileID: 0}
  3406. m_GameObject: {fileID: 1934001199}
  3407. m_LocalRotation: {x: -0.4061612, y: 0.2668805, z: 0.03686745, w: 0.8731831}
  3408. m_LocalPosition: {x: -0.04263898, y: 0.010434327, z: 0.0281187}
  3409. m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999999}
  3410. m_Children:
  3411. - {fileID: 1513902503}
  3412. m_Father: {fileID: 899844550}
  3413. m_RootOrder: 0
  3414. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3415. --- !u!1 &1996935679
  3416. GameObject:
  3417. m_ObjectHideFlags: 0
  3418. m_PrefabParentObject: {fileID: 125540, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3419. m_PrefabInternal: {fileID: 0}
  3420. serializedVersion: 5
  3421. m_Component:
  3422. - component: {fileID: 1996935680}
  3423. m_Layer: 0
  3424. m_Name: BipDummy R Finger2
  3425. m_TagString: Untagged
  3426. m_Icon: {fileID: 0}
  3427. m_NavMeshLayer: 0
  3428. m_StaticEditorFlags: 0
  3429. m_IsActive: 1
  3430. --- !u!4 &1996935680
  3431. Transform:
  3432. m_ObjectHideFlags: 0
  3433. m_PrefabParentObject: {fileID: 406162, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3434. m_PrefabInternal: {fileID: 0}
  3435. m_GameObject: {fileID: 1996935679}
  3436. m_LocalRotation: {x: 0.0046662716, y: -0.023126798, z: -0.2611372, w: 0.9650134}
  3437. m_LocalPosition: {x: -0.10838886, y: -0.005205994, z: 0.00035925294}
  3438. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
  3439. m_Children:
  3440. - {fileID: 906241913}
  3441. m_Father: {fileID: 899844550}
  3442. m_RootOrder: 2
  3443. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3444. --- !u!1 &2019569168
  3445. GameObject:
  3446. m_ObjectHideFlags: 0
  3447. m_PrefabParentObject: {fileID: 178844, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3448. m_PrefabInternal: {fileID: 0}
  3449. serializedVersion: 5
  3450. m_Component:
  3451. - component: {fileID: 2019569169}
  3452. m_Layer: 0
  3453. m_Name: BipDummy L Finger21
  3454. m_TagString: Untagged
  3455. m_Icon: {fileID: 0}
  3456. m_NavMeshLayer: 0
  3457. m_StaticEditorFlags: 0
  3458. m_IsActive: 1
  3459. --- !u!4 &2019569169
  3460. Transform:
  3461. m_ObjectHideFlags: 0
  3462. m_PrefabParentObject: {fileID: 428452, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3463. m_PrefabInternal: {fileID: 0}
  3464. m_GameObject: {fileID: 2019569168}
  3465. m_LocalRotation: {x: 0.000000026105285, y: 0.000000005454415, z: -0.22450191, w: 0.97447366}
  3466. m_LocalPosition: {x: -0.044976626, y: 0, z: 0}
  3467. m_LocalScale: {x: 1, y: 1, z: 1.0000001}
  3468. m_Children:
  3469. - {fileID: 1823152269}
  3470. m_Father: {fileID: 1156901903}
  3471. m_RootOrder: 0
  3472. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3473. --- !u!1 &2025746362
  3474. GameObject:
  3475. m_ObjectHideFlags: 0
  3476. m_PrefabParentObject: {fileID: 139734, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3477. m_PrefabInternal: {fileID: 0}
  3478. serializedVersion: 5
  3479. m_Component:
  3480. - component: {fileID: 2025746363}
  3481. m_Layer: 0
  3482. m_Name: BipDummy R Finger11
  3483. m_TagString: Untagged
  3484. m_Icon: {fileID: 0}
  3485. m_NavMeshLayer: 0
  3486. m_StaticEditorFlags: 0
  3487. m_IsActive: 1
  3488. --- !u!4 &2025746363
  3489. Transform:
  3490. m_ObjectHideFlags: 0
  3491. m_PrefabParentObject: {fileID: 497448, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3492. m_PrefabInternal: {fileID: 0}
  3493. m_GameObject: {fileID: 2025746362}
  3494. m_LocalRotation: {x: 0.000000001861105, y: -7.57366e-11, z: -0.040660772, w: 0.99917305}
  3495. m_LocalPosition: {x: -0.047266603, y: 0.00000001525879, z: -0.00000001525879}
  3496. m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
  3497. m_Children:
  3498. - {fileID: 1326064280}
  3499. m_Father: {fileID: 39792840}
  3500. m_RootOrder: 0
  3501. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3502. --- !u!1 &2028498808
  3503. GameObject:
  3504. m_ObjectHideFlags: 0
  3505. m_PrefabParentObject: {fileID: 186354, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3506. m_PrefabInternal: {fileID: 0}
  3507. serializedVersion: 5
  3508. m_Component:
  3509. - component: {fileID: 2028498809}
  3510. m_Layer: 0
  3511. m_Name: BipDummy R Finger3
  3512. m_TagString: Untagged
  3513. m_Icon: {fileID: 0}
  3514. m_NavMeshLayer: 0
  3515. m_StaticEditorFlags: 0
  3516. m_IsActive: 1
  3517. --- !u!4 &2028498809
  3518. Transform:
  3519. m_ObjectHideFlags: 0
  3520. m_PrefabParentObject: {fileID: 470590, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3521. m_PrefabInternal: {fileID: 0}
  3522. m_GameObject: {fileID: 2028498808}
  3523. m_LocalRotation: {x: 0.0022173636, y: -0.0136231445, z: -0.13210824, w: 0.99113923}
  3524. m_LocalPosition: {x: -0.10328601, y: 0.0010224, z: -0.020135256}
  3525. m_LocalScale: {x: 1, y: 1, z: 1.0000001}
  3526. m_Children:
  3527. - {fileID: 236312175}
  3528. m_Father: {fileID: 899844550}
  3529. m_RootOrder: 3
  3530. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3531. --- !u!1 &2047611159
  3532. GameObject:
  3533. m_ObjectHideFlags: 0
  3534. m_PrefabParentObject: {fileID: 154210, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3535. m_PrefabInternal: {fileID: 0}
  3536. serializedVersion: 5
  3537. m_Component:
  3538. - component: {fileID: 2047611160}
  3539. - component: {fileID: 2047611163}
  3540. - component: {fileID: 2047611162}
  3541. - component: {fileID: 2047611161}
  3542. m_Layer: 0
  3543. m_Name: Bip002 R UpperArm
  3544. m_TagString: Untagged
  3545. m_Icon: {fileID: 0}
  3546. m_NavMeshLayer: 0
  3547. m_StaticEditorFlags: 0
  3548. m_IsActive: 1
  3549. --- !u!4 &2047611160
  3550. Transform:
  3551. m_ObjectHideFlags: 0
  3552. m_PrefabParentObject: {fileID: 466106, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3553. m_PrefabInternal: {fileID: 0}
  3554. m_GameObject: {fileID: 2047611159}
  3555. m_LocalRotation: {x: -0.39572957, y: 0.43531126, z: 0.033003364, w: 0.80796844}
  3556. m_LocalPosition: {x: -0.17969485, y: 9.536744e-10, z: 0}
  3557. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1}
  3558. m_Children:
  3559. - {fileID: 1738428775}
  3560. m_Father: {fileID: 522026903}
  3561. m_RootOrder: 0
  3562. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3563. --- !u!144 &2047611161
  3564. CharacterJoint:
  3565. m_ObjectHideFlags: 0
  3566. m_PrefabParentObject: {fileID: 14413838, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3567. type: 2}
  3568. m_PrefabInternal: {fileID: 0}
  3569. m_GameObject: {fileID: 2047611159}
  3570. m_ConnectedBody: {fileID: 1892673807}
  3571. m_Anchor: {x: 0, y: 0, z: 0}
  3572. m_Axis: {x: 0, y: -1, z: 0}
  3573. m_AutoConfigureConnectedAnchor: 1
  3574. m_ConnectedAnchor: {x: -0.31132287, y: 0.0021191242, z: -0.20798959}
  3575. serializedVersion: 2
  3576. m_SwingAxis: {x: 1, y: 0, z: 0}
  3577. m_TwistLimitSpring:
  3578. spring: 0
  3579. damper: 0
  3580. m_LowTwistLimit:
  3581. limit: -153.37746
  3582. bounciness: 0
  3583. contactDistance: 0
  3584. m_HighTwistLimit:
  3585. limit: 73.7355
  3586. bounciness: 0
  3587. contactDistance: 0
  3588. m_SwingLimitSpring:
  3589. spring: 0
  3590. damper: 0
  3591. m_Swing1Limit:
  3592. limit: 50
  3593. bounciness: 0
  3594. contactDistance: 0
  3595. m_Swing2Limit:
  3596. limit: 116.72637
  3597. bounciness: 0
  3598. contactDistance: 0
  3599. m_EnableProjection: 0
  3600. m_ProjectionDistance: 0.1
  3601. m_ProjectionAngle: 180
  3602. m_BreakForce: Infinity
  3603. m_BreakTorque: Infinity
  3604. m_EnableCollision: 0
  3605. m_EnablePreprocessing: 1
  3606. m_MassScale: 1
  3607. m_ConnectedMassScale: 1
  3608. --- !u!54 &2047611162
  3609. Rigidbody:
  3610. m_ObjectHideFlags: 0
  3611. m_PrefabParentObject: {fileID: 5456054, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3612. type: 2}
  3613. m_PrefabInternal: {fileID: 0}
  3614. m_GameObject: {fileID: 2047611159}
  3615. serializedVersion: 2
  3616. m_Mass: 1.25
  3617. m_Drag: 0
  3618. m_AngularDrag: 0.05
  3619. m_UseGravity: 1
  3620. m_IsKinematic: 1
  3621. m_Interpolate: 0
  3622. m_Constraints: 0
  3623. m_CollisionDetection: 0
  3624. --- !u!136 &2047611163
  3625. CapsuleCollider:
  3626. m_ObjectHideFlags: 0
  3627. m_PrefabParentObject: {fileID: 13681896, guid: 93698cb4f82e242d3bc5cf26dddbec74,
  3628. type: 2}
  3629. m_PrefabInternal: {fileID: 0}
  3630. m_GameObject: {fileID: 2047611159}
  3631. m_Material: {fileID: 0}
  3632. m_IsTrigger: 0
  3633. m_Enabled: 1
  3634. m_Radius: 0.08
  3635. m_Height: 0.3
  3636. m_Direction: 0
  3637. m_Center: {x: -0.08, y: 0, z: 0}
  3638. --- !u!1 &2132739556
  3639. GameObject:
  3640. m_ObjectHideFlags: 0
  3641. m_PrefabParentObject: {fileID: 195494, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3642. m_PrefabInternal: {fileID: 0}
  3643. serializedVersion: 5
  3644. m_Component:
  3645. - component: {fileID: 2132739557}
  3646. m_Layer: 0
  3647. m_Name: BipDummy R Finger02
  3648. m_TagString: Untagged
  3649. m_Icon: {fileID: 0}
  3650. m_NavMeshLayer: 0
  3651. m_StaticEditorFlags: 0
  3652. m_IsActive: 1
  3653. --- !u!4 &2132739557
  3654. Transform:
  3655. m_ObjectHideFlags: 0
  3656. m_PrefabParentObject: {fileID: 407402, guid: 93698cb4f82e242d3bc5cf26dddbec74, type: 2}
  3657. m_PrefabInternal: {fileID: 0}
  3658. m_GameObject: {fileID: 2132739556}
  3659. m_LocalRotation: {x: -0.0051727896, y: -0.14755645, z: -0.23301202, w: 0.9612002}
  3660. m_LocalPosition: {x: -0.032908753, y: -0.000000007629395, z: -0.00000003051758}
  3661. m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
  3662. m_Children: []
  3663. m_Father: {fileID: 1513902503}
  3664. m_RootOrder: 0
  3665. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}