Inertia.unity 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265
  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 &110658198
  117. GameObject:
  118. m_ObjectHideFlags: 0
  119. m_PrefabParentObject: {fileID: 173214, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  120. m_PrefabInternal: {fileID: 0}
  121. serializedVersion: 5
  122. m_Component:
  123. - component: {fileID: 110658199}
  124. - component: {fileID: 110658201}
  125. - component: {fileID: 110658200}
  126. m_Layer: 0
  127. m_Name: Axe
  128. m_TagString: Untagged
  129. m_Icon: {fileID: 0}
  130. m_NavMeshLayer: 0
  131. m_StaticEditorFlags: 0
  132. m_IsActive: 1
  133. --- !u!4 &110658199
  134. Transform:
  135. m_ObjectHideFlags: 0
  136. m_PrefabParentObject: {fileID: 493380, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  137. m_PrefabInternal: {fileID: 0}
  138. m_GameObject: {fileID: 110658198}
  139. m_LocalRotation: {x: 0.62673944, y: 0.7724445, z: -0.10113925, w: 0.017263575}
  140. m_LocalPosition: {x: -0.06023731, y: 0.042184293, z: -0.00272398}
  141. m_LocalScale: {x: 0.46692958, y: 0.4669297, z: 0.46692973}
  142. m_Children: []
  143. m_Father: {fileID: 170596526}
  144. m_RootOrder: 0
  145. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  146. --- !u!23 &110658200
  147. MeshRenderer:
  148. m_ObjectHideFlags: 0
  149. m_PrefabParentObject: {fileID: 2351146, guid: 1798da154b0724ce39ecfe02dc3d242c,
  150. type: 2}
  151. m_PrefabInternal: {fileID: 0}
  152. m_GameObject: {fileID: 110658198}
  153. m_Enabled: 1
  154. m_CastShadows: 1
  155. m_ReceiveShadows: 1
  156. m_DynamicOccludee: 1
  157. m_MotionVectors: 1
  158. m_LightProbeUsage: 1
  159. m_ReflectionProbeUsage: 1
  160. m_Materials:
  161. - {fileID: 2100000, guid: 049484920c0cd48568fe4a6e8df94859, type: 2}
  162. m_StaticBatchInfo:
  163. firstSubMesh: 0
  164. subMeshCount: 0
  165. m_StaticBatchRoot: {fileID: 0}
  166. m_ProbeAnchor: {fileID: 0}
  167. m_LightProbeVolumeOverride: {fileID: 0}
  168. m_ScaleInLightmap: 1
  169. m_PreserveUVs: 0
  170. m_IgnoreNormalsForChartDetection: 0
  171. m_ImportantGI: 0
  172. m_StitchLightmapSeams: 0
  173. m_SelectedEditorRenderState: 3
  174. m_MinimumChartSize: 4
  175. m_AutoUVMaxDistance: 0.5
  176. m_AutoUVMaxAngle: 89
  177. m_LightmapParameters: {fileID: 0}
  178. m_SortingLayerID: 0
  179. m_SortingLayer: 0
  180. m_SortingOrder: 0
  181. --- !u!33 &110658201
  182. MeshFilter:
  183. m_ObjectHideFlags: 0
  184. m_PrefabParentObject: {fileID: 3367462, guid: 1798da154b0724ce39ecfe02dc3d242c,
  185. type: 2}
  186. m_PrefabInternal: {fileID: 0}
  187. m_GameObject: {fileID: 110658198}
  188. m_Mesh: {fileID: 4300002, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
  189. --- !u!1 &143286547
  190. GameObject:
  191. m_ObjectHideFlags: 0
  192. m_PrefabParentObject: {fileID: 179258, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  193. m_PrefabInternal: {fileID: 0}
  194. serializedVersion: 5
  195. m_Component:
  196. - component: {fileID: 143286548}
  197. m_Layer: 0
  198. m_Name: CATRigLArm1
  199. m_TagString: Untagged
  200. m_Icon: {fileID: 0}
  201. m_NavMeshLayer: 0
  202. m_StaticEditorFlags: 0
  203. m_IsActive: 1
  204. --- !u!4 &143286548
  205. Transform:
  206. m_ObjectHideFlags: 0
  207. m_PrefabParentObject: {fileID: 429618, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  208. m_PrefabInternal: {fileID: 0}
  209. m_GameObject: {fileID: 143286547}
  210. m_LocalRotation: {x: -0.013079466, y: -0.15263523, z: 0.1733121, w: 0.9728794}
  211. m_LocalPosition: {x: -0.12479699, y: -0.0000000047683715, z: 0.000000076293944}
  212. m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001}
  213. m_Children:
  214. - {fileID: 1572987589}
  215. m_Father: {fileID: 1105907839}
  216. m_RootOrder: 0
  217. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  218. --- !u!1 &170596525
  219. GameObject:
  220. m_ObjectHideFlags: 0
  221. m_PrefabParentObject: {fileID: 116566, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  222. m_PrefabInternal: {fileID: 0}
  223. serializedVersion: 5
  224. m_Component:
  225. - component: {fileID: 170596526}
  226. m_Layer: 0
  227. m_Name: CATRigLArmPalm
  228. m_TagString: Untagged
  229. m_Icon: {fileID: 0}
  230. m_NavMeshLayer: 0
  231. m_StaticEditorFlags: 0
  232. m_IsActive: 1
  233. --- !u!4 &170596526
  234. Transform:
  235. m_ObjectHideFlags: 0
  236. m_PrefabParentObject: {fileID: 463978, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  237. m_PrefabInternal: {fileID: 0}
  238. m_GameObject: {fileID: 170596525}
  239. m_LocalRotation: {x: 0.6576932, y: 0.013433782, z: -0.188744, w: 0.72913307}
  240. m_LocalPosition: {x: -0.2134365, y: 0.000000019073486, z: 0}
  241. m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1}
  242. m_Children:
  243. - {fileID: 110658199}
  244. m_Father: {fileID: 1572987589}
  245. m_RootOrder: 0
  246. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  247. --- !u!1 &468018222
  248. GameObject:
  249. m_ObjectHideFlags: 0
  250. m_PrefabParentObject: {fileID: 106786, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  251. m_PrefabInternal: {fileID: 0}
  252. serializedVersion: 5
  253. m_Component:
  254. - component: {fileID: 468018223}
  255. m_Layer: 0
  256. m_Name: CATRigRLeg2
  257. m_TagString: Untagged
  258. m_Icon: {fileID: 0}
  259. m_NavMeshLayer: 0
  260. m_StaticEditorFlags: 0
  261. m_IsActive: 1
  262. --- !u!4 &468018223
  263. Transform:
  264. m_ObjectHideFlags: 0
  265. m_PrefabParentObject: {fileID: 497306, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  266. m_PrefabInternal: {fileID: 0}
  267. m_GameObject: {fileID: 468018222}
  268. m_LocalRotation: {x: 0.0024762582, y: 0.019669691, z: 0.08137219, w: 0.9964866}
  269. m_LocalPosition: {x: -0.2797782, y: 0, z: -0.000000019073486}
  270. m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1}
  271. m_Children:
  272. - {fileID: 1601801684}
  273. m_Father: {fileID: 1522920577}
  274. m_RootOrder: 0
  275. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  276. --- !u!1 &699662251
  277. GameObject:
  278. m_ObjectHideFlags: 0
  279. m_PrefabParentObject: {fileID: 144240, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  280. m_PrefabInternal: {fileID: 0}
  281. serializedVersion: 5
  282. m_Component:
  283. - component: {fileID: 699662252}
  284. m_Layer: 0
  285. m_Name: CATRigLLegAnkle
  286. m_TagString: Untagged
  287. m_Icon: {fileID: 0}
  288. m_NavMeshLayer: 0
  289. m_StaticEditorFlags: 0
  290. m_IsActive: 1
  291. --- !u!4 &699662252
  292. Transform:
  293. m_ObjectHideFlags: 0
  294. m_PrefabParentObject: {fileID: 465776, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  295. m_PrefabInternal: {fileID: 0}
  296. m_GameObject: {fileID: 699662251}
  297. m_LocalRotation: {x: -0.057783563, y: 0.08897453, z: -0.74264467, w: 0.6612288}
  298. m_LocalPosition: {x: -0.2574276, y: -0.0000000047683715, z: 0}
  299. m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994}
  300. m_Children: []
  301. m_Father: {fileID: 1275720199}
  302. m_RootOrder: 0
  303. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  304. --- !u!1 &710485701
  305. GameObject:
  306. m_ObjectHideFlags: 0
  307. m_PrefabParentObject: {fileID: 100500, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  308. m_PrefabInternal: {fileID: 0}
  309. serializedVersion: 5
  310. m_Component:
  311. - component: {fileID: 710485702}
  312. m_Layer: 0
  313. m_Name: CATRigLLeg1
  314. m_TagString: Untagged
  315. m_Icon: {fileID: 0}
  316. m_NavMeshLayer: 0
  317. m_StaticEditorFlags: 0
  318. m_IsActive: 1
  319. --- !u!4 &710485702
  320. Transform:
  321. m_ObjectHideFlags: 0
  322. m_PrefabParentObject: {fileID: 426632, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  323. m_PrefabInternal: {fileID: 0}
  324. m_GameObject: {fileID: 710485701}
  325. m_LocalRotation: {x: -0.09362636, y: 0.991848, z: 0.018417725, w: 0.0844538}
  326. m_LocalPosition: {x: 0.007954292, y: 0.0015335464, z: 0.16216461}
  327. m_LocalScale: {x: 0.9999999, y: 1, z: 1}
  328. m_Children:
  329. - {fileID: 1275720199}
  330. m_Father: {fileID: 1382624166}
  331. m_RootOrder: 0
  332. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  333. --- !u!1 &732506520
  334. GameObject:
  335. m_ObjectHideFlags: 0
  336. m_PrefabParentObject: {fileID: 164968, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  337. m_PrefabInternal: {fileID: 0}
  338. serializedVersion: 5
  339. m_Component:
  340. - component: {fileID: 732506521}
  341. m_Layer: 0
  342. m_Name: CATRigSpineCATRigSpine1
  343. m_TagString: Untagged
  344. m_Icon: {fileID: 0}
  345. m_NavMeshLayer: 0
  346. m_StaticEditorFlags: 0
  347. m_IsActive: 1
  348. --- !u!4 &732506521
  349. Transform:
  350. m_ObjectHideFlags: 0
  351. m_PrefabParentObject: {fileID: 403848, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  352. m_PrefabInternal: {fileID: 0}
  353. m_GameObject: {fileID: 732506520}
  354. m_LocalRotation: {x: -0.0000000011071997, y: 3.4054132e-10, z: 0.021431675, w: 0.99977034}
  355. m_LocalPosition: {x: 0, y: 0, z: 0}
  356. m_LocalScale: {x: 0.99999994, y: 1, z: 1}
  357. m_Children:
  358. - {fileID: 1238139701}
  359. m_Father: {fileID: 1382624166}
  360. m_RootOrder: 2
  361. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  362. --- !u!1 &809858536
  363. GameObject:
  364. m_ObjectHideFlags: 0
  365. m_PrefabParentObject: {fileID: 100000, guid: abe8656579c8d4194adc56c3309f2f2f, type: 2}
  366. m_PrefabInternal: {fileID: 0}
  367. serializedVersion: 5
  368. m_Component:
  369. - component: {fileID: 809858540}
  370. - component: {fileID: 809858539}
  371. - component: {fileID: 809858538}
  372. - component: {fileID: 809858537}
  373. m_Layer: 0
  374. m_Name: Ground
  375. m_TagString: Untagged
  376. m_Icon: {fileID: 0}
  377. m_NavMeshLayer: 0
  378. m_StaticEditorFlags: 0
  379. m_IsActive: 1
  380. --- !u!65 &809858537
  381. BoxCollider:
  382. m_ObjectHideFlags: 0
  383. m_PrefabParentObject: {fileID: 6500000, guid: abe8656579c8d4194adc56c3309f2f2f,
  384. type: 2}
  385. m_PrefabInternal: {fileID: 0}
  386. m_GameObject: {fileID: 809858536}
  387. m_Material: {fileID: 0}
  388. m_IsTrigger: 0
  389. m_Enabled: 1
  390. serializedVersion: 2
  391. m_Size: {x: 1, y: 1, z: 0.01}
  392. m_Center: {x: 0, y: 0, z: 0.005}
  393. --- !u!23 &809858538
  394. MeshRenderer:
  395. m_ObjectHideFlags: 0
  396. m_PrefabParentObject: {fileID: 2300000, guid: abe8656579c8d4194adc56c3309f2f2f,
  397. type: 2}
  398. m_PrefabInternal: {fileID: 0}
  399. m_GameObject: {fileID: 809858536}
  400. m_Enabled: 1
  401. m_CastShadows: 1
  402. m_ReceiveShadows: 1
  403. m_DynamicOccludee: 1
  404. m_MotionVectors: 1
  405. m_LightProbeUsage: 0
  406. m_ReflectionProbeUsage: 1
  407. m_Materials:
  408. - {fileID: 2100000, guid: 035a48a539312914f8762cf7100ec0cb, type: 2}
  409. m_StaticBatchInfo:
  410. firstSubMesh: 0
  411. subMeshCount: 0
  412. m_StaticBatchRoot: {fileID: 0}
  413. m_ProbeAnchor: {fileID: 0}
  414. m_LightProbeVolumeOverride: {fileID: 0}
  415. m_ScaleInLightmap: 1
  416. m_PreserveUVs: 0
  417. m_IgnoreNormalsForChartDetection: 0
  418. m_ImportantGI: 0
  419. m_StitchLightmapSeams: 0
  420. m_SelectedEditorRenderState: 3
  421. m_MinimumChartSize: 4
  422. m_AutoUVMaxDistance: 0.5
  423. m_AutoUVMaxAngle: 89
  424. m_LightmapParameters: {fileID: 0}
  425. m_SortingLayerID: 0
  426. m_SortingLayer: 0
  427. m_SortingOrder: 0
  428. --- !u!33 &809858539
  429. MeshFilter:
  430. m_ObjectHideFlags: 0
  431. m_PrefabParentObject: {fileID: 3300000, guid: abe8656579c8d4194adc56c3309f2f2f,
  432. type: 2}
  433. m_PrefabInternal: {fileID: 0}
  434. m_GameObject: {fileID: 809858536}
  435. m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
  436. --- !u!4 &809858540
  437. Transform:
  438. m_ObjectHideFlags: 0
  439. m_PrefabParentObject: {fileID: 400000, guid: abe8656579c8d4194adc56c3309f2f2f, type: 2}
  440. m_PrefabInternal: {fileID: 0}
  441. m_GameObject: {fileID: 809858536}
  442. m_LocalRotation: {x: 0.7071069, y: 0, z: 0, w: 0.70710677}
  443. m_LocalPosition: {x: 0, y: 0, z: 0}
  444. m_LocalScale: {x: 100, y: 100, z: 100}
  445. m_Children: []
  446. m_Father: {fileID: 0}
  447. m_RootOrder: 2
  448. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  449. --- !u!1 &837107747
  450. GameObject:
  451. m_ObjectHideFlags: 0
  452. m_PrefabParentObject: {fileID: 145334, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  453. m_PrefabInternal: {fileID: 0}
  454. serializedVersion: 5
  455. m_Component:
  456. - component: {fileID: 837107748}
  457. - component: {fileID: 837107749}
  458. m_Layer: 0
  459. m_Name: BaseHuman
  460. m_TagString: Untagged
  461. m_Icon: {fileID: 0}
  462. m_NavMeshLayer: 0
  463. m_StaticEditorFlags: 0
  464. m_IsActive: 1
  465. --- !u!4 &837107748
  466. Transform:
  467. m_ObjectHideFlags: 0
  468. m_PrefabParentObject: {fileID: 470644, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  469. m_PrefabInternal: {fileID: 0}
  470. m_GameObject: {fileID: 837107747}
  471. m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
  472. m_LocalPosition: {x: 0, y: 0, z: 0}
  473. m_LocalScale: {x: 1, y: 1, z: 1}
  474. m_Children: []
  475. m_Father: {fileID: 1519739961}
  476. m_RootOrder: 0
  477. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  478. --- !u!137 &837107749
  479. SkinnedMeshRenderer:
  480. m_ObjectHideFlags: 0
  481. m_PrefabParentObject: {fileID: 13725840, guid: 1798da154b0724ce39ecfe02dc3d242c,
  482. type: 2}
  483. m_PrefabInternal: {fileID: 0}
  484. m_GameObject: {fileID: 837107747}
  485. m_Enabled: 1
  486. m_CastShadows: 1
  487. m_ReceiveShadows: 1
  488. m_DynamicOccludee: 1
  489. m_MotionVectors: 1
  490. m_LightProbeUsage: 1
  491. m_ReflectionProbeUsage: 1
  492. m_Materials:
  493. - {fileID: 2100000, guid: cbdd696bd322449e79455923a4f20130, type: 2}
  494. m_StaticBatchInfo:
  495. firstSubMesh: 0
  496. subMeshCount: 0
  497. m_StaticBatchRoot: {fileID: 0}
  498. m_ProbeAnchor: {fileID: 0}
  499. m_LightProbeVolumeOverride: {fileID: 0}
  500. m_ScaleInLightmap: 1
  501. m_PreserveUVs: 0
  502. m_IgnoreNormalsForChartDetection: 0
  503. m_ImportantGI: 0
  504. m_StitchLightmapSeams: 0
  505. m_SelectedEditorRenderState: 3
  506. m_MinimumChartSize: 4
  507. m_AutoUVMaxDistance: 0.5
  508. m_AutoUVMaxAngle: 89
  509. m_LightmapParameters: {fileID: 0}
  510. m_SortingLayerID: 0
  511. m_SortingLayer: 0
  512. m_SortingOrder: 0
  513. serializedVersion: 2
  514. m_Quality: 0
  515. m_UpdateWhenOffscreen: 0
  516. m_SkinnedMotionVectors: 1
  517. m_Mesh: {fileID: 4300000, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
  518. m_Bones:
  519. - {fileID: 1848719935}
  520. - {fileID: 1519304397}
  521. - {fileID: 956211257}
  522. - {fileID: 1238139701}
  523. - {fileID: 732506521}
  524. - {fileID: 1382624166}
  525. - {fileID: 710485702}
  526. - {fileID: 143286548}
  527. - {fileID: 1105907839}
  528. - {fileID: 699662252}
  529. - {fileID: 1275720199}
  530. - {fileID: 170596526}
  531. - {fileID: 1572987589}
  532. - {fileID: 1601801684}
  533. - {fileID: 1522920577}
  534. - {fileID: 1214625613}
  535. - {fileID: 1247203786}
  536. - {fileID: 468018223}
  537. - {fileID: 2073001480}
  538. - {fileID: 2109641217}
  539. m_BlendShapeWeights: []
  540. m_RootBone: {fileID: 1382624166}
  541. m_AABB:
  542. m_Center: {x: -0.22518146, y: -0.030516714, z: -0.0045350194}
  543. m_Extent: {x: 0.77781427, y: 0.25805897, z: 0.97267467}
  544. m_DirtyAABB: 0
  545. --- !u!1 &956211256
  546. GameObject:
  547. m_ObjectHideFlags: 0
  548. m_PrefabParentObject: {fileID: 152682, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  549. m_PrefabInternal: {fileID: 0}
  550. serializedVersion: 5
  551. m_Component:
  552. - component: {fileID: 956211257}
  553. m_Layer: 0
  554. m_Name: CATRigHub002
  555. m_TagString: Untagged
  556. m_Icon: {fileID: 0}
  557. m_NavMeshLayer: 0
  558. m_StaticEditorFlags: 0
  559. m_IsActive: 1
  560. --- !u!4 &956211257
  561. Transform:
  562. m_ObjectHideFlags: 0
  563. m_PrefabParentObject: {fileID: 429500, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  564. m_PrefabInternal: {fileID: 0}
  565. m_GameObject: {fileID: 956211256}
  566. m_LocalRotation: {x: 0.000000006019509, y: 0.0000000111544285, z: 0.058747947, w: 0.99827284}
  567. m_LocalPosition: {x: -0.18972534, y: 0, z: 2.2737367e-15}
  568. m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1}
  569. m_Children:
  570. - {fileID: 1105907839}
  571. - {fileID: 1247203786}
  572. - {fileID: 1519304397}
  573. m_Father: {fileID: 1238139701}
  574. m_RootOrder: 0
  575. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  576. --- !u!1 &987842907
  577. GameObject:
  578. m_ObjectHideFlags: 0
  579. m_PrefabParentObject: {fileID: 0}
  580. m_PrefabInternal: {fileID: 0}
  581. serializedVersion: 5
  582. m_Component:
  583. - component: {fileID: 987842909}
  584. - component: {fileID: 987842908}
  585. m_Layer: 0
  586. m_Name: Directional light
  587. m_TagString: Untagged
  588. m_Icon: {fileID: 0}
  589. m_NavMeshLayer: 0
  590. m_StaticEditorFlags: 0
  591. m_IsActive: 1
  592. --- !u!108 &987842908
  593. Light:
  594. m_ObjectHideFlags: 0
  595. m_PrefabParentObject: {fileID: 0}
  596. m_PrefabInternal: {fileID: 0}
  597. m_GameObject: {fileID: 987842907}
  598. m_Enabled: 1
  599. serializedVersion: 8
  600. m_Type: 1
  601. m_Color: {r: 1, g: 1, b: 1, a: 1}
  602. m_Intensity: 1
  603. m_Range: 10
  604. m_SpotAngle: 30
  605. m_CookieSize: 10
  606. m_Shadows:
  607. m_Type: 2
  608. m_Resolution: -1
  609. m_CustomResolution: -1
  610. m_Strength: 0.8
  611. m_Bias: 0.03
  612. m_NormalBias: 0.4
  613. m_NearPlane: 0.2
  614. m_Cookie: {fileID: 0}
  615. m_DrawHalo: 0
  616. m_Flare: {fileID: 0}
  617. m_RenderMode: 0
  618. m_CullingMask:
  619. serializedVersion: 2
  620. m_Bits: 4294967295
  621. m_Lightmapping: 1
  622. m_AreaSize: {x: 1, y: 1}
  623. m_BounceIntensity: 1
  624. m_ColorTemperature: 6570
  625. m_UseColorTemperature: 0
  626. m_ShadowRadius: 0
  627. m_ShadowAngle: 0
  628. --- !u!4 &987842909
  629. Transform:
  630. m_ObjectHideFlags: 0
  631. m_PrefabParentObject: {fileID: 0}
  632. m_PrefabInternal: {fileID: 0}
  633. m_GameObject: {fileID: 987842907}
  634. m_LocalRotation: {x: -0.0040427675, y: -0.90626615, z: 0.4225993, w: -0.00866975}
  635. m_LocalPosition: {x: 0.2878244, y: 3.633855, z: 0.7286153}
  636. m_LocalScale: {x: 1, y: 1, z: 1}
  637. m_Children: []
  638. m_Father: {fileID: 0}
  639. m_RootOrder: 1
  640. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  641. --- !u!1 &1105907838
  642. GameObject:
  643. m_ObjectHideFlags: 0
  644. m_PrefabParentObject: {fileID: 195194, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  645. m_PrefabInternal: {fileID: 0}
  646. serializedVersion: 5
  647. m_Component:
  648. - component: {fileID: 1105907839}
  649. m_Layer: 0
  650. m_Name: CATRigLArmCollarbone
  651. m_TagString: Untagged
  652. m_Icon: {fileID: 0}
  653. m_NavMeshLayer: 0
  654. m_StaticEditorFlags: 0
  655. m_IsActive: 1
  656. --- !u!4 &1105907839
  657. Transform:
  658. m_ObjectHideFlags: 0
  659. m_PrefabParentObject: {fileID: 466644, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  660. m_PrefabInternal: {fileID: 0}
  661. m_GameObject: {fileID: 1105907838}
  662. m_LocalRotation: {x: 0.09813666, y: 0.7747543, z: -0.12888643, w: 0.6111573}
  663. m_LocalPosition: {x: -0.048742216, y: -0.010116119, z: 0.117802165}
  664. m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001}
  665. m_Children:
  666. - {fileID: 143286548}
  667. m_Father: {fileID: 956211257}
  668. m_RootOrder: 0
  669. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  670. --- !u!1 &1189322080
  671. GameObject:
  672. m_ObjectHideFlags: 0
  673. m_PrefabParentObject: {fileID: 0}
  674. m_PrefabInternal: {fileID: 0}
  675. serializedVersion: 5
  676. m_Component:
  677. - component: {fileID: 1189322082}
  678. - component: {fileID: 1189322081}
  679. m_Layer: 0
  680. m_Name: READ ME!
  681. m_TagString: Untagged
  682. m_Icon: {fileID: 0}
  683. m_NavMeshLayer: 0
  684. m_StaticEditorFlags: 0
  685. m_IsActive: 1
  686. --- !u!114 &1189322081
  687. MonoBehaviour:
  688. m_ObjectHideFlags: 0
  689. m_PrefabParentObject: {fileID: 0}
  690. m_PrefabInternal: {fileID: 0}
  691. m_GameObject: {fileID: 1189322080}
  692. m_Enabled: 1
  693. m_EditorHideFlags: 0
  694. m_Script: {fileID: 11500000, guid: 92471cc1733c49042be56cd39b4b6e5e, type: 3}
  695. m_Name:
  696. m_EditorClassIdentifier:
  697. text: 'Inertia is an effect of pseudo-physics, it makes the effectors follow their
  698. bones around in spring-like motion. This produces a cool cartoonish animation
  699. effect.
  700. Inertia.cs is a FBBIK effector position offset modifier (like Amplifier, Recoil
  701. and others that extend OffsetModifier.cs). It means that it works by adding to
  702. the positionOffset value of the effectors each frame. Effector position and positionWeight
  703. override positionOffset so you can use Inertia, and still be free to pin the hands
  704. or use the Interaction System whenever you need. Another advantage of that design
  705. is that you are also able to use multiple offset modifiers simultaneously, the
  706. position offsets will work additively.'
  707. --- !u!4 &1189322082
  708. Transform:
  709. m_ObjectHideFlags: 0
  710. m_PrefabParentObject: {fileID: 0}
  711. m_PrefabInternal: {fileID: 0}
  712. m_GameObject: {fileID: 1189322080}
  713. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  714. m_LocalPosition: {x: -0.32265368, y: 1.5836605, z: 0.343359}
  715. m_LocalScale: {x: 1, y: 1, z: 1}
  716. m_Children: []
  717. m_Father: {fileID: 0}
  718. m_RootOrder: 0
  719. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  720. --- !u!1 &1214625612
  721. GameObject:
  722. m_ObjectHideFlags: 0
  723. m_PrefabParentObject: {fileID: 198868, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  724. m_PrefabInternal: {fileID: 0}
  725. serializedVersion: 5
  726. m_Component:
  727. - component: {fileID: 1214625613}
  728. m_Layer: 0
  729. m_Name: CATRigRArm1
  730. m_TagString: Untagged
  731. m_Icon: {fileID: 0}
  732. m_NavMeshLayer: 0
  733. m_StaticEditorFlags: 0
  734. m_IsActive: 1
  735. --- !u!4 &1214625613
  736. Transform:
  737. m_ObjectHideFlags: 0
  738. m_PrefabParentObject: {fileID: 416498, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  739. m_PrefabInternal: {fileID: 0}
  740. m_GameObject: {fileID: 1214625612}
  741. m_LocalRotation: {x: 0.0130794505, y: 0.15263511, z: 0.17331208, w: 0.9728794}
  742. m_LocalPosition: {x: -0.124797, y: -0.0000000047683715, z: 0}
  743. m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001}
  744. m_Children:
  745. - {fileID: 2109641217}
  746. m_Father: {fileID: 1247203786}
  747. m_RootOrder: 0
  748. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  749. --- !u!1 &1238139700
  750. GameObject:
  751. m_ObjectHideFlags: 0
  752. m_PrefabParentObject: {fileID: 100314, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  753. m_PrefabInternal: {fileID: 0}
  754. serializedVersion: 5
  755. m_Component:
  756. - component: {fileID: 1238139701}
  757. m_Layer: 0
  758. m_Name: CATRigSpine2
  759. m_TagString: Untagged
  760. m_Icon: {fileID: 0}
  761. m_NavMeshLayer: 0
  762. m_StaticEditorFlags: 0
  763. m_IsActive: 1
  764. --- !u!4 &1238139701
  765. Transform:
  766. m_ObjectHideFlags: 0
  767. m_PrefabParentObject: {fileID: 488244, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  768. m_PrefabInternal: {fileID: 0}
  769. m_GameObject: {fileID: 1238139700}
  770. m_LocalRotation: {x: -0.0000000036675452, y: 0.00000002548152, z: 0.17538829, w: 0.98449934}
  771. m_LocalPosition: {x: -0.18972534, y: -0.000000009536743, z: -1.1368684e-15}
  772. m_LocalScale: {x: 1, y: 0.99999994, z: 1}
  773. m_Children:
  774. - {fileID: 956211257}
  775. m_Father: {fileID: 732506521}
  776. m_RootOrder: 0
  777. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  778. --- !u!1 &1247203785
  779. GameObject:
  780. m_ObjectHideFlags: 0
  781. m_PrefabParentObject: {fileID: 120582, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  782. m_PrefabInternal: {fileID: 0}
  783. serializedVersion: 5
  784. m_Component:
  785. - component: {fileID: 1247203786}
  786. m_Layer: 0
  787. m_Name: CATRigRArmCollarbone
  788. m_TagString: Untagged
  789. m_Icon: {fileID: 0}
  790. m_NavMeshLayer: 0
  791. m_StaticEditorFlags: 0
  792. m_IsActive: 1
  793. --- !u!4 &1247203786
  794. Transform:
  795. m_ObjectHideFlags: 0
  796. m_PrefabParentObject: {fileID: 436244, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  797. m_PrefabInternal: {fileID: 0}
  798. m_GameObject: {fileID: 1247203785}
  799. m_LocalRotation: {x: -0.098136656, y: -0.7747543, z: -0.12888643, w: 0.6111573}
  800. m_LocalPosition: {x: -0.048742216, y: -0.010116119, z: -0.117802165}
  801. m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1}
  802. m_Children:
  803. - {fileID: 1214625613}
  804. m_Father: {fileID: 956211257}
  805. m_RootOrder: 1
  806. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  807. --- !u!1 &1269439773
  808. GameObject:
  809. m_ObjectHideFlags: 0
  810. m_PrefabParentObject: {fileID: 186966, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  811. m_PrefabInternal: {fileID: 0}
  812. serializedVersion: 5
  813. m_Component:
  814. - component: {fileID: 1269439774}
  815. - component: {fileID: 1269439778}
  816. - component: {fileID: 1269439777}
  817. - component: {fileID: 1269439776}
  818. - component: {fileID: 1269439775}
  819. m_Layer: 0
  820. m_Name: Camera
  821. m_TagString: Untagged
  822. m_Icon: {fileID: 0}
  823. m_NavMeshLayer: 0
  824. m_StaticEditorFlags: 0
  825. m_IsActive: 1
  826. --- !u!4 &1269439774
  827. Transform:
  828. m_ObjectHideFlags: 0
  829. m_PrefabParentObject: {fileID: 400638, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  830. m_PrefabInternal: {fileID: 0}
  831. m_GameObject: {fileID: 1269439773}
  832. m_LocalRotation: {x: 0.03746244, y: -0.9043602, z: 0.07815902, w: 0.41787624}
  833. m_LocalPosition: {x: 1.1179128, y: 1.298175, z: 1.770877}
  834. m_LocalScale: {x: 1, y: 1, z: 1}
  835. m_Children: []
  836. m_Father: {fileID: 2035248807}
  837. m_RootOrder: 0
  838. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  839. --- !u!114 &1269439775
  840. MonoBehaviour:
  841. m_ObjectHideFlags: 0
  842. m_PrefabParentObject: {fileID: 11478394, guid: 1798da154b0724ce39ecfe02dc3d242c,
  843. type: 2}
  844. m_PrefabInternal: {fileID: 0}
  845. m_GameObject: {fileID: 1269439773}
  846. m_Enabled: 1
  847. m_EditorHideFlags: 0
  848. m_Script: {fileID: 11500000, guid: 85ef3e8d5c77f405d8ab70a643d6a2f3, type: 3}
  849. m_Name:
  850. m_EditorClassIdentifier:
  851. target: {fileID: 2144027495}
  852. rotationSpace: {fileID: 0}
  853. updateMode: 2
  854. lockCursor: 1
  855. smoothFollow: 1
  856. offset: {x: 0.5, y: 0, z: 0.5}
  857. followSpeed: 10
  858. rotationSensitivity: 2.5
  859. yMinLimit: -89
  860. yMaxLimit: 89
  861. rotateAlways: 1
  862. rotateOnLeftButton: 0
  863. rotateOnRightButton: 0
  864. rotateOnMiddleButton: 0
  865. distance: 4
  866. minDistance: 2.5
  867. maxDistance: 5
  868. zoomSpeed: 5
  869. zoomSensitivity: 0.1
  870. blockingLayers:
  871. serializedVersion: 2
  872. m_Bits: 0
  873. blockingRadius: 1
  874. blockingSmoothTime: 0.1
  875. blockingOriginOffset: 0
  876. blockedOffset: 0.5
  877. --- !u!92 &1269439776
  878. Behaviour:
  879. m_ObjectHideFlags: 0
  880. m_PrefabParentObject: {fileID: 9272166, guid: 1798da154b0724ce39ecfe02dc3d242c,
  881. type: 2}
  882. m_PrefabInternal: {fileID: 0}
  883. m_GameObject: {fileID: 1269439773}
  884. m_Enabled: 1
  885. --- !u!124 &1269439777
  886. Behaviour:
  887. m_ObjectHideFlags: 0
  888. m_PrefabParentObject: {fileID: 12421028, guid: 1798da154b0724ce39ecfe02dc3d242c,
  889. type: 2}
  890. m_PrefabInternal: {fileID: 0}
  891. m_GameObject: {fileID: 1269439773}
  892. m_Enabled: 1
  893. --- !u!20 &1269439778
  894. Camera:
  895. m_ObjectHideFlags: 0
  896. m_PrefabParentObject: {fileID: 2043748, guid: 1798da154b0724ce39ecfe02dc3d242c,
  897. type: 2}
  898. m_PrefabInternal: {fileID: 0}
  899. m_GameObject: {fileID: 1269439773}
  900. m_Enabled: 1
  901. serializedVersion: 2
  902. m_ClearFlags: 1
  903. m_BackGroundColor: {r: 0.27450982, g: 0.27450982, b: 0.27450982, a: 0.019607844}
  904. m_NormalizedViewPortRect:
  905. serializedVersion: 2
  906. x: 0
  907. y: 0
  908. width: 1
  909. height: 1
  910. near clip plane: 0.3
  911. far clip plane: 1000
  912. field of view: 60
  913. orthographic: 0
  914. orthographic size: 5
  915. m_Depth: 0
  916. m_CullingMask:
  917. serializedVersion: 2
  918. m_Bits: 4294967295
  919. m_RenderingPath: -1
  920. m_TargetTexture: {fileID: 0}
  921. m_TargetDisplay: 0
  922. m_TargetEye: 3
  923. m_HDR: 0
  924. m_AllowMSAA: 1
  925. m_AllowDynamicResolution: 0
  926. m_ForceIntoRT: 0
  927. m_OcclusionCulling: 1
  928. m_StereoConvergence: 10
  929. m_StereoSeparation: 0.022
  930. --- !u!1 &1275720198
  931. GameObject:
  932. m_ObjectHideFlags: 0
  933. m_PrefabParentObject: {fileID: 166814, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  934. m_PrefabInternal: {fileID: 0}
  935. serializedVersion: 5
  936. m_Component:
  937. - component: {fileID: 1275720199}
  938. m_Layer: 0
  939. m_Name: CATRigLLeg2
  940. m_TagString: Untagged
  941. m_Icon: {fileID: 0}
  942. m_NavMeshLayer: 0
  943. m_StaticEditorFlags: 0
  944. m_IsActive: 1
  945. --- !u!4 &1275720199
  946. Transform:
  947. m_ObjectHideFlags: 0
  948. m_PrefabParentObject: {fileID: 450738, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  949. m_PrefabInternal: {fileID: 0}
  950. m_GameObject: {fileID: 1275720198}
  951. m_LocalRotation: {x: -0.002522602, y: -0.019652104, z: 0.080868505, w: 0.99652785}
  952. m_LocalPosition: {x: -0.27976963, y: 0, z: 0.000000019073486}
  953. m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999}
  954. m_Children:
  955. - {fileID: 699662252}
  956. m_Father: {fileID: 710485702}
  957. m_RootOrder: 0
  958. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  959. --- !u!1 &1382624165
  960. GameObject:
  961. m_ObjectHideFlags: 0
  962. m_PrefabParentObject: {fileID: 118632, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  963. m_PrefabInternal: {fileID: 0}
  964. serializedVersion: 5
  965. m_Component:
  966. - component: {fileID: 1382624166}
  967. m_Layer: 0
  968. m_Name: CATRigHub001
  969. m_TagString: Untagged
  970. m_Icon: {fileID: 0}
  971. m_NavMeshLayer: 0
  972. m_StaticEditorFlags: 0
  973. m_IsActive: 1
  974. --- !u!4 &1382624166
  975. Transform:
  976. m_ObjectHideFlags: 0
  977. m_PrefabParentObject: {fileID: 479278, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  978. m_PrefabInternal: {fileID: 0}
  979. m_GameObject: {fileID: 1382624165}
  980. m_LocalRotation: {x: 0.54527736, y: -0.4501918, z: -0.5452773, w: 0.45019174}
  981. m_LocalPosition: {x: 4.4195757e-14, y: 0.54931015, z: -0.014292181}
  982. m_LocalScale: {x: 1, y: 1.0000001, z: 1}
  983. m_Children:
  984. - {fileID: 710485702}
  985. - {fileID: 1522920577}
  986. - {fileID: 732506521}
  987. m_Father: {fileID: 1519739961}
  988. m_RootOrder: 1
  989. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  990. --- !u!1 &1404832168
  991. GameObject:
  992. m_ObjectHideFlags: 0
  993. m_PrefabParentObject: {fileID: 189666, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  994. m_PrefabInternal: {fileID: 0}
  995. serializedVersion: 5
  996. m_Component:
  997. - component: {fileID: 1404832169}
  998. m_Layer: 0
  999. m_Name: CATRigRLegPlatform
  1000. m_TagString: Untagged
  1001. m_Icon: {fileID: 0}
  1002. m_NavMeshLayer: 0
  1003. m_StaticEditorFlags: 0
  1004. m_IsActive: 1
  1005. --- !u!4 &1404832169
  1006. Transform:
  1007. m_ObjectHideFlags: 0
  1008. m_PrefabParentObject: {fileID: 418442, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1009. m_PrefabInternal: {fileID: 0}
  1010. m_GameObject: {fileID: 1404832168}
  1011. m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
  1012. m_LocalPosition: {x: 0.26239508, y: -0.0000000023284872, z: 0.10179681}
  1013. m_LocalScale: {x: 1, y: 1, z: 1}
  1014. m_Children: []
  1015. m_Father: {fileID: 1519739961}
  1016. m_RootOrder: 3
  1017. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1018. --- !u!1 &1407343214
  1019. GameObject:
  1020. m_ObjectHideFlags: 0
  1021. m_PrefabParentObject: {fileID: 131514, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1022. m_PrefabInternal: {fileID: 0}
  1023. serializedVersion: 5
  1024. m_Component:
  1025. - component: {fileID: 1407343215}
  1026. m_Layer: 0
  1027. m_Name: Character001
  1028. m_TagString: Untagged
  1029. m_Icon: {fileID: 0}
  1030. m_NavMeshLayer: 0
  1031. m_StaticEditorFlags: 0
  1032. m_IsActive: 1
  1033. --- !u!4 &1407343215
  1034. Transform:
  1035. m_ObjectHideFlags: 0
  1036. m_PrefabParentObject: {fileID: 432516, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1037. m_PrefabInternal: {fileID: 0}
  1038. m_GameObject: {fileID: 1407343214}
  1039. m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
  1040. m_LocalPosition: {x: 0, y: 0, z: 0}
  1041. m_LocalScale: {x: 1, y: 1, z: 1}
  1042. m_Children: []
  1043. m_Father: {fileID: 1519739961}
  1044. m_RootOrder: 4
  1045. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1046. --- !u!1 &1479411374
  1047. GameObject:
  1048. m_ObjectHideFlags: 0
  1049. m_PrefabParentObject: {fileID: 186068, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1050. m_PrefabInternal: {fileID: 0}
  1051. serializedVersion: 5
  1052. m_Component:
  1053. - component: {fileID: 1479411375}
  1054. - component: {fileID: 1479411377}
  1055. - component: {fileID: 1479411376}
  1056. m_Layer: 0
  1057. m_Name: Shield
  1058. m_TagString: Untagged
  1059. m_Icon: {fileID: 0}
  1060. m_NavMeshLayer: 0
  1061. m_StaticEditorFlags: 0
  1062. m_IsActive: 1
  1063. --- !u!4 &1479411375
  1064. Transform:
  1065. m_ObjectHideFlags: 0
  1066. m_PrefabParentObject: {fileID: 472700, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1067. m_PrefabInternal: {fileID: 0}
  1068. m_GameObject: {fileID: 1479411374}
  1069. m_LocalRotation: {x: 0.5682233, y: 0.45188382, z: -0.387877, w: 0.5678686}
  1070. m_LocalPosition: {x: -0.08587612, y: -0.031050643, z: 0.0098140715}
  1071. m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
  1072. m_Children: []
  1073. m_Father: {fileID: 2073001480}
  1074. m_RootOrder: 0
  1075. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1076. --- !u!23 &1479411376
  1077. MeshRenderer:
  1078. m_ObjectHideFlags: 0
  1079. m_PrefabParentObject: {fileID: 2391094, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1080. type: 2}
  1081. m_PrefabInternal: {fileID: 0}
  1082. m_GameObject: {fileID: 1479411374}
  1083. m_Enabled: 1
  1084. m_CastShadows: 1
  1085. m_ReceiveShadows: 1
  1086. m_DynamicOccludee: 1
  1087. m_MotionVectors: 1
  1088. m_LightProbeUsage: 1
  1089. m_ReflectionProbeUsage: 1
  1090. m_Materials:
  1091. - {fileID: 2100000, guid: 049484920c0cd48568fe4a6e8df94859, type: 2}
  1092. m_StaticBatchInfo:
  1093. firstSubMesh: 0
  1094. subMeshCount: 0
  1095. m_StaticBatchRoot: {fileID: 0}
  1096. m_ProbeAnchor: {fileID: 0}
  1097. m_LightProbeVolumeOverride: {fileID: 0}
  1098. m_ScaleInLightmap: 1
  1099. m_PreserveUVs: 0
  1100. m_IgnoreNormalsForChartDetection: 0
  1101. m_ImportantGI: 0
  1102. m_StitchLightmapSeams: 0
  1103. m_SelectedEditorRenderState: 3
  1104. m_MinimumChartSize: 4
  1105. m_AutoUVMaxDistance: 0.5
  1106. m_AutoUVMaxAngle: 89
  1107. m_LightmapParameters: {fileID: 0}
  1108. m_SortingLayerID: 0
  1109. m_SortingLayer: 0
  1110. m_SortingOrder: 0
  1111. --- !u!33 &1479411377
  1112. MeshFilter:
  1113. m_ObjectHideFlags: 0
  1114. m_PrefabParentObject: {fileID: 3306666, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1115. type: 2}
  1116. m_PrefabInternal: {fileID: 0}
  1117. m_GameObject: {fileID: 1479411374}
  1118. m_Mesh: {fileID: 4300004, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
  1119. --- !u!1 &1519304396
  1120. GameObject:
  1121. m_ObjectHideFlags: 0
  1122. m_PrefabParentObject: {fileID: 135766, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1123. m_PrefabInternal: {fileID: 0}
  1124. serializedVersion: 5
  1125. m_Component:
  1126. - component: {fileID: 1519304397}
  1127. m_Layer: 0
  1128. m_Name: CATRigSpine
  1129. m_TagString: Untagged
  1130. m_Icon: {fileID: 0}
  1131. m_NavMeshLayer: 0
  1132. m_StaticEditorFlags: 0
  1133. m_IsActive: 1
  1134. --- !u!4 &1519304397
  1135. Transform:
  1136. m_ObjectHideFlags: 0
  1137. m_PrefabParentObject: {fileID: 413378, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1138. m_PrefabInternal: {fileID: 0}
  1139. m_GameObject: {fileID: 1519304396}
  1140. m_LocalRotation: {x: 0.0000000051499907, y: 0.000000030323818, z: -0.40744588, w: 0.91322935}
  1141. m_LocalPosition: {x: -0.06990951, y: -0.012702427, z: 0.0000000019180106}
  1142. m_LocalScale: {x: 1, y: 1, z: 0.99999994}
  1143. m_Children:
  1144. - {fileID: 1848719935}
  1145. m_Father: {fileID: 956211257}
  1146. m_RootOrder: 2
  1147. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1148. --- !u!1 &1519739960
  1149. GameObject:
  1150. m_ObjectHideFlags: 0
  1151. m_PrefabParentObject: {fileID: 119128, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1152. m_PrefabInternal: {fileID: 0}
  1153. serializedVersion: 5
  1154. m_Component:
  1155. - component: {fileID: 1519739961}
  1156. - component: {fileID: 1519739966}
  1157. - component: {fileID: 1519739965}
  1158. - component: {fileID: 1519739964}
  1159. - component: {fileID: 1519739963}
  1160. - component: {fileID: 1519739962}
  1161. m_Layer: 0
  1162. m_Name: Viking Humanoid
  1163. m_TagString: Untagged
  1164. m_Icon: {fileID: 0}
  1165. m_NavMeshLayer: 0
  1166. m_StaticEditorFlags: 0
  1167. m_IsActive: 1
  1168. --- !u!4 &1519739961
  1169. Transform:
  1170. m_ObjectHideFlags: 0
  1171. m_PrefabParentObject: {fileID: 405650, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1172. m_PrefabInternal: {fileID: 0}
  1173. m_GameObject: {fileID: 1519739960}
  1174. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1175. m_LocalPosition: {x: 0, y: 0, z: 0}
  1176. m_LocalScale: {x: 1, y: 1, z: 1}
  1177. m_Children:
  1178. - {fileID: 837107748}
  1179. - {fileID: 1382624166}
  1180. - {fileID: 2134144479}
  1181. - {fileID: 1404832169}
  1182. - {fileID: 1407343215}
  1183. - {fileID: 2144027495}
  1184. m_Father: {fileID: 2035248807}
  1185. m_RootOrder: 1
  1186. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1187. --- !u!143 &1519739962
  1188. CharacterController:
  1189. m_ObjectHideFlags: 0
  1190. m_PrefabParentObject: {fileID: 0}
  1191. m_PrefabInternal: {fileID: 0}
  1192. m_GameObject: {fileID: 1519739960}
  1193. m_Material: {fileID: 0}
  1194. m_IsTrigger: 0
  1195. m_Enabled: 1
  1196. serializedVersion: 2
  1197. m_Height: 1.2
  1198. m_Radius: 0.3
  1199. m_SlopeLimit: 45
  1200. m_StepOffset: 0.3
  1201. m_SkinWidth: 0.08
  1202. m_MinMoveDistance: 0.001
  1203. m_Center: {x: 0, y: 0.68, z: 0}
  1204. --- !u!114 &1519739963
  1205. MonoBehaviour:
  1206. m_ObjectHideFlags: 0
  1207. m_PrefabParentObject: {fileID: 11489990, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1208. type: 2}
  1209. m_PrefabInternal: {fileID: 0}
  1210. m_GameObject: {fileID: 1519739960}
  1211. m_Enabled: 1
  1212. m_EditorHideFlags: 0
  1213. m_Script: {fileID: 11500000, guid: a70e525c82ce9413fa4d940ad7fcf1db, type: 3}
  1214. m_Name:
  1215. m_EditorClassIdentifier:
  1216. fixTransforms: 1
  1217. references:
  1218. root: {fileID: 1519739961}
  1219. pelvis: {fileID: 1382624166}
  1220. leftThigh: {fileID: 710485702}
  1221. leftCalf: {fileID: 1275720199}
  1222. leftFoot: {fileID: 699662252}
  1223. rightThigh: {fileID: 1522920577}
  1224. rightCalf: {fileID: 468018223}
  1225. rightFoot: {fileID: 1601801684}
  1226. leftUpperArm: {fileID: 143286548}
  1227. leftForearm: {fileID: 1572987589}
  1228. leftHand: {fileID: 170596526}
  1229. rightUpperArm: {fileID: 1214625613}
  1230. rightForearm: {fileID: 2109641217}
  1231. rightHand: {fileID: 2073001480}
  1232. head: {fileID: 1519304397}
  1233. spine:
  1234. - {fileID: 1238139701}
  1235. - {fileID: 956211257}
  1236. eyes: []
  1237. solver:
  1238. executedInEditor: 0
  1239. IKPosition: {x: 0, y: 0, z: 0}
  1240. IKPositionWeight: 1
  1241. root: {fileID: 1519739961}
  1242. iterations: 4
  1243. chain:
  1244. - pin: 0
  1245. pull: 1
  1246. push: 0
  1247. pushParent: 0
  1248. reach: 0.1
  1249. reachSmoothing: 1
  1250. pushSmoothing: 1
  1251. nodes:
  1252. - transform: {fileID: 1238139701}
  1253. weight: 1
  1254. solverPosition: {x: 0, y: 0, z: 0}
  1255. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1256. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1257. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1258. length: 0
  1259. effectorPositionWeight: 0
  1260. effectorRotationWeight: 0
  1261. offset: {x: 0, y: 0, z: 0}
  1262. children: 01000000020000000300000004000000
  1263. childConstraints:
  1264. - pushElasticity: 0
  1265. pullElasticity: 1
  1266. bone1: {fileID: 143286548}
  1267. bone2: {fileID: 1522920577}
  1268. - pushElasticity: 0
  1269. pullElasticity: 1
  1270. bone1: {fileID: 1214625613}
  1271. bone2: {fileID: 710485702}
  1272. - pushElasticity: 0
  1273. pullElasticity: 0
  1274. bone1: {fileID: 143286548}
  1275. bone2: {fileID: 1214625613}
  1276. - pushElasticity: 0
  1277. pullElasticity: 0
  1278. bone1: {fileID: 710485702}
  1279. bone2: {fileID: 1522920577}
  1280. bendConstraint:
  1281. bone1: {fileID: 0}
  1282. bone2: {fileID: 0}
  1283. bone3: {fileID: 0}
  1284. bendGoal: {fileID: 0}
  1285. direction: {x: 1, y: 0, z: 0}
  1286. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  1287. weight: 0
  1288. defaultLocalDirection: {x: 0, y: 0, z: 0}
  1289. defaultChildDirection: {x: 0, y: 0, z: 0}
  1290. - pin: 0
  1291. pull: 1
  1292. push: 0
  1293. pushParent: 0
  1294. reach: 0.05
  1295. reachSmoothing: 1
  1296. pushSmoothing: 1
  1297. nodes:
  1298. - transform: {fileID: 143286548}
  1299. weight: 1
  1300. solverPosition: {x: 0, y: 0, z: 0}
  1301. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1302. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1303. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1304. length: 0
  1305. effectorPositionWeight: 0
  1306. effectorRotationWeight: 0
  1307. offset: {x: 0, y: 0, z: 0}
  1308. - transform: {fileID: 1572987589}
  1309. weight: 1
  1310. solverPosition: {x: 0, y: 0, z: 0}
  1311. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1312. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1313. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1314. length: 0
  1315. effectorPositionWeight: 0
  1316. effectorRotationWeight: 0
  1317. offset: {x: 0, y: 0, z: 0}
  1318. - transform: {fileID: 170596526}
  1319. weight: 1
  1320. solverPosition: {x: 0, y: 0, z: 0}
  1321. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1322. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1323. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1324. length: 0
  1325. effectorPositionWeight: 0
  1326. effectorRotationWeight: 0
  1327. offset: {x: 0, y: 0, z: 0}
  1328. children:
  1329. childConstraints: []
  1330. bendConstraint:
  1331. bone1: {fileID: 0}
  1332. bone2: {fileID: 0}
  1333. bone3: {fileID: 0}
  1334. bendGoal: {fileID: 0}
  1335. direction: {x: 1, y: 0, z: 0}
  1336. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  1337. weight: 0
  1338. defaultLocalDirection: {x: 0, y: 0, z: 0}
  1339. defaultChildDirection: {x: 0, y: 0, z: 0}
  1340. - pin: 0
  1341. pull: 1
  1342. push: 0
  1343. pushParent: 0
  1344. reach: 0.05
  1345. reachSmoothing: 1
  1346. pushSmoothing: 1
  1347. nodes:
  1348. - transform: {fileID: 1214625613}
  1349. weight: 1
  1350. solverPosition: {x: 0, y: 0, z: 0}
  1351. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1352. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1353. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1354. length: 0
  1355. effectorPositionWeight: 0
  1356. effectorRotationWeight: 0
  1357. offset: {x: 0, y: 0, z: 0}
  1358. - transform: {fileID: 2109641217}
  1359. weight: 1
  1360. solverPosition: {x: 0, y: 0, z: 0}
  1361. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1362. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1363. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1364. length: 0
  1365. effectorPositionWeight: 0
  1366. effectorRotationWeight: 0
  1367. offset: {x: 0, y: 0, z: 0}
  1368. - transform: {fileID: 2073001480}
  1369. weight: 1
  1370. solverPosition: {x: 0, y: 0, z: 0}
  1371. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1372. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1373. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1374. length: 0
  1375. effectorPositionWeight: 0
  1376. effectorRotationWeight: 0
  1377. offset: {x: 0, y: 0, z: 0}
  1378. children:
  1379. childConstraints: []
  1380. bendConstraint:
  1381. bone1: {fileID: 0}
  1382. bone2: {fileID: 0}
  1383. bone3: {fileID: 0}
  1384. bendGoal: {fileID: 0}
  1385. direction: {x: 1, y: 0, z: 0}
  1386. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  1387. weight: 0
  1388. defaultLocalDirection: {x: 0, y: 0, z: 0}
  1389. defaultChildDirection: {x: 0, y: 0, z: 0}
  1390. - pin: 0
  1391. pull: 1
  1392. push: 0
  1393. pushParent: 0
  1394. reach: 0.05
  1395. reachSmoothing: 1
  1396. pushSmoothing: 1
  1397. nodes:
  1398. - transform: {fileID: 710485702}
  1399. weight: 1
  1400. solverPosition: {x: 0, y: 0, z: 0}
  1401. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1402. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1403. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1404. length: 0
  1405. effectorPositionWeight: 0
  1406. effectorRotationWeight: 0
  1407. offset: {x: 0, y: 0, z: 0}
  1408. - transform: {fileID: 1275720199}
  1409. weight: 1
  1410. solverPosition: {x: 0, y: 0, z: 0}
  1411. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1412. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1413. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1414. length: 0
  1415. effectorPositionWeight: 0
  1416. effectorRotationWeight: 0
  1417. offset: {x: 0, y: 0, z: 0}
  1418. - transform: {fileID: 699662252}
  1419. weight: 1
  1420. solverPosition: {x: 0, y: 0, z: 0}
  1421. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1422. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1423. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1424. length: 0
  1425. effectorPositionWeight: 0
  1426. effectorRotationWeight: 0
  1427. offset: {x: 0, y: 0, z: 0}
  1428. children:
  1429. childConstraints: []
  1430. bendConstraint:
  1431. bone1: {fileID: 0}
  1432. bone2: {fileID: 0}
  1433. bone3: {fileID: 0}
  1434. bendGoal: {fileID: 0}
  1435. direction: {x: 1, y: 0, z: 0}
  1436. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  1437. weight: 0
  1438. defaultLocalDirection: {x: 0, y: 0, z: 0}
  1439. defaultChildDirection: {x: 0, y: 0, z: 0}
  1440. - pin: 0
  1441. pull: 1
  1442. push: 0
  1443. pushParent: 0
  1444. reach: 0.05
  1445. reachSmoothing: 1
  1446. pushSmoothing: 1
  1447. nodes:
  1448. - transform: {fileID: 1522920577}
  1449. weight: 1
  1450. solverPosition: {x: 0, y: 0, z: 0}
  1451. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1452. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1453. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1454. length: 0
  1455. effectorPositionWeight: 0
  1456. effectorRotationWeight: 0
  1457. offset: {x: 0, y: 0, z: 0}
  1458. - transform: {fileID: 468018223}
  1459. weight: 1
  1460. solverPosition: {x: 0, y: 0, z: 0}
  1461. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1462. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1463. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1464. length: 0
  1465. effectorPositionWeight: 0
  1466. effectorRotationWeight: 0
  1467. offset: {x: 0, y: 0, z: 0}
  1468. - transform: {fileID: 1601801684}
  1469. weight: 1
  1470. solverPosition: {x: 0, y: 0, z: 0}
  1471. solverRotation: {x: 0, y: 0, z: 0, w: 1}
  1472. defaultLocalPosition: {x: 0, y: 0, z: 0}
  1473. defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
  1474. length: 0
  1475. effectorPositionWeight: 0
  1476. effectorRotationWeight: 0
  1477. offset: {x: 0, y: 0, z: 0}
  1478. children:
  1479. childConstraints: []
  1480. bendConstraint:
  1481. bone1: {fileID: 0}
  1482. bone2: {fileID: 0}
  1483. bone3: {fileID: 0}
  1484. bendGoal: {fileID: 0}
  1485. direction: {x: 1, y: 0, z: 0}
  1486. rotationOffset: {x: 0, y: 0, z: 0, w: 0}
  1487. weight: 0
  1488. defaultLocalDirection: {x: 0, y: 0, z: 0}
  1489. defaultChildDirection: {x: 0, y: 0, z: 0}
  1490. effectors:
  1491. - bone: {fileID: 1238139701}
  1492. target: {fileID: 0}
  1493. positionWeight: 0
  1494. rotationWeight: 0
  1495. position: {x: 0, y: 0, z: 0}
  1496. rotation: {x: 0, y: 0, z: 0, w: 1}
  1497. positionOffset: {x: 0, y: 0, z: 0}
  1498. effectChildNodes: 1
  1499. maintainRelativePositionWeight: 0
  1500. childBones:
  1501. - {fileID: 710485702}
  1502. - {fileID: 1522920577}
  1503. planeBone1: {fileID: 0}
  1504. planeBone2: {fileID: 0}
  1505. planeBone3: {fileID: 0}
  1506. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1507. - bone: {fileID: 143286548}
  1508. target: {fileID: 0}
  1509. positionWeight: 0
  1510. rotationWeight: 0
  1511. position: {x: 0, y: 0, z: 0}
  1512. rotation: {x: 0, y: 0, z: 0, w: 1}
  1513. positionOffset: {x: 0, y: 0, z: 0}
  1514. effectChildNodes: 1
  1515. maintainRelativePositionWeight: 0
  1516. childBones: []
  1517. planeBone1: {fileID: 0}
  1518. planeBone2: {fileID: 0}
  1519. planeBone3: {fileID: 0}
  1520. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1521. - bone: {fileID: 1214625613}
  1522. target: {fileID: 0}
  1523. positionWeight: 0
  1524. rotationWeight: 0
  1525. position: {x: 0, y: 0, z: 0}
  1526. rotation: {x: 0, y: 0, z: 0, w: 1}
  1527. positionOffset: {x: 0, y: 0, z: 0}
  1528. effectChildNodes: 1
  1529. maintainRelativePositionWeight: 0
  1530. childBones: []
  1531. planeBone1: {fileID: 0}
  1532. planeBone2: {fileID: 0}
  1533. planeBone3: {fileID: 0}
  1534. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1535. - bone: {fileID: 710485702}
  1536. target: {fileID: 0}
  1537. positionWeight: 0
  1538. rotationWeight: 0
  1539. position: {x: 0, y: 0, z: 0}
  1540. rotation: {x: 0, y: 0, z: 0, w: 1}
  1541. positionOffset: {x: 0, y: 0, z: 0}
  1542. effectChildNodes: 1
  1543. maintainRelativePositionWeight: 0
  1544. childBones: []
  1545. planeBone1: {fileID: 0}
  1546. planeBone2: {fileID: 0}
  1547. planeBone3: {fileID: 0}
  1548. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1549. - bone: {fileID: 1522920577}
  1550. target: {fileID: 0}
  1551. positionWeight: 0
  1552. rotationWeight: 0
  1553. position: {x: 0, y: 0, z: 0}
  1554. rotation: {x: 0, y: 0, z: 0, w: 1}
  1555. positionOffset: {x: 0, y: 0, z: 0}
  1556. effectChildNodes: 1
  1557. maintainRelativePositionWeight: 0
  1558. childBones: []
  1559. planeBone1: {fileID: 0}
  1560. planeBone2: {fileID: 0}
  1561. planeBone3: {fileID: 0}
  1562. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1563. - bone: {fileID: 170596526}
  1564. target: {fileID: 0}
  1565. positionWeight: 0
  1566. rotationWeight: 0
  1567. position: {x: 0, y: 0, z: 0}
  1568. rotation: {x: 0, y: 0, z: 0, w: 1}
  1569. positionOffset: {x: 0, y: 0, z: 0}
  1570. effectChildNodes: 1
  1571. maintainRelativePositionWeight: 0
  1572. childBones: []
  1573. planeBone1: {fileID: 143286548}
  1574. planeBone2: {fileID: 1214625613}
  1575. planeBone3: {fileID: 1238139701}
  1576. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1577. - bone: {fileID: 2073001480}
  1578. target: {fileID: 0}
  1579. positionWeight: 0
  1580. rotationWeight: 0
  1581. position: {x: 0, y: 0, z: 0}
  1582. rotation: {x: 0, y: 0, z: 0, w: 1}
  1583. positionOffset: {x: 0, y: 0, z: 0}
  1584. effectChildNodes: 1
  1585. maintainRelativePositionWeight: 0
  1586. childBones: []
  1587. planeBone1: {fileID: 1214625613}
  1588. planeBone2: {fileID: 143286548}
  1589. planeBone3: {fileID: 1238139701}
  1590. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1591. - bone: {fileID: 699662252}
  1592. target: {fileID: 0}
  1593. positionWeight: 0
  1594. rotationWeight: 0
  1595. position: {x: 0, y: 0, z: 0}
  1596. rotation: {x: 0, y: 0, z: 0, w: 1}
  1597. positionOffset: {x: 0, y: 0, z: 0}
  1598. effectChildNodes: 1
  1599. maintainRelativePositionWeight: 0
  1600. childBones: []
  1601. planeBone1: {fileID: 710485702}
  1602. planeBone2: {fileID: 1522920577}
  1603. planeBone3: {fileID: 1238139701}
  1604. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1605. - bone: {fileID: 1601801684}
  1606. target: {fileID: 0}
  1607. positionWeight: 0
  1608. rotationWeight: 0
  1609. position: {x: 0, y: 0, z: 0}
  1610. rotation: {x: 0, y: 0, z: 0, w: 1}
  1611. positionOffset: {x: 0, y: 0, z: 0}
  1612. effectChildNodes: 1
  1613. maintainRelativePositionWeight: 0
  1614. childBones: []
  1615. planeBone1: {fileID: 1522920577}
  1616. planeBone2: {fileID: 710485702}
  1617. planeBone3: {fileID: 1238139701}
  1618. planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
  1619. spineMapping:
  1620. spineBones:
  1621. - {fileID: 1382624166}
  1622. - {fileID: 1238139701}
  1623. - {fileID: 956211257}
  1624. leftUpperArmBone: {fileID: 143286548}
  1625. rightUpperArmBone: {fileID: 1214625613}
  1626. leftThighBone: {fileID: 710485702}
  1627. rightThighBone: {fileID: 1522920577}
  1628. iterations: 3
  1629. twistWeight: 1
  1630. boneMappings:
  1631. - bone: {fileID: 1519304397}
  1632. maintainRotationWeight: 0.57
  1633. limbMappings:
  1634. - parentBone: {fileID: 1105907839}
  1635. bone1: {fileID: 143286548}
  1636. bone2: {fileID: 1572987589}
  1637. bone3: {fileID: 170596526}
  1638. maintainRotationWeight: 0
  1639. weight: 1
  1640. - parentBone: {fileID: 1247203786}
  1641. bone1: {fileID: 1214625613}
  1642. bone2: {fileID: 2109641217}
  1643. bone3: {fileID: 2073001480}
  1644. maintainRotationWeight: 0
  1645. weight: 1
  1646. - parentBone: {fileID: 0}
  1647. bone1: {fileID: 710485702}
  1648. bone2: {fileID: 1275720199}
  1649. bone3: {fileID: 699662252}
  1650. maintainRotationWeight: 0
  1651. weight: 1
  1652. - parentBone: {fileID: 0}
  1653. bone1: {fileID: 1522920577}
  1654. bone2: {fileID: 468018223}
  1655. bone3: {fileID: 1601801684}
  1656. maintainRotationWeight: 0
  1657. weight: 1
  1658. FABRIKPass: 1
  1659. rootNode: {fileID: 1238139701}
  1660. spineStiffness: 0.5
  1661. pullBodyVertical: 0.5
  1662. pullBodyHorizontal: 0
  1663. --- !u!114 &1519739964
  1664. MonoBehaviour:
  1665. m_ObjectHideFlags: 0
  1666. m_PrefabParentObject: {fileID: 11461586, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1667. type: 2}
  1668. m_PrefabInternal: {fileID: 0}
  1669. m_GameObject: {fileID: 1519739960}
  1670. m_Enabled: 1
  1671. m_EditorHideFlags: 0
  1672. m_Script: {fileID: 11500000, guid: 22a01f59b6ac94f1b95f51f60eff7eeb, type: 3}
  1673. m_Name:
  1674. m_EditorClassIdentifier:
  1675. weight: 1
  1676. ik: {fileID: 1519739963}
  1677. bodies:
  1678. - transform: {fileID: 956211257}
  1679. effectorLinks:
  1680. - effector: 1
  1681. weight: 1
  1682. - effector: 2
  1683. weight: 1
  1684. - effector: 5
  1685. weight: 0.3
  1686. - effector: 6
  1687. weight: 0.3
  1688. - effector: 0
  1689. weight: 0.4
  1690. speed: 25
  1691. acceleration: 2.5
  1692. matchVelocity: 0.3
  1693. gravity: 0
  1694. - transform: {fileID: 170596526}
  1695. effectorLinks:
  1696. - effector: 5
  1697. weight: 0.4
  1698. - effector: 1
  1699. weight: 0.1
  1700. speed: 20
  1701. acceleration: 3
  1702. matchVelocity: 0.5
  1703. gravity: 0
  1704. - transform: {fileID: 2073001480}
  1705. effectorLinks:
  1706. - effector: 6
  1707. weight: 0.4
  1708. - effector: 2
  1709. weight: 0.1
  1710. speed: 20
  1711. acceleration: 2
  1712. matchVelocity: 0
  1713. gravity: 0
  1714. - transform: {fileID: 732506521}
  1715. effectorLinks:
  1716. - effector: 3
  1717. weight: 0.5
  1718. - effector: 4
  1719. weight: 0.5
  1720. speed: 30
  1721. acceleration: 2.5
  1722. matchVelocity: 0.5
  1723. gravity: 0
  1724. limits:
  1725. - effector: 6
  1726. spring: 0.7
  1727. x: 1
  1728. y: 1
  1729. z: 0
  1730. minX: 0
  1731. maxX: 1
  1732. minY: 0
  1733. maxY: 1
  1734. minZ: 0
  1735. maxZ: 0
  1736. - effector: 5
  1737. spring: 0.2
  1738. x: 1
  1739. y: 0
  1740. z: 0
  1741. minX: -1
  1742. maxX: 0
  1743. minY: 0
  1744. maxY: 0
  1745. minZ: 0
  1746. maxZ: 0
  1747. - effector: 0
  1748. spring: 0.3
  1749. x: 0
  1750. y: 1
  1751. z: 0
  1752. minX: 0
  1753. maxX: 0
  1754. minY: 0
  1755. maxY: 1
  1756. minZ: 0
  1757. maxZ: 0
  1758. - effector: 1
  1759. spring: 0
  1760. x: 0
  1761. y: 1
  1762. z: 0
  1763. minX: 0
  1764. maxX: 0
  1765. minY: 0
  1766. maxY: 1
  1767. minZ: 0
  1768. maxZ: 0
  1769. - effector: 2
  1770. spring: 0
  1771. x: 0
  1772. y: 1
  1773. z: 0
  1774. minX: 0
  1775. maxX: 0
  1776. minY: 0
  1777. maxY: 1
  1778. minZ: 0
  1779. maxZ: 0
  1780. - effector: 7
  1781. spring: 0
  1782. x: 0
  1783. y: 1
  1784. z: 0
  1785. minX: 0
  1786. maxX: 0
  1787. minY: 0
  1788. maxY: 1
  1789. minZ: 0
  1790. maxZ: 0
  1791. - effector: 8
  1792. spring: 0
  1793. x: 0
  1794. y: 1
  1795. z: 0
  1796. minX: 0
  1797. maxX: 0
  1798. minY: 0
  1799. maxY: 1
  1800. minZ: 0
  1801. maxZ: 0
  1802. --- !u!114 &1519739965
  1803. MonoBehaviour:
  1804. m_ObjectHideFlags: 0
  1805. m_PrefabParentObject: {fileID: 11472666, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1806. type: 2}
  1807. m_PrefabInternal: {fileID: 0}
  1808. m_GameObject: {fileID: 1519739960}
  1809. m_Enabled: 1
  1810. m_EditorHideFlags: 0
  1811. m_Script: {fileID: 11500000, guid: eb82cec62d812495d878b167e9cdf49c, type: 3}
  1812. m_Name:
  1813. m_EditorClassIdentifier:
  1814. cameraController: {fileID: 1269439775}
  1815. accelerationTime: 0.1
  1816. turnTime: 0.1
  1817. walkByDefault: 0
  1818. rotationMode: 1
  1819. moveSpeed: 3
  1820. --- !u!95 &1519739966
  1821. Animator:
  1822. serializedVersion: 3
  1823. m_ObjectHideFlags: 0
  1824. m_PrefabParentObject: {fileID: 9558860, guid: 1798da154b0724ce39ecfe02dc3d242c,
  1825. type: 2}
  1826. m_PrefabInternal: {fileID: 0}
  1827. m_GameObject: {fileID: 1519739960}
  1828. m_Enabled: 1
  1829. m_Avatar: {fileID: 9000000, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
  1830. m_Controller: {fileID: 9100000, guid: 18b91571c77f947359acd20021fc9cc2, type: 2}
  1831. m_CullingMode: 1
  1832. m_UpdateMode: 0
  1833. m_ApplyRootMotion: 0
  1834. m_LinearVelocityBlending: 0
  1835. m_WarningMessage:
  1836. m_HasTransformHierarchy: 1
  1837. m_AllowConstantClipSamplingOptimization: 1
  1838. --- !u!1 &1522920576
  1839. GameObject:
  1840. m_ObjectHideFlags: 0
  1841. m_PrefabParentObject: {fileID: 133578, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1842. m_PrefabInternal: {fileID: 0}
  1843. serializedVersion: 5
  1844. m_Component:
  1845. - component: {fileID: 1522920577}
  1846. m_Layer: 0
  1847. m_Name: CATRigRLeg1
  1848. m_TagString: Untagged
  1849. m_Icon: {fileID: 0}
  1850. m_NavMeshLayer: 0
  1851. m_StaticEditorFlags: 0
  1852. m_IsActive: 1
  1853. --- !u!4 &1522920577
  1854. Transform:
  1855. m_ObjectHideFlags: 0
  1856. m_PrefabParentObject: {fileID: 476030, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1857. m_PrefabInternal: {fileID: 0}
  1858. m_GameObject: {fileID: 1522920576}
  1859. m_LocalRotation: {x: -0.093875, y: 0.99182516, z: -0.018399362, w: -0.0844503}
  1860. m_LocalPosition: {x: 0.007954368, y: 0.0015335655, z: -0.16216461}
  1861. m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1}
  1862. m_Children:
  1863. - {fileID: 468018223}
  1864. m_Father: {fileID: 1382624166}
  1865. m_RootOrder: 1
  1866. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1867. --- !u!1 &1572987588
  1868. GameObject:
  1869. m_ObjectHideFlags: 0
  1870. m_PrefabParentObject: {fileID: 102126, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1871. m_PrefabInternal: {fileID: 0}
  1872. serializedVersion: 5
  1873. m_Component:
  1874. - component: {fileID: 1572987589}
  1875. m_Layer: 0
  1876. m_Name: CATRigLArm2
  1877. m_TagString: Untagged
  1878. m_Icon: {fileID: 0}
  1879. m_NavMeshLayer: 0
  1880. m_StaticEditorFlags: 0
  1881. m_IsActive: 1
  1882. --- !u!4 &1572987589
  1883. Transform:
  1884. m_ObjectHideFlags: 0
  1885. m_PrefabParentObject: {fileID: 495696, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1886. m_PrefabInternal: {fileID: 0}
  1887. m_GameObject: {fileID: 1572987588}
  1888. m_LocalRotation: {x: -0.03439686, y: 0.01599348, z: -0.1702385, w: 0.9846725}
  1889. m_LocalPosition: {x: -0.37838298, y: -0.000000009536743, z: 0.000000076293944}
  1890. m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001}
  1891. m_Children:
  1892. - {fileID: 170596526}
  1893. m_Father: {fileID: 143286548}
  1894. m_RootOrder: 0
  1895. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1896. --- !u!1 &1601801683
  1897. GameObject:
  1898. m_ObjectHideFlags: 0
  1899. m_PrefabParentObject: {fileID: 188774, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1900. m_PrefabInternal: {fileID: 0}
  1901. serializedVersion: 5
  1902. m_Component:
  1903. - component: {fileID: 1601801684}
  1904. m_Layer: 0
  1905. m_Name: CATRigRLegAnkle
  1906. m_TagString: Untagged
  1907. m_Icon: {fileID: 0}
  1908. m_NavMeshLayer: 0
  1909. m_StaticEditorFlags: 0
  1910. m_IsActive: 1
  1911. --- !u!4 &1601801684
  1912. Transform:
  1913. m_ObjectHideFlags: 0
  1914. m_PrefabParentObject: {fileID: 455364, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  1915. m_PrefabInternal: {fileID: 0}
  1916. m_GameObject: {fileID: 1601801683}
  1917. m_LocalRotation: {x: 0.05766985, y: -0.08908029, z: -0.7428057, w: 0.6610435}
  1918. m_LocalPosition: {x: -0.2574419, y: -0.0000000047683715, z: 0}
  1919. m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1}
  1920. m_Children: []
  1921. m_Father: {fileID: 468018223}
  1922. m_RootOrder: 0
  1923. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1924. --- !u!1 &1825855706
  1925. GameObject:
  1926. m_ObjectHideFlags: 0
  1927. m_PrefabParentObject: {fileID: 0}
  1928. m_PrefabInternal: {fileID: 0}
  1929. serializedVersion: 5
  1930. m_Component:
  1931. - component: {fileID: 1825855709}
  1932. - component: {fileID: 1825855708}
  1933. - component: {fileID: 1825855707}
  1934. m_Layer: 0
  1935. m_Name: Instructions
  1936. m_TagString: Untagged
  1937. m_Icon: {fileID: 0}
  1938. m_NavMeshLayer: 0
  1939. m_StaticEditorFlags: 0
  1940. m_IsActive: 1
  1941. --- !u!102 &1825855707
  1942. TextMesh:
  1943. serializedVersion: 3
  1944. m_ObjectHideFlags: 0
  1945. m_PrefabParentObject: {fileID: 0}
  1946. m_PrefabInternal: {fileID: 0}
  1947. m_GameObject: {fileID: 1825855706}
  1948. m_Text: Hit Play, run around (shift to walk), find the Inertia script on the Viking,
  1949. try changing it's weight
  1950. m_OffsetZ: 0
  1951. m_CharacterSize: 1
  1952. m_LineSpacing: 1
  1953. m_Anchor: 0
  1954. m_Alignment: 0
  1955. m_TabSize: 4
  1956. m_FontSize: 0
  1957. m_FontStyle: 0
  1958. m_RichText: 1
  1959. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  1960. m_Color:
  1961. serializedVersion: 2
  1962. rgba: 4294967295
  1963. --- !u!23 &1825855708
  1964. MeshRenderer:
  1965. m_ObjectHideFlags: 0
  1966. m_PrefabParentObject: {fileID: 0}
  1967. m_PrefabInternal: {fileID: 0}
  1968. m_GameObject: {fileID: 1825855706}
  1969. m_Enabled: 1
  1970. m_CastShadows: 1
  1971. m_ReceiveShadows: 1
  1972. m_DynamicOccludee: 1
  1973. m_MotionVectors: 1
  1974. m_LightProbeUsage: 0
  1975. m_ReflectionProbeUsage: 1
  1976. m_Materials:
  1977. - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0}
  1978. m_StaticBatchInfo:
  1979. firstSubMesh: 0
  1980. subMeshCount: 0
  1981. m_StaticBatchRoot: {fileID: 0}
  1982. m_ProbeAnchor: {fileID: 0}
  1983. m_LightProbeVolumeOverride: {fileID: 0}
  1984. m_ScaleInLightmap: 1
  1985. m_PreserveUVs: 0
  1986. m_IgnoreNormalsForChartDetection: 0
  1987. m_ImportantGI: 0
  1988. m_StitchLightmapSeams: 0
  1989. m_SelectedEditorRenderState: 3
  1990. m_MinimumChartSize: 4
  1991. m_AutoUVMaxDistance: 0.5
  1992. m_AutoUVMaxAngle: 89
  1993. m_LightmapParameters: {fileID: 0}
  1994. m_SortingLayerID: 0
  1995. m_SortingLayer: 0
  1996. m_SortingOrder: 0
  1997. --- !u!4 &1825855709
  1998. Transform:
  1999. m_ObjectHideFlags: 0
  2000. m_PrefabParentObject: {fileID: 0}
  2001. m_PrefabInternal: {fileID: 0}
  2002. m_GameObject: {fileID: 1825855706}
  2003. m_LocalRotation: {x: 0, y: 1, z: 0, w: -0.00000016292068}
  2004. m_LocalPosition: {x: 7.71, y: 4.2300096, z: 0.35}
  2005. m_LocalScale: {x: 0.3973009, y: 0.3973009, z: 0.3973009}
  2006. m_Children: []
  2007. m_Father: {fileID: 0}
  2008. m_RootOrder: 3
  2009. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2010. --- !u!1 &1848719934
  2011. GameObject:
  2012. m_ObjectHideFlags: 0
  2013. m_PrefabParentObject: {fileID: 178042, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2014. m_PrefabInternal: {fileID: 0}
  2015. serializedVersion: 5
  2016. m_Component:
  2017. - component: {fileID: 1848719935}
  2018. m_Layer: 0
  2019. m_Name: CATRigHub003
  2020. m_TagString: Untagged
  2021. m_Icon: {fileID: 0}
  2022. m_NavMeshLayer: 0
  2023. m_StaticEditorFlags: 0
  2024. m_IsActive: 1
  2025. --- !u!4 &1848719935
  2026. Transform:
  2027. m_ObjectHideFlags: 0
  2028. m_PrefabParentObject: {fileID: 494688, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2029. m_PrefabInternal: {fileID: 0}
  2030. m_GameObject: {fileID: 1848719934}
  2031. m_LocalRotation: {x: 0.0000000096998445, y: -0.00000004825367, z: 0.22863434, w: 0.9735124}
  2032. m_LocalPosition: {x: -0.20638405, y: 0, z: 0}
  2033. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
  2034. m_Children: []
  2035. m_Father: {fileID: 1519304397}
  2036. m_RootOrder: 0
  2037. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2038. --- !u!1 &1991283872
  2039. GameObject:
  2040. m_ObjectHideFlags: 0
  2041. m_PrefabParentObject: {fileID: 0}
  2042. m_PrefabInternal: {fileID: 0}
  2043. serializedVersion: 5
  2044. m_Component:
  2045. - component: {fileID: 1991283877}
  2046. - component: {fileID: 1991283876}
  2047. - component: {fileID: 1991283874}
  2048. - component: {fileID: 1991283873}
  2049. m_Layer: 0
  2050. m_Name: Main Camera
  2051. m_TagString: MainCamera
  2052. m_Icon: {fileID: 0}
  2053. m_NavMeshLayer: 0
  2054. m_StaticEditorFlags: 0
  2055. m_IsActive: 1
  2056. --- !u!81 &1991283873
  2057. AudioListener:
  2058. m_ObjectHideFlags: 0
  2059. m_PrefabParentObject: {fileID: 0}
  2060. m_PrefabInternal: {fileID: 0}
  2061. m_GameObject: {fileID: 1991283872}
  2062. m_Enabled: 1
  2063. --- !u!124 &1991283874
  2064. Behaviour:
  2065. m_ObjectHideFlags: 0
  2066. m_PrefabParentObject: {fileID: 0}
  2067. m_PrefabInternal: {fileID: 0}
  2068. m_GameObject: {fileID: 1991283872}
  2069. m_Enabled: 1
  2070. --- !u!20 &1991283876
  2071. Camera:
  2072. m_ObjectHideFlags: 0
  2073. m_PrefabParentObject: {fileID: 0}
  2074. m_PrefabInternal: {fileID: 0}
  2075. m_GameObject: {fileID: 1991283872}
  2076. m_Enabled: 0
  2077. serializedVersion: 2
  2078. m_ClearFlags: 1
  2079. m_BackGroundColor: {r: 0.27450982, g: 0.27450982, b: 0.27450982, a: 0.019607844}
  2080. m_NormalizedViewPortRect:
  2081. serializedVersion: 2
  2082. x: 0
  2083. y: 0
  2084. width: 1
  2085. height: 1
  2086. near clip plane: 0.3
  2087. far clip plane: 1000
  2088. field of view: 60
  2089. orthographic: 0
  2090. orthographic size: 5
  2091. m_Depth: -1
  2092. m_CullingMask:
  2093. serializedVersion: 2
  2094. m_Bits: 4294967295
  2095. m_RenderingPath: -1
  2096. m_TargetTexture: {fileID: 0}
  2097. m_TargetDisplay: 0
  2098. m_TargetEye: 3
  2099. m_HDR: 0
  2100. m_AllowMSAA: 1
  2101. m_AllowDynamicResolution: 0
  2102. m_ForceIntoRT: 0
  2103. m_OcclusionCulling: 1
  2104. m_StereoConvergence: 10
  2105. m_StereoSeparation: 0.022
  2106. --- !u!4 &1991283877
  2107. Transform:
  2108. m_ObjectHideFlags: 0
  2109. m_PrefabParentObject: {fileID: 0}
  2110. m_PrefabInternal: {fileID: 0}
  2111. m_GameObject: {fileID: 1991283872}
  2112. m_LocalRotation: {x: -0.0037628238, y: 0.99577874, z: -0.07819499, w: -0.047917906}
  2113. m_LocalPosition: {x: 0.2285862, y: 1.34, z: 1.6217722}
  2114. m_LocalScale: {x: 1, y: 1, z: 1}
  2115. m_Children: []
  2116. m_Father: {fileID: 0}
  2117. m_RootOrder: 4
  2118. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2119. --- !u!1 &2035248806
  2120. GameObject:
  2121. m_ObjectHideFlags: 0
  2122. m_PrefabParentObject: {fileID: 169792, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2123. m_PrefabInternal: {fileID: 0}
  2124. serializedVersion: 5
  2125. m_Component:
  2126. - component: {fileID: 2035248807}
  2127. m_Layer: 0
  2128. m_Name: Viking
  2129. m_TagString: Untagged
  2130. m_Icon: {fileID: 0}
  2131. m_NavMeshLayer: 0
  2132. m_StaticEditorFlags: 0
  2133. m_IsActive: 1
  2134. --- !u!4 &2035248807
  2135. Transform:
  2136. m_ObjectHideFlags: 0
  2137. m_PrefabParentObject: {fileID: 434440, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2138. m_PrefabInternal: {fileID: 0}
  2139. m_GameObject: {fileID: 2035248806}
  2140. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2141. m_LocalPosition: {x: -2.63, y: 0, z: 0}
  2142. m_LocalScale: {x: 1, y: 1, z: 1}
  2143. m_Children:
  2144. - {fileID: 1269439774}
  2145. - {fileID: 1519739961}
  2146. m_Father: {fileID: 0}
  2147. m_RootOrder: 5
  2148. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2149. --- !u!1 &2073001479
  2150. GameObject:
  2151. m_ObjectHideFlags: 0
  2152. m_PrefabParentObject: {fileID: 139798, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2153. m_PrefabInternal: {fileID: 0}
  2154. serializedVersion: 5
  2155. m_Component:
  2156. - component: {fileID: 2073001480}
  2157. m_Layer: 0
  2158. m_Name: CATRigRArmPalm
  2159. m_TagString: Untagged
  2160. m_Icon: {fileID: 0}
  2161. m_NavMeshLayer: 0
  2162. m_StaticEditorFlags: 0
  2163. m_IsActive: 1
  2164. --- !u!4 &2073001480
  2165. Transform:
  2166. m_ObjectHideFlags: 0
  2167. m_PrefabParentObject: {fileID: 459738, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2168. m_PrefabInternal: {fileID: 0}
  2169. m_GameObject: {fileID: 2073001479}
  2170. m_LocalRotation: {x: -0.686437, y: 0.06843604, z: -0.22980219, w: 0.6865215}
  2171. m_LocalPosition: {x: -0.21343657, y: 0, z: 0}
  2172. m_LocalScale: {x: 0.9999998, y: 1, z: 1.0000001}
  2173. m_Children:
  2174. - {fileID: 1479411375}
  2175. m_Father: {fileID: 2109641217}
  2176. m_RootOrder: 0
  2177. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2178. --- !u!1 &2109641216
  2179. GameObject:
  2180. m_ObjectHideFlags: 0
  2181. m_PrefabParentObject: {fileID: 140132, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2182. m_PrefabInternal: {fileID: 0}
  2183. serializedVersion: 5
  2184. m_Component:
  2185. - component: {fileID: 2109641217}
  2186. m_Layer: 0
  2187. m_Name: CATRigRArm2
  2188. m_TagString: Untagged
  2189. m_Icon: {fileID: 0}
  2190. m_NavMeshLayer: 0
  2191. m_StaticEditorFlags: 0
  2192. m_IsActive: 1
  2193. --- !u!4 &2109641217
  2194. Transform:
  2195. m_ObjectHideFlags: 0
  2196. m_PrefabParentObject: {fileID: 482556, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2197. m_PrefabInternal: {fileID: 0}
  2198. m_GameObject: {fileID: 2109641216}
  2199. m_LocalRotation: {x: 0.03439686, y: -0.015993474, z: -0.17023848, w: 0.9846725}
  2200. m_LocalPosition: {x: -0.37838298, y: -0.0000000166893, z: 0}
  2201. m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000002}
  2202. m_Children:
  2203. - {fileID: 2073001480}
  2204. m_Father: {fileID: 1214625613}
  2205. m_RootOrder: 0
  2206. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2207. --- !u!1 &2134144478
  2208. GameObject:
  2209. m_ObjectHideFlags: 0
  2210. m_PrefabParentObject: {fileID: 138798, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2211. m_PrefabInternal: {fileID: 0}
  2212. serializedVersion: 5
  2213. m_Component:
  2214. - component: {fileID: 2134144479}
  2215. m_Layer: 0
  2216. m_Name: CATRigLLegPlatform
  2217. m_TagString: Untagged
  2218. m_Icon: {fileID: 0}
  2219. m_NavMeshLayer: 0
  2220. m_StaticEditorFlags: 0
  2221. m_IsActive: 1
  2222. --- !u!4 &2134144479
  2223. Transform:
  2224. m_ObjectHideFlags: 0
  2225. m_PrefabParentObject: {fileID: 469550, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2226. m_PrefabInternal: {fileID: 0}
  2227. m_GameObject: {fileID: 2134144478}
  2228. m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
  2229. m_LocalPosition: {x: -0.2623951, y: -0.0000000023284734, z: 0.10179674}
  2230. m_LocalScale: {x: 1, y: 1, z: 1}
  2231. m_Children: []
  2232. m_Father: {fileID: 1519739961}
  2233. m_RootOrder: 2
  2234. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2235. --- !u!1 &2144027494
  2236. GameObject:
  2237. m_ObjectHideFlags: 0
  2238. m_PrefabParentObject: {fileID: 134472, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2239. m_PrefabInternal: {fileID: 0}
  2240. serializedVersion: 5
  2241. m_Component:
  2242. - component: {fileID: 2144027495}
  2243. m_Layer: 0
  2244. m_Name: 'CameraTarget '
  2245. m_TagString: Untagged
  2246. m_Icon: {fileID: 0}
  2247. m_NavMeshLayer: 0
  2248. m_StaticEditorFlags: 0
  2249. m_IsActive: 1
  2250. --- !u!4 &2144027495
  2251. Transform:
  2252. m_ObjectHideFlags: 0
  2253. m_PrefabParentObject: {fileID: 489132, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
  2254. m_PrefabInternal: {fileID: 0}
  2255. m_GameObject: {fileID: 2144027494}
  2256. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2257. m_LocalPosition: {x: 0, y: 1, z: 0}
  2258. m_LocalScale: {x: 1, y: 1, z: 1}
  2259. m_Children: []
  2260. m_Father: {fileID: 1519739961}
  2261. m_RootOrder: 5
  2262. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}