123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265 |
- %YAML 1.1
- %TAG !u! tag:unity3d.com,2011:
- --- !u!29 &1
- OcclusionCullingSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 2
- m_OcclusionBakeSettings:
- smallestOccluder: 5
- smallestHole: 0.25
- backfaceThreshold: 100
- m_SceneGUID: 00000000000000000000000000000000
- m_OcclusionCullingData: {fileID: 0}
- --- !u!104 &2
- RenderSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 8
- m_Fog: 0
- m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
- m_FogMode: 3
- m_FogDensity: 0.01
- m_LinearFogStart: 0
- m_LinearFogEnd: 300
- m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- m_AmbientIntensity: 1
- m_AmbientMode: 3
- m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
- m_SkyboxMaterial: {fileID: 0}
- m_HaloStrength: 0.5
- m_FlareStrength: 1
- m_FlareFadeSpeed: 3
- m_HaloTexture: {fileID: 0}
- m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
- m_DefaultReflectionMode: 0
- m_DefaultReflectionResolution: 128
- m_ReflectionBounces: 1
- m_ReflectionIntensity: 1
- m_CustomReflection: {fileID: 0}
- m_Sun: {fileID: 0}
- m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
- --- !u!157 &4
- LightmapSettings:
- m_ObjectHideFlags: 0
- serializedVersion: 11
- m_GIWorkflowMode: 1
- m_GISettings:
- serializedVersion: 2
- m_BounceScale: 1
- m_IndirectOutputScale: 1
- m_AlbedoBoost: 1
- m_TemporalCoherenceThreshold: 1
- m_EnvironmentLightingMode: 0
- m_EnableBakedLightmaps: 1
- m_EnableRealtimeLightmaps: 0
- m_LightmapEditorSettings:
- serializedVersion: 9
- m_Resolution: 1
- m_BakeResolution: 50
- m_TextureWidth: 1024
- m_TextureHeight: 1024
- m_AO: 0
- m_AOMaxDistance: 1
- m_CompAOExponent: 0
- m_CompAOExponentDirect: 0
- m_Padding: 2
- m_LightmapParameters: {fileID: 0}
- m_LightmapsBakeMode: 1
- m_TextureCompression: 0
- m_FinalGather: 0
- m_FinalGatherFiltering: 1
- m_FinalGatherRayCount: 1024
- m_ReflectionCompression: 2
- m_MixedBakeMode: 1
- m_BakeBackend: 0
- m_PVRSampling: 1
- m_PVRDirectSampleCount: 32
- m_PVRSampleCount: 500
- m_PVRBounces: 2
- m_PVRFilterTypeDirect: 0
- m_PVRFilterTypeIndirect: 0
- m_PVRFilterTypeAO: 0
- m_PVRFilteringMode: 0
- m_PVRCulling: 1
- m_PVRFilteringGaussRadiusDirect: 1
- m_PVRFilteringGaussRadiusIndirect: 5
- m_PVRFilteringGaussRadiusAO: 2
- m_PVRFilteringAtrousPositionSigmaDirect: 0.5
- m_PVRFilteringAtrousPositionSigmaIndirect: 2
- m_PVRFilteringAtrousPositionSigmaAO: 1
- m_ShowResolutionOverlay: 1
- m_LightingDataAsset: {fileID: 0}
- m_UseShadowmask: 0
- --- !u!196 &5
- NavMeshSettings:
- serializedVersion: 2
- m_ObjectHideFlags: 0
- m_BuildSettings:
- serializedVersion: 2
- agentTypeID: 0
- agentRadius: 0.5
- agentHeight: 2
- agentSlope: 45
- agentClimb: 0.4
- ledgeDropHeight: 0
- maxJumpAcrossDistance: 0
- minRegionArea: 2
- manualCellSize: 0
- cellSize: 0.16666666
- manualTileSize: 0
- tileSize: 256
- accuratePlacement: 0
- debug:
- m_Flags: 0
- m_NavMeshData: {fileID: 0}
- --- !u!1 &110658198
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 173214, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 110658199}
- - component: {fileID: 110658201}
- - component: {fileID: 110658200}
- m_Layer: 0
- m_Name: Axe
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &110658199
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 493380, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110658198}
- m_LocalRotation: {x: 0.62673944, y: 0.7724445, z: -0.10113925, w: 0.017263575}
- m_LocalPosition: {x: -0.06023731, y: 0.042184293, z: -0.00272398}
- m_LocalScale: {x: 0.46692958, y: 0.4669297, z: 0.46692973}
- m_Children: []
- m_Father: {fileID: 170596526}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!23 &110658200
- MeshRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 2351146, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110658198}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_Materials:
- - {fileID: 2100000, guid: 049484920c0cd48568fe4a6e8df94859, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
- --- !u!33 &110658201
- MeshFilter:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 3367462, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110658198}
- m_Mesh: {fileID: 4300002, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
- --- !u!1 &143286547
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 179258, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 143286548}
- m_Layer: 0
- m_Name: CATRigLArm1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &143286548
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 429618, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 143286547}
- m_LocalRotation: {x: -0.013079466, y: -0.15263523, z: 0.1733121, w: 0.9728794}
- m_LocalPosition: {x: -0.12479699, y: -0.0000000047683715, z: 0.000000076293944}
- m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001}
- m_Children:
- - {fileID: 1572987589}
- m_Father: {fileID: 1105907839}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &170596525
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 116566, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 170596526}
- m_Layer: 0
- m_Name: CATRigLArmPalm
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &170596526
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 463978, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 170596525}
- m_LocalRotation: {x: 0.6576932, y: 0.013433782, z: -0.188744, w: 0.72913307}
- m_LocalPosition: {x: -0.2134365, y: 0.000000019073486, z: 0}
- m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1}
- m_Children:
- - {fileID: 110658199}
- m_Father: {fileID: 1572987589}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &468018222
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 106786, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 468018223}
- m_Layer: 0
- m_Name: CATRigRLeg2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &468018223
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 497306, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 468018222}
- m_LocalRotation: {x: 0.0024762582, y: 0.019669691, z: 0.08137219, w: 0.9964866}
- m_LocalPosition: {x: -0.2797782, y: 0, z: -0.000000019073486}
- m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1}
- m_Children:
- - {fileID: 1601801684}
- m_Father: {fileID: 1522920577}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &699662251
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 144240, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 699662252}
- m_Layer: 0
- m_Name: CATRigLLegAnkle
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &699662252
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 465776, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699662251}
- m_LocalRotation: {x: -0.057783563, y: 0.08897453, z: -0.74264467, w: 0.6612288}
- m_LocalPosition: {x: -0.2574276, y: -0.0000000047683715, z: 0}
- m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994}
- m_Children: []
- m_Father: {fileID: 1275720199}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &710485701
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 100500, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 710485702}
- m_Layer: 0
- m_Name: CATRigLLeg1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &710485702
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 426632, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 710485701}
- m_LocalRotation: {x: -0.09362636, y: 0.991848, z: 0.018417725, w: 0.0844538}
- m_LocalPosition: {x: 0.007954292, y: 0.0015335464, z: 0.16216461}
- m_LocalScale: {x: 0.9999999, y: 1, z: 1}
- m_Children:
- - {fileID: 1275720199}
- m_Father: {fileID: 1382624166}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &732506520
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 164968, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 732506521}
- m_Layer: 0
- m_Name: CATRigSpineCATRigSpine1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &732506521
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 403848, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 732506520}
- m_LocalRotation: {x: -0.0000000011071997, y: 3.4054132e-10, z: 0.021431675, w: 0.99977034}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 0.99999994, y: 1, z: 1}
- m_Children:
- - {fileID: 1238139701}
- m_Father: {fileID: 1382624166}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &809858536
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 100000, guid: abe8656579c8d4194adc56c3309f2f2f, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 809858540}
- - component: {fileID: 809858539}
- - component: {fileID: 809858538}
- - component: {fileID: 809858537}
- m_Layer: 0
- m_Name: Ground
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!65 &809858537
- BoxCollider:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 6500000, guid: abe8656579c8d4194adc56c3309f2f2f,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 809858536}
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_Enabled: 1
- serializedVersion: 2
- m_Size: {x: 1, y: 1, z: 0.01}
- m_Center: {x: 0, y: 0, z: 0.005}
- --- !u!23 &809858538
- MeshRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 2300000, guid: abe8656579c8d4194adc56c3309f2f2f,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 809858536}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 0
- m_ReflectionProbeUsage: 1
- m_Materials:
- - {fileID: 2100000, guid: 035a48a539312914f8762cf7100ec0cb, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
- --- !u!33 &809858539
- MeshFilter:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 3300000, guid: abe8656579c8d4194adc56c3309f2f2f,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 809858536}
- m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
- --- !u!4 &809858540
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 400000, guid: abe8656579c8d4194adc56c3309f2f2f, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 809858536}
- m_LocalRotation: {x: 0.7071069, y: 0, z: 0, w: 0.70710677}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 100, y: 100, z: 100}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &837107747
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 145334, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 837107748}
- - component: {fileID: 837107749}
- m_Layer: 0
- m_Name: BaseHuman
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &837107748
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 470644, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 837107747}
- m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1519739961}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!137 &837107749
- SkinnedMeshRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 13725840, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 837107747}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_Materials:
- - {fileID: 2100000, guid: cbdd696bd322449e79455923a4f20130, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
- serializedVersion: 2
- m_Quality: 0
- m_UpdateWhenOffscreen: 0
- m_SkinnedMotionVectors: 1
- m_Mesh: {fileID: 4300000, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
- m_Bones:
- - {fileID: 1848719935}
- - {fileID: 1519304397}
- - {fileID: 956211257}
- - {fileID: 1238139701}
- - {fileID: 732506521}
- - {fileID: 1382624166}
- - {fileID: 710485702}
- - {fileID: 143286548}
- - {fileID: 1105907839}
- - {fileID: 699662252}
- - {fileID: 1275720199}
- - {fileID: 170596526}
- - {fileID: 1572987589}
- - {fileID: 1601801684}
- - {fileID: 1522920577}
- - {fileID: 1214625613}
- - {fileID: 1247203786}
- - {fileID: 468018223}
- - {fileID: 2073001480}
- - {fileID: 2109641217}
- m_BlendShapeWeights: []
- m_RootBone: {fileID: 1382624166}
- m_AABB:
- m_Center: {x: -0.22518146, y: -0.030516714, z: -0.0045350194}
- m_Extent: {x: 0.77781427, y: 0.25805897, z: 0.97267467}
- m_DirtyAABB: 0
- --- !u!1 &956211256
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 152682, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 956211257}
- m_Layer: 0
- m_Name: CATRigHub002
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &956211257
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 429500, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 956211256}
- m_LocalRotation: {x: 0.000000006019509, y: 0.0000000111544285, z: 0.058747947, w: 0.99827284}
- m_LocalPosition: {x: -0.18972534, y: 0, z: 2.2737367e-15}
- m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1}
- m_Children:
- - {fileID: 1105907839}
- - {fileID: 1247203786}
- - {fileID: 1519304397}
- m_Father: {fileID: 1238139701}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &987842907
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 987842909}
- - component: {fileID: 987842908}
- m_Layer: 0
- m_Name: Directional light
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!108 &987842908
- Light:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987842907}
- m_Enabled: 1
- serializedVersion: 8
- m_Type: 1
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_Intensity: 1
- m_Range: 10
- m_SpotAngle: 30
- m_CookieSize: 10
- m_Shadows:
- m_Type: 2
- m_Resolution: -1
- m_CustomResolution: -1
- m_Strength: 0.8
- m_Bias: 0.03
- m_NormalBias: 0.4
- m_NearPlane: 0.2
- m_Cookie: {fileID: 0}
- m_DrawHalo: 0
- m_Flare: {fileID: 0}
- m_RenderMode: 0
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_Lightmapping: 1
- m_AreaSize: {x: 1, y: 1}
- m_BounceIntensity: 1
- m_ColorTemperature: 6570
- m_UseColorTemperature: 0
- m_ShadowRadius: 0
- m_ShadowAngle: 0
- --- !u!4 &987842909
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987842907}
- m_LocalRotation: {x: -0.0040427675, y: -0.90626615, z: 0.4225993, w: -0.00866975}
- m_LocalPosition: {x: 0.2878244, y: 3.633855, z: 0.7286153}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1105907838
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 195194, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1105907839}
- m_Layer: 0
- m_Name: CATRigLArmCollarbone
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1105907839
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 466644, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1105907838}
- m_LocalRotation: {x: 0.09813666, y: 0.7747543, z: -0.12888643, w: 0.6111573}
- m_LocalPosition: {x: -0.048742216, y: -0.010116119, z: 0.117802165}
- m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001}
- m_Children:
- - {fileID: 143286548}
- m_Father: {fileID: 956211257}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1189322080
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1189322082}
- - component: {fileID: 1189322081}
- m_Layer: 0
- m_Name: READ ME!
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!114 &1189322081
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1189322080}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 92471cc1733c49042be56cd39b4b6e5e, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- text: 'Inertia is an effect of pseudo-physics, it makes the effectors follow their
- bones around in spring-like motion. This produces a cool cartoonish animation
- effect.
- Inertia.cs is a FBBIK effector position offset modifier (like Amplifier, Recoil
- and others that extend OffsetModifier.cs). It means that it works by adding to
- the positionOffset value of the effectors each frame. Effector position and positionWeight
- override positionOffset so you can use Inertia, and still be free to pin the hands
- or use the Interaction System whenever you need. Another advantage of that design
- is that you are also able to use multiple offset modifiers simultaneously, the
- position offsets will work additively.'
- --- !u!4 &1189322082
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1189322080}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: -0.32265368, y: 1.5836605, z: 0.343359}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1214625612
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 198868, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1214625613}
- m_Layer: 0
- m_Name: CATRigRArm1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1214625613
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 416498, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1214625612}
- m_LocalRotation: {x: 0.0130794505, y: 0.15263511, z: 0.17331208, w: 0.9728794}
- m_LocalPosition: {x: -0.124797, y: -0.0000000047683715, z: 0}
- m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001}
- m_Children:
- - {fileID: 2109641217}
- m_Father: {fileID: 1247203786}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1238139700
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 100314, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1238139701}
- m_Layer: 0
- m_Name: CATRigSpine2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1238139701
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 488244, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1238139700}
- m_LocalRotation: {x: -0.0000000036675452, y: 0.00000002548152, z: 0.17538829, w: 0.98449934}
- m_LocalPosition: {x: -0.18972534, y: -0.000000009536743, z: -1.1368684e-15}
- m_LocalScale: {x: 1, y: 0.99999994, z: 1}
- m_Children:
- - {fileID: 956211257}
- m_Father: {fileID: 732506521}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1247203785
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 120582, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1247203786}
- m_Layer: 0
- m_Name: CATRigRArmCollarbone
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1247203786
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 436244, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1247203785}
- m_LocalRotation: {x: -0.098136656, y: -0.7747543, z: -0.12888643, w: 0.6111573}
- m_LocalPosition: {x: -0.048742216, y: -0.010116119, z: -0.117802165}
- m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1}
- m_Children:
- - {fileID: 1214625613}
- m_Father: {fileID: 956211257}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1269439773
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 186966, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1269439774}
- - component: {fileID: 1269439778}
- - component: {fileID: 1269439777}
- - component: {fileID: 1269439776}
- - component: {fileID: 1269439775}
- m_Layer: 0
- m_Name: Camera
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1269439774
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 400638, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1269439773}
- m_LocalRotation: {x: 0.03746244, y: -0.9043602, z: 0.07815902, w: 0.41787624}
- m_LocalPosition: {x: 1.1179128, y: 1.298175, z: 1.770877}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 2035248807}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!114 &1269439775
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 11478394, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1269439773}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 85ef3e8d5c77f405d8ab70a643d6a2f3, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- target: {fileID: 2144027495}
- rotationSpace: {fileID: 0}
- updateMode: 2
- lockCursor: 1
- smoothFollow: 1
- offset: {x: 0.5, y: 0, z: 0.5}
- followSpeed: 10
- rotationSensitivity: 2.5
- yMinLimit: -89
- yMaxLimit: 89
- rotateAlways: 1
- rotateOnLeftButton: 0
- rotateOnRightButton: 0
- rotateOnMiddleButton: 0
- distance: 4
- minDistance: 2.5
- maxDistance: 5
- zoomSpeed: 5
- zoomSensitivity: 0.1
- blockingLayers:
- serializedVersion: 2
- m_Bits: 0
- blockingRadius: 1
- blockingSmoothTime: 0.1
- blockingOriginOffset: 0
- blockedOffset: 0.5
- --- !u!92 &1269439776
- Behaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 9272166, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1269439773}
- m_Enabled: 1
- --- !u!124 &1269439777
- Behaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 12421028, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1269439773}
- m_Enabled: 1
- --- !u!20 &1269439778
- Camera:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 2043748, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1269439773}
- m_Enabled: 1
- serializedVersion: 2
- m_ClearFlags: 1
- m_BackGroundColor: {r: 0.27450982, g: 0.27450982, b: 0.27450982, a: 0.019607844}
- m_NormalizedViewPortRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- near clip plane: 0.3
- far clip plane: 1000
- field of view: 60
- orthographic: 0
- orthographic size: 5
- m_Depth: 0
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_RenderingPath: -1
- m_TargetTexture: {fileID: 0}
- m_TargetDisplay: 0
- m_TargetEye: 3
- m_HDR: 0
- m_AllowMSAA: 1
- m_AllowDynamicResolution: 0
- m_ForceIntoRT: 0
- m_OcclusionCulling: 1
- m_StereoConvergence: 10
- m_StereoSeparation: 0.022
- --- !u!1 &1275720198
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 166814, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1275720199}
- m_Layer: 0
- m_Name: CATRigLLeg2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1275720199
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 450738, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1275720198}
- m_LocalRotation: {x: -0.002522602, y: -0.019652104, z: 0.080868505, w: 0.99652785}
- m_LocalPosition: {x: -0.27976963, y: 0, z: 0.000000019073486}
- m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 0.9999999}
- m_Children:
- - {fileID: 699662252}
- m_Father: {fileID: 710485702}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1382624165
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 118632, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1382624166}
- m_Layer: 0
- m_Name: CATRigHub001
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1382624166
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 479278, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1382624165}
- m_LocalRotation: {x: 0.54527736, y: -0.4501918, z: -0.5452773, w: 0.45019174}
- m_LocalPosition: {x: 4.4195757e-14, y: 0.54931015, z: -0.014292181}
- m_LocalScale: {x: 1, y: 1.0000001, z: 1}
- m_Children:
- - {fileID: 710485702}
- - {fileID: 1522920577}
- - {fileID: 732506521}
- m_Father: {fileID: 1519739961}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1404832168
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 189666, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1404832169}
- m_Layer: 0
- m_Name: CATRigRLegPlatform
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1404832169
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 418442, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1404832168}
- m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
- m_LocalPosition: {x: 0.26239508, y: -0.0000000023284872, z: 0.10179681}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1519739961}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1407343214
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 131514, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1407343215}
- m_Layer: 0
- m_Name: Character001
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1407343215
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 432516, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1407343214}
- m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1519739961}
- m_RootOrder: 4
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1479411374
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 186068, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1479411375}
- - component: {fileID: 1479411377}
- - component: {fileID: 1479411376}
- m_Layer: 0
- m_Name: Shield
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1479411375
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 472700, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1479411374}
- m_LocalRotation: {x: 0.5682233, y: 0.45188382, z: -0.387877, w: 0.5678686}
- m_LocalPosition: {x: -0.08587612, y: -0.031050643, z: 0.0098140715}
- m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- m_Children: []
- m_Father: {fileID: 2073001480}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!23 &1479411376
- MeshRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 2391094, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1479411374}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 1
- m_ReflectionProbeUsage: 1
- m_Materials:
- - {fileID: 2100000, guid: 049484920c0cd48568fe4a6e8df94859, type: 2}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
- --- !u!33 &1479411377
- MeshFilter:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 3306666, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1479411374}
- m_Mesh: {fileID: 4300004, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
- --- !u!1 &1519304396
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 135766, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1519304397}
- m_Layer: 0
- m_Name: CATRigSpine
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1519304397
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 413378, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519304396}
- m_LocalRotation: {x: 0.0000000051499907, y: 0.000000030323818, z: -0.40744588, w: 0.91322935}
- m_LocalPosition: {x: -0.06990951, y: -0.012702427, z: 0.0000000019180106}
- m_LocalScale: {x: 1, y: 1, z: 0.99999994}
- m_Children:
- - {fileID: 1848719935}
- m_Father: {fileID: 956211257}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1519739960
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 119128, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1519739961}
- - component: {fileID: 1519739966}
- - component: {fileID: 1519739965}
- - component: {fileID: 1519739964}
- - component: {fileID: 1519739963}
- - component: {fileID: 1519739962}
- m_Layer: 0
- m_Name: Viking Humanoid
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1519739961
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 405650, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children:
- - {fileID: 837107748}
- - {fileID: 1382624166}
- - {fileID: 2134144479}
- - {fileID: 1404832169}
- - {fileID: 1407343215}
- - {fileID: 2144027495}
- m_Father: {fileID: 2035248807}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!143 &1519739962
- CharacterController:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_Material: {fileID: 0}
- m_IsTrigger: 0
- m_Enabled: 1
- serializedVersion: 2
- m_Height: 1.2
- m_Radius: 0.3
- m_SlopeLimit: 45
- m_StepOffset: 0.3
- m_SkinWidth: 0.08
- m_MinMoveDistance: 0.001
- m_Center: {x: 0, y: 0.68, z: 0}
- --- !u!114 &1519739963
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 11489990, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: a70e525c82ce9413fa4d940ad7fcf1db, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- fixTransforms: 1
- references:
- root: {fileID: 1519739961}
- pelvis: {fileID: 1382624166}
- leftThigh: {fileID: 710485702}
- leftCalf: {fileID: 1275720199}
- leftFoot: {fileID: 699662252}
- rightThigh: {fileID: 1522920577}
- rightCalf: {fileID: 468018223}
- rightFoot: {fileID: 1601801684}
- leftUpperArm: {fileID: 143286548}
- leftForearm: {fileID: 1572987589}
- leftHand: {fileID: 170596526}
- rightUpperArm: {fileID: 1214625613}
- rightForearm: {fileID: 2109641217}
- rightHand: {fileID: 2073001480}
- head: {fileID: 1519304397}
- spine:
- - {fileID: 1238139701}
- - {fileID: 956211257}
- eyes: []
- solver:
- executedInEditor: 0
- IKPosition: {x: 0, y: 0, z: 0}
- IKPositionWeight: 1
- root: {fileID: 1519739961}
- iterations: 4
- chain:
- - pin: 0
- pull: 1
- push: 0
- pushParent: 0
- reach: 0.1
- reachSmoothing: 1
- pushSmoothing: 1
- nodes:
- - transform: {fileID: 1238139701}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- children: 01000000020000000300000004000000
- childConstraints:
- - pushElasticity: 0
- pullElasticity: 1
- bone1: {fileID: 143286548}
- bone2: {fileID: 1522920577}
- - pushElasticity: 0
- pullElasticity: 1
- bone1: {fileID: 1214625613}
- bone2: {fileID: 710485702}
- - pushElasticity: 0
- pullElasticity: 0
- bone1: {fileID: 143286548}
- bone2: {fileID: 1214625613}
- - pushElasticity: 0
- pullElasticity: 0
- bone1: {fileID: 710485702}
- bone2: {fileID: 1522920577}
- bendConstraint:
- bone1: {fileID: 0}
- bone2: {fileID: 0}
- bone3: {fileID: 0}
- bendGoal: {fileID: 0}
- direction: {x: 1, y: 0, z: 0}
- rotationOffset: {x: 0, y: 0, z: 0, w: 0}
- weight: 0
- defaultLocalDirection: {x: 0, y: 0, z: 0}
- defaultChildDirection: {x: 0, y: 0, z: 0}
- - pin: 0
- pull: 1
- push: 0
- pushParent: 0
- reach: 0.05
- reachSmoothing: 1
- pushSmoothing: 1
- nodes:
- - transform: {fileID: 143286548}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 1572987589}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 170596526}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- children:
- childConstraints: []
- bendConstraint:
- bone1: {fileID: 0}
- bone2: {fileID: 0}
- bone3: {fileID: 0}
- bendGoal: {fileID: 0}
- direction: {x: 1, y: 0, z: 0}
- rotationOffset: {x: 0, y: 0, z: 0, w: 0}
- weight: 0
- defaultLocalDirection: {x: 0, y: 0, z: 0}
- defaultChildDirection: {x: 0, y: 0, z: 0}
- - pin: 0
- pull: 1
- push: 0
- pushParent: 0
- reach: 0.05
- reachSmoothing: 1
- pushSmoothing: 1
- nodes:
- - transform: {fileID: 1214625613}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 2109641217}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 2073001480}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- children:
- childConstraints: []
- bendConstraint:
- bone1: {fileID: 0}
- bone2: {fileID: 0}
- bone3: {fileID: 0}
- bendGoal: {fileID: 0}
- direction: {x: 1, y: 0, z: 0}
- rotationOffset: {x: 0, y: 0, z: 0, w: 0}
- weight: 0
- defaultLocalDirection: {x: 0, y: 0, z: 0}
- defaultChildDirection: {x: 0, y: 0, z: 0}
- - pin: 0
- pull: 1
- push: 0
- pushParent: 0
- reach: 0.05
- reachSmoothing: 1
- pushSmoothing: 1
- nodes:
- - transform: {fileID: 710485702}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 1275720199}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 699662252}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- children:
- childConstraints: []
- bendConstraint:
- bone1: {fileID: 0}
- bone2: {fileID: 0}
- bone3: {fileID: 0}
- bendGoal: {fileID: 0}
- direction: {x: 1, y: 0, z: 0}
- rotationOffset: {x: 0, y: 0, z: 0, w: 0}
- weight: 0
- defaultLocalDirection: {x: 0, y: 0, z: 0}
- defaultChildDirection: {x: 0, y: 0, z: 0}
- - pin: 0
- pull: 1
- push: 0
- pushParent: 0
- reach: 0.05
- reachSmoothing: 1
- pushSmoothing: 1
- nodes:
- - transform: {fileID: 1522920577}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 468018223}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- - transform: {fileID: 1601801684}
- weight: 1
- solverPosition: {x: 0, y: 0, z: 0}
- solverRotation: {x: 0, y: 0, z: 0, w: 1}
- defaultLocalPosition: {x: 0, y: 0, z: 0}
- defaultLocalRotation: {x: 0, y: 0, z: 0, w: 0}
- length: 0
- effectorPositionWeight: 0
- effectorRotationWeight: 0
- offset: {x: 0, y: 0, z: 0}
- children:
- childConstraints: []
- bendConstraint:
- bone1: {fileID: 0}
- bone2: {fileID: 0}
- bone3: {fileID: 0}
- bendGoal: {fileID: 0}
- direction: {x: 1, y: 0, z: 0}
- rotationOffset: {x: 0, y: 0, z: 0, w: 0}
- weight: 0
- defaultLocalDirection: {x: 0, y: 0, z: 0}
- defaultChildDirection: {x: 0, y: 0, z: 0}
- effectors:
- - bone: {fileID: 1238139701}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones:
- - {fileID: 710485702}
- - {fileID: 1522920577}
- planeBone1: {fileID: 0}
- planeBone2: {fileID: 0}
- planeBone3: {fileID: 0}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 143286548}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 0}
- planeBone2: {fileID: 0}
- planeBone3: {fileID: 0}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 1214625613}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 0}
- planeBone2: {fileID: 0}
- planeBone3: {fileID: 0}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 710485702}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 0}
- planeBone2: {fileID: 0}
- planeBone3: {fileID: 0}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 1522920577}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 0}
- planeBone2: {fileID: 0}
- planeBone3: {fileID: 0}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 170596526}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 143286548}
- planeBone2: {fileID: 1214625613}
- planeBone3: {fileID: 1238139701}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 2073001480}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 1214625613}
- planeBone2: {fileID: 143286548}
- planeBone3: {fileID: 1238139701}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 699662252}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 710485702}
- planeBone2: {fileID: 1522920577}
- planeBone3: {fileID: 1238139701}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- - bone: {fileID: 1601801684}
- target: {fileID: 0}
- positionWeight: 0
- rotationWeight: 0
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- positionOffset: {x: 0, y: 0, z: 0}
- effectChildNodes: 1
- maintainRelativePositionWeight: 0
- childBones: []
- planeBone1: {fileID: 1522920577}
- planeBone2: {fileID: 710485702}
- planeBone3: {fileID: 1238139701}
- planeRotationOffset: {x: 0, y: 0, z: 0, w: 1}
- spineMapping:
- spineBones:
- - {fileID: 1382624166}
- - {fileID: 1238139701}
- - {fileID: 956211257}
- leftUpperArmBone: {fileID: 143286548}
- rightUpperArmBone: {fileID: 1214625613}
- leftThighBone: {fileID: 710485702}
- rightThighBone: {fileID: 1522920577}
- iterations: 3
- twistWeight: 1
- boneMappings:
- - bone: {fileID: 1519304397}
- maintainRotationWeight: 0.57
- limbMappings:
- - parentBone: {fileID: 1105907839}
- bone1: {fileID: 143286548}
- bone2: {fileID: 1572987589}
- bone3: {fileID: 170596526}
- maintainRotationWeight: 0
- weight: 1
- - parentBone: {fileID: 1247203786}
- bone1: {fileID: 1214625613}
- bone2: {fileID: 2109641217}
- bone3: {fileID: 2073001480}
- maintainRotationWeight: 0
- weight: 1
- - parentBone: {fileID: 0}
- bone1: {fileID: 710485702}
- bone2: {fileID: 1275720199}
- bone3: {fileID: 699662252}
- maintainRotationWeight: 0
- weight: 1
- - parentBone: {fileID: 0}
- bone1: {fileID: 1522920577}
- bone2: {fileID: 468018223}
- bone3: {fileID: 1601801684}
- maintainRotationWeight: 0
- weight: 1
- FABRIKPass: 1
- rootNode: {fileID: 1238139701}
- spineStiffness: 0.5
- pullBodyVertical: 0.5
- pullBodyHorizontal: 0
- --- !u!114 &1519739964
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 11461586, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 22a01f59b6ac94f1b95f51f60eff7eeb, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- weight: 1
- ik: {fileID: 1519739963}
- bodies:
- - transform: {fileID: 956211257}
- effectorLinks:
- - effector: 1
- weight: 1
- - effector: 2
- weight: 1
- - effector: 5
- weight: 0.3
- - effector: 6
- weight: 0.3
- - effector: 0
- weight: 0.4
- speed: 25
- acceleration: 2.5
- matchVelocity: 0.3
- gravity: 0
- - transform: {fileID: 170596526}
- effectorLinks:
- - effector: 5
- weight: 0.4
- - effector: 1
- weight: 0.1
- speed: 20
- acceleration: 3
- matchVelocity: 0.5
- gravity: 0
- - transform: {fileID: 2073001480}
- effectorLinks:
- - effector: 6
- weight: 0.4
- - effector: 2
- weight: 0.1
- speed: 20
- acceleration: 2
- matchVelocity: 0
- gravity: 0
- - transform: {fileID: 732506521}
- effectorLinks:
- - effector: 3
- weight: 0.5
- - effector: 4
- weight: 0.5
- speed: 30
- acceleration: 2.5
- matchVelocity: 0.5
- gravity: 0
- limits:
- - effector: 6
- spring: 0.7
- x: 1
- y: 1
- z: 0
- minX: 0
- maxX: 1
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- - effector: 5
- spring: 0.2
- x: 1
- y: 0
- z: 0
- minX: -1
- maxX: 0
- minY: 0
- maxY: 0
- minZ: 0
- maxZ: 0
- - effector: 0
- spring: 0.3
- x: 0
- y: 1
- z: 0
- minX: 0
- maxX: 0
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- - effector: 1
- spring: 0
- x: 0
- y: 1
- z: 0
- minX: 0
- maxX: 0
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- - effector: 2
- spring: 0
- x: 0
- y: 1
- z: 0
- minX: 0
- maxX: 0
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- - effector: 7
- spring: 0
- x: 0
- y: 1
- z: 0
- minX: 0
- maxX: 0
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- - effector: 8
- spring: 0
- x: 0
- y: 1
- z: 0
- minX: 0
- maxX: 0
- minY: 0
- maxY: 1
- minZ: 0
- maxZ: 0
- --- !u!114 &1519739965
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 11472666, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: eb82cec62d812495d878b167e9cdf49c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- cameraController: {fileID: 1269439775}
- accelerationTime: 0.1
- turnTime: 0.1
- walkByDefault: 0
- rotationMode: 1
- moveSpeed: 3
- --- !u!95 &1519739966
- Animator:
- serializedVersion: 3
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 9558860, guid: 1798da154b0724ce39ecfe02dc3d242c,
- type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519739960}
- m_Enabled: 1
- m_Avatar: {fileID: 9000000, guid: 77175d72106534d05bbaa1a44d43c57e, type: 3}
- m_Controller: {fileID: 9100000, guid: 18b91571c77f947359acd20021fc9cc2, type: 2}
- m_CullingMode: 1
- m_UpdateMode: 0
- m_ApplyRootMotion: 0
- m_LinearVelocityBlending: 0
- m_WarningMessage:
- m_HasTransformHierarchy: 1
- m_AllowConstantClipSamplingOptimization: 1
- --- !u!1 &1522920576
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 133578, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1522920577}
- m_Layer: 0
- m_Name: CATRigRLeg1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1522920577
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 476030, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1522920576}
- m_LocalRotation: {x: -0.093875, y: 0.99182516, z: -0.018399362, w: -0.0844503}
- m_LocalPosition: {x: 0.007954368, y: 0.0015335655, z: -0.16216461}
- m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1}
- m_Children:
- - {fileID: 468018223}
- m_Father: {fileID: 1382624166}
- m_RootOrder: 1
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1572987588
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 102126, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1572987589}
- m_Layer: 0
- m_Name: CATRigLArm2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1572987589
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 495696, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572987588}
- m_LocalRotation: {x: -0.03439686, y: 0.01599348, z: -0.1702385, w: 0.9846725}
- m_LocalPosition: {x: -0.37838298, y: -0.000000009536743, z: 0.000000076293944}
- m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001}
- m_Children:
- - {fileID: 170596526}
- m_Father: {fileID: 143286548}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1601801683
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 188774, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1601801684}
- m_Layer: 0
- m_Name: CATRigRLegAnkle
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1601801684
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 455364, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1601801683}
- m_LocalRotation: {x: 0.05766985, y: -0.08908029, z: -0.7428057, w: 0.6610435}
- m_LocalPosition: {x: -0.2574419, y: -0.0000000047683715, z: 0}
- m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1}
- m_Children: []
- m_Father: {fileID: 468018223}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1825855706
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1825855709}
- - component: {fileID: 1825855708}
- - component: {fileID: 1825855707}
- m_Layer: 0
- m_Name: Instructions
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!102 &1825855707
- TextMesh:
- serializedVersion: 3
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1825855706}
- m_Text: Hit Play, run around (shift to walk), find the Inertia script on the Viking,
- try changing it's weight
- m_OffsetZ: 0
- m_CharacterSize: 1
- m_LineSpacing: 1
- m_Anchor: 0
- m_Alignment: 0
- m_TabSize: 4
- m_FontSize: 0
- m_FontStyle: 0
- m_RichText: 1
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_Color:
- serializedVersion: 2
- rgba: 4294967295
- --- !u!23 &1825855708
- MeshRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1825855706}
- m_Enabled: 1
- m_CastShadows: 1
- m_ReceiveShadows: 1
- m_DynamicOccludee: 1
- m_MotionVectors: 1
- m_LightProbeUsage: 0
- m_ReflectionProbeUsage: 1
- m_Materials:
- - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0}
- m_StaticBatchInfo:
- firstSubMesh: 0
- subMeshCount: 0
- m_StaticBatchRoot: {fileID: 0}
- m_ProbeAnchor: {fileID: 0}
- m_LightProbeVolumeOverride: {fileID: 0}
- m_ScaleInLightmap: 1
- m_PreserveUVs: 0
- m_IgnoreNormalsForChartDetection: 0
- m_ImportantGI: 0
- m_StitchLightmapSeams: 0
- m_SelectedEditorRenderState: 3
- m_MinimumChartSize: 4
- m_AutoUVMaxDistance: 0.5
- m_AutoUVMaxAngle: 89
- m_LightmapParameters: {fileID: 0}
- m_SortingLayerID: 0
- m_SortingLayer: 0
- m_SortingOrder: 0
- --- !u!4 &1825855709
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1825855706}
- m_LocalRotation: {x: 0, y: 1, z: 0, w: -0.00000016292068}
- m_LocalPosition: {x: 7.71, y: 4.2300096, z: 0.35}
- m_LocalScale: {x: 0.3973009, y: 0.3973009, z: 0.3973009}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 3
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1848719934
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 178042, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1848719935}
- m_Layer: 0
- m_Name: CATRigHub003
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &1848719935
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 494688, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1848719934}
- m_LocalRotation: {x: 0.0000000096998445, y: -0.00000004825367, z: 0.22863434, w: 0.9735124}
- m_LocalPosition: {x: -0.20638405, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001}
- m_Children: []
- m_Father: {fileID: 1519304397}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &1991283872
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1991283877}
- - component: {fileID: 1991283876}
- - component: {fileID: 1991283874}
- - component: {fileID: 1991283873}
- m_Layer: 0
- m_Name: Main Camera
- m_TagString: MainCamera
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!81 &1991283873
- AudioListener:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1991283872}
- m_Enabled: 1
- --- !u!124 &1991283874
- Behaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1991283872}
- m_Enabled: 1
- --- !u!20 &1991283876
- Camera:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1991283872}
- m_Enabled: 0
- serializedVersion: 2
- m_ClearFlags: 1
- m_BackGroundColor: {r: 0.27450982, g: 0.27450982, b: 0.27450982, a: 0.019607844}
- m_NormalizedViewPortRect:
- serializedVersion: 2
- x: 0
- y: 0
- width: 1
- height: 1
- near clip plane: 0.3
- far clip plane: 1000
- field of view: 60
- orthographic: 0
- orthographic size: 5
- m_Depth: -1
- m_CullingMask:
- serializedVersion: 2
- m_Bits: 4294967295
- m_RenderingPath: -1
- m_TargetTexture: {fileID: 0}
- m_TargetDisplay: 0
- m_TargetEye: 3
- m_HDR: 0
- m_AllowMSAA: 1
- m_AllowDynamicResolution: 0
- m_ForceIntoRT: 0
- m_OcclusionCulling: 1
- m_StereoConvergence: 10
- m_StereoSeparation: 0.022
- --- !u!4 &1991283877
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1991283872}
- m_LocalRotation: {x: -0.0037628238, y: 0.99577874, z: -0.07819499, w: -0.047917906}
- m_LocalPosition: {x: 0.2285862, y: 1.34, z: 1.6217722}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 0}
- m_RootOrder: 4
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &2035248806
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 169792, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2035248807}
- m_Layer: 0
- m_Name: Viking
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &2035248807
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 434440, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2035248806}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: -2.63, y: 0, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children:
- - {fileID: 1269439774}
- - {fileID: 1519739961}
- m_Father: {fileID: 0}
- m_RootOrder: 5
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &2073001479
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 139798, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2073001480}
- m_Layer: 0
- m_Name: CATRigRArmPalm
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &2073001480
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 459738, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2073001479}
- m_LocalRotation: {x: -0.686437, y: 0.06843604, z: -0.22980219, w: 0.6865215}
- m_LocalPosition: {x: -0.21343657, y: 0, z: 0}
- m_LocalScale: {x: 0.9999998, y: 1, z: 1.0000001}
- m_Children:
- - {fileID: 1479411375}
- m_Father: {fileID: 2109641217}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &2109641216
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 140132, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2109641217}
- m_Layer: 0
- m_Name: CATRigRArm2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &2109641217
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 482556, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2109641216}
- m_LocalRotation: {x: 0.03439686, y: -0.015993474, z: -0.17023848, w: 0.9846725}
- m_LocalPosition: {x: -0.37838298, y: -0.0000000166893, z: 0}
- m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000002}
- m_Children:
- - {fileID: 2073001480}
- m_Father: {fileID: 1214625613}
- m_RootOrder: 0
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &2134144478
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 138798, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2134144479}
- m_Layer: 0
- m_Name: CATRigLLegPlatform
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &2134144479
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 469550, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2134144478}
- m_LocalRotation: {x: 0.50000006, y: -0.50000006, z: -0.49999997, w: 0.49999997}
- m_LocalPosition: {x: -0.2623951, y: -0.0000000023284734, z: 0.10179674}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1519739961}
- m_RootOrder: 2
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- --- !u!1 &2144027494
- GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 134472, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2144027495}
- m_Layer: 0
- m_Name: 'CameraTarget '
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
- --- !u!4 &2144027495
- Transform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 489132, guid: 1798da154b0724ce39ecfe02dc3d242c, type: 2}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2144027494}
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
- m_LocalPosition: {x: 0, y: 1, z: 0}
- m_LocalScale: {x: 1, y: 1, z: 1}
- m_Children: []
- m_Father: {fileID: 1519739961}
- m_RootOrder: 5
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|