LQXT_5_Fix.playable 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!74 &-8628921035566691529
  4. AnimationClip:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_Name: Recorded (4)
  10. serializedVersion: 7
  11. m_Legacy: 0
  12. m_Compressed: 0
  13. m_UseHighQualityCurve: 1
  14. m_RotationCurves: []
  15. m_CompressedRotationCurves: []
  16. m_EulerCurves: []
  17. m_PositionCurves:
  18. - curve:
  19. serializedVersion: 2
  20. m_Curve:
  21. - serializedVersion: 3
  22. time: 0
  23. value: {x: -0.00090003014, y: 0, z: 0}
  24. inSlope: {x: 0, y: 0, z: 0}
  25. outSlope: {x: 0, y: 0, z: 0}
  26. tangentMode: 0
  27. weightedMode: 0
  28. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  29. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  30. - serializedVersion: 3
  31. time: 0.6166668
  32. value: {x: -0.012500048, y: 0, z: 0}
  33. inSlope: {x: 0, y: 0, z: 0}
  34. outSlope: {x: 0, y: 0, z: 0}
  35. tangentMode: 0
  36. weightedMode: 0
  37. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  38. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  39. - serializedVersion: 3
  40. time: 1.2833328
  41. value: {x: 0.015299976, y: 0, z: 0}
  42. inSlope: {x: 0, y: 0, z: 0}
  43. outSlope: {x: 0, y: 0, z: 0}
  44. tangentMode: 0
  45. weightedMode: 0
  46. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  47. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  48. - serializedVersion: 3
  49. time: 1.8999996
  50. value: {x: -0.007400036, y: 0, z: 0}
  51. inSlope: {x: 0, y: 0, z: 0}
  52. outSlope: {x: 0, y: 0, z: 0}
  53. tangentMode: 0
  54. weightedMode: 0
  55. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  56. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  57. m_PreInfinity: 2
  58. m_PostInfinity: 2
  59. m_RotationOrder: 4
  60. path:
  61. m_ScaleCurves: []
  62. m_FloatCurves: []
  63. m_PPtrCurves: []
  64. m_SampleRate: 60
  65. m_WrapMode: 0
  66. m_Bounds:
  67. m_Center: {x: 0, y: 0, z: 0}
  68. m_Extent: {x: 0, y: 0, z: 0}
  69. m_ClipBindingConstant:
  70. genericBindings:
  71. - serializedVersion: 2
  72. path: 0
  73. attribute: 1
  74. script: {fileID: 0}
  75. typeID: 4
  76. customType: 0
  77. isPPtrCurve: 0
  78. pptrCurveMapping: []
  79. m_AnimationClipSettings:
  80. serializedVersion: 2
  81. m_AdditiveReferencePoseClip: {fileID: 0}
  82. m_AdditiveReferencePoseTime: 0
  83. m_StartTime: 0
  84. m_StopTime: 1.8999996
  85. m_OrientationOffsetY: 0
  86. m_Level: 0
  87. m_CycleOffset: 0
  88. m_HasAdditiveReferencePose: 0
  89. m_LoopTime: 0
  90. m_LoopBlend: 0
  91. m_LoopBlendOrientation: 0
  92. m_LoopBlendPositionY: 0
  93. m_LoopBlendPositionXZ: 0
  94. m_KeepOriginalOrientation: 0
  95. m_KeepOriginalPositionY: 1
  96. m_KeepOriginalPositionXZ: 0
  97. m_HeightFromFeet: 0
  98. m_Mirror: 0
  99. m_EditorCurves:
  100. - curve:
  101. serializedVersion: 2
  102. m_Curve:
  103. - serializedVersion: 3
  104. time: 0
  105. value: -0.00090003014
  106. inSlope: 0
  107. outSlope: 0
  108. tangentMode: 136
  109. weightedMode: 0
  110. inWeight: 0.33333334
  111. outWeight: 0.33333334
  112. - serializedVersion: 3
  113. time: 0.6166668
  114. value: -0.012500048
  115. inSlope: 0
  116. outSlope: 0
  117. tangentMode: 136
  118. weightedMode: 0
  119. inWeight: 0.33333334
  120. outWeight: 0.33333334
  121. - serializedVersion: 3
  122. time: 1.2833328
  123. value: 0.015299976
  124. inSlope: 0
  125. outSlope: 0
  126. tangentMode: 136
  127. weightedMode: 0
  128. inWeight: 0.33333334
  129. outWeight: 0.33333334
  130. - serializedVersion: 3
  131. time: 1.8999996
  132. value: -0.007400036
  133. inSlope: 0
  134. outSlope: 0
  135. tangentMode: 136
  136. weightedMode: 0
  137. inWeight: 0.33333334
  138. outWeight: 0.33333334
  139. m_PreInfinity: 2
  140. m_PostInfinity: 2
  141. m_RotationOrder: 4
  142. attribute: m_LocalPosition.x
  143. path:
  144. classID: 4
  145. script: {fileID: 0}
  146. - curve:
  147. serializedVersion: 2
  148. m_Curve:
  149. - serializedVersion: 3
  150. time: 0
  151. value: 0
  152. inSlope: 0
  153. outSlope: 0
  154. tangentMode: 136
  155. weightedMode: 0
  156. inWeight: 0.33333334
  157. outWeight: 0.33333334
  158. - serializedVersion: 3
  159. time: 0.6166668
  160. value: 0
  161. inSlope: 0
  162. outSlope: 0
  163. tangentMode: 136
  164. weightedMode: 0
  165. inWeight: 0.33333334
  166. outWeight: 0.33333334
  167. - serializedVersion: 3
  168. time: 1.2833328
  169. value: 0
  170. inSlope: 0
  171. outSlope: 0
  172. tangentMode: 136
  173. weightedMode: 0
  174. inWeight: 0.33333334
  175. outWeight: 0.33333334
  176. - serializedVersion: 3
  177. time: 1.8999996
  178. value: 0
  179. inSlope: 0
  180. outSlope: 0
  181. tangentMode: 136
  182. weightedMode: 0
  183. inWeight: 0.33333334
  184. outWeight: 0.33333334
  185. m_PreInfinity: 2
  186. m_PostInfinity: 2
  187. m_RotationOrder: 4
  188. attribute: m_LocalPosition.y
  189. path:
  190. classID: 4
  191. script: {fileID: 0}
  192. - curve:
  193. serializedVersion: 2
  194. m_Curve:
  195. - serializedVersion: 3
  196. time: 0
  197. value: 0
  198. inSlope: 0
  199. outSlope: 0
  200. tangentMode: 136
  201. weightedMode: 0
  202. inWeight: 0.33333334
  203. outWeight: 0.33333334
  204. - serializedVersion: 3
  205. time: 0.6166668
  206. value: 0
  207. inSlope: 0
  208. outSlope: 0
  209. tangentMode: 136
  210. weightedMode: 0
  211. inWeight: 0.33333334
  212. outWeight: 0.33333334
  213. - serializedVersion: 3
  214. time: 1.2833328
  215. value: 0
  216. inSlope: 0
  217. outSlope: 0
  218. tangentMode: 136
  219. weightedMode: 0
  220. inWeight: 0.33333334
  221. outWeight: 0.33333334
  222. - serializedVersion: 3
  223. time: 1.8999996
  224. value: 0
  225. inSlope: 0
  226. outSlope: 0
  227. tangentMode: 136
  228. weightedMode: 0
  229. inWeight: 0.33333334
  230. outWeight: 0.33333334
  231. m_PreInfinity: 2
  232. m_PostInfinity: 2
  233. m_RotationOrder: 4
  234. attribute: m_LocalPosition.z
  235. path:
  236. classID: 4
  237. script: {fileID: 0}
  238. m_EulerEditorCurves: []
  239. m_HasGenericRootTransform: 1
  240. m_HasMotionFloatCurves: 0
  241. m_Events: []
  242. --- !u!114 &-8405672331627114974
  243. MonoBehaviour:
  244. m_ObjectHideFlags: 1
  245. m_CorrespondingSourceObject: {fileID: 0}
  246. m_PrefabInstance: {fileID: 0}
  247. m_PrefabAsset: {fileID: 0}
  248. m_GameObject: {fileID: 0}
  249. m_Enabled: 1
  250. m_EditorHideFlags: 0
  251. m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
  252. m_Name: Activation Track (2)
  253. m_EditorClassIdentifier:
  254. m_Version: 3
  255. m_AnimClip: {fileID: 0}
  256. m_Locked: 0
  257. m_Muted: 0
  258. m_CustomPlayableFullTypename:
  259. m_Curves: {fileID: 0}
  260. m_Parent: {fileID: 11400000}
  261. m_Children: []
  262. m_Clips:
  263. - m_Version: 1
  264. m_Start: 34.31666666666667
  265. m_ClipIn: 0
  266. m_Asset: {fileID: 7968978128150242165}
  267. m_Duration: 4.166666666666664
  268. m_TimeScale: 1
  269. m_ParentTrack: {fileID: -8405672331627114974}
  270. m_EaseInDuration: 0
  271. m_EaseOutDuration: 0
  272. m_BlendInDuration: 0
  273. m_BlendOutDuration: 0
  274. m_MixInCurve:
  275. serializedVersion: 2
  276. m_Curve:
  277. - serializedVersion: 3
  278. time: 0
  279. value: 0
  280. inSlope: 0
  281. outSlope: 0
  282. tangentMode: 0
  283. weightedMode: 0
  284. inWeight: 0
  285. outWeight: 0
  286. - serializedVersion: 3
  287. time: 1
  288. value: 1
  289. inSlope: 0
  290. outSlope: 0
  291. tangentMode: 0
  292. weightedMode: 0
  293. inWeight: 0
  294. outWeight: 0
  295. m_PreInfinity: 2
  296. m_PostInfinity: 2
  297. m_RotationOrder: 4
  298. m_MixOutCurve:
  299. serializedVersion: 2
  300. m_Curve:
  301. - serializedVersion: 3
  302. time: 0
  303. value: 1
  304. inSlope: 0
  305. outSlope: 0
  306. tangentMode: 0
  307. weightedMode: 0
  308. inWeight: 0
  309. outWeight: 0
  310. - serializedVersion: 3
  311. time: 1
  312. value: 0
  313. inSlope: 0
  314. outSlope: 0
  315. tangentMode: 0
  316. weightedMode: 0
  317. inWeight: 0
  318. outWeight: 0
  319. m_PreInfinity: 2
  320. m_PostInfinity: 2
  321. m_RotationOrder: 4
  322. m_BlendInCurveMode: 0
  323. m_BlendOutCurveMode: 0
  324. m_ExposedParameterNames: []
  325. m_AnimationCurves: {fileID: 0}
  326. m_Recordable: 0
  327. m_PostExtrapolationMode: 0
  328. m_PreExtrapolationMode: 0
  329. m_PostExtrapolationTime: 0
  330. m_PreExtrapolationTime: 0
  331. m_DisplayName: Active
  332. m_Markers:
  333. m_Objects: []
  334. m_PostPlaybackState: 3
  335. --- !u!74 &-6323854268480312141
  336. AnimationClip:
  337. m_ObjectHideFlags: 0
  338. m_CorrespondingSourceObject: {fileID: 0}
  339. m_PrefabInstance: {fileID: 0}
  340. m_PrefabAsset: {fileID: 0}
  341. m_Name: Recorded (1)
  342. serializedVersion: 7
  343. m_Legacy: 0
  344. m_Compressed: 0
  345. m_UseHighQualityCurve: 1
  346. m_RotationCurves: []
  347. m_CompressedRotationCurves: []
  348. m_EulerCurves: []
  349. m_PositionCurves:
  350. - curve:
  351. serializedVersion: 2
  352. m_Curve:
  353. - serializedVersion: 3
  354. time: 0
  355. value: {x: -0.0005156696, y: 0, z: 0}
  356. inSlope: {x: 0, y: 0, z: 0}
  357. outSlope: {x: 0, y: 0, z: 0}
  358. tangentMode: 0
  359. weightedMode: 0
  360. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  361. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  362. - serializedVersion: 3
  363. time: 3.9499998
  364. value: {x: 0.6218843, y: 0.000034548342, z: -0.0000069201924}
  365. inSlope: {x: 0, y: 0, z: 0}
  366. outSlope: {x: 0, y: 0, z: 0}
  367. tangentMode: 0
  368. weightedMode: 0
  369. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  370. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  371. - serializedVersion: 3
  372. time: 31.649998
  373. value: {x: 0.6182843, y: 0.000034548342, z: -0.0000069197267}
  374. inSlope: {x: -0.00048133725, y: 0, z: 6.226112e-11}
  375. outSlope: {x: -0.00048133725, y: 0, z: 6.226112e-11}
  376. tangentMode: 0
  377. weightedMode: 0
  378. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  379. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  380. - serializedVersion: 3
  381. time: 33.866665
  382. value: {x: 0.00096432865, y: -0.00036466867, z: 0.0003932179}
  383. inSlope: {x: 0, y: 0, z: 0}
  384. outSlope: {x: 0, y: 0, z: 0}
  385. tangentMode: 0
  386. weightedMode: 0
  387. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  388. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  389. m_PreInfinity: 2
  390. m_PostInfinity: 2
  391. m_RotationOrder: 4
  392. path:
  393. m_ScaleCurves: []
  394. m_FloatCurves: []
  395. m_PPtrCurves: []
  396. m_SampleRate: 60
  397. m_WrapMode: 0
  398. m_Bounds:
  399. m_Center: {x: 0, y: 0, z: 0}
  400. m_Extent: {x: 0, y: 0, z: 0}
  401. m_ClipBindingConstant:
  402. genericBindings:
  403. - serializedVersion: 2
  404. path: 0
  405. attribute: 1
  406. script: {fileID: 0}
  407. typeID: 4
  408. customType: 0
  409. isPPtrCurve: 0
  410. pptrCurveMapping: []
  411. m_AnimationClipSettings:
  412. serializedVersion: 2
  413. m_AdditiveReferencePoseClip: {fileID: 0}
  414. m_AdditiveReferencePoseTime: 0
  415. m_StartTime: 0
  416. m_StopTime: 33.866665
  417. m_OrientationOffsetY: 0
  418. m_Level: 0
  419. m_CycleOffset: 0
  420. m_HasAdditiveReferencePose: 0
  421. m_LoopTime: 0
  422. m_LoopBlend: 0
  423. m_LoopBlendOrientation: 0
  424. m_LoopBlendPositionY: 0
  425. m_LoopBlendPositionXZ: 0
  426. m_KeepOriginalOrientation: 0
  427. m_KeepOriginalPositionY: 1
  428. m_KeepOriginalPositionXZ: 0
  429. m_HeightFromFeet: 0
  430. m_Mirror: 0
  431. m_EditorCurves:
  432. - curve:
  433. serializedVersion: 2
  434. m_Curve:
  435. - serializedVersion: 3
  436. time: 0
  437. value: -0.0005156696
  438. inSlope: 0
  439. outSlope: 0
  440. tangentMode: 136
  441. weightedMode: 0
  442. inWeight: 0.33333334
  443. outWeight: 0.33333334
  444. - serializedVersion: 3
  445. time: 3.9499998
  446. value: 0.6218843
  447. inSlope: 0
  448. outSlope: 0
  449. tangentMode: 136
  450. weightedMode: 0
  451. inWeight: 0.33333334
  452. outWeight: 0.33333334
  453. - serializedVersion: 3
  454. time: 31.649998
  455. value: 0.6182843
  456. inSlope: -0.00048133725
  457. outSlope: -0.00048133725
  458. tangentMode: 136
  459. weightedMode: 0
  460. inWeight: 0.33333334
  461. outWeight: 0.33333334
  462. - serializedVersion: 3
  463. time: 33.866665
  464. value: 0.00096432865
  465. inSlope: 0
  466. outSlope: 0
  467. tangentMode: 136
  468. weightedMode: 0
  469. inWeight: 0.33333334
  470. outWeight: 0.33333334
  471. m_PreInfinity: 2
  472. m_PostInfinity: 2
  473. m_RotationOrder: 4
  474. attribute: m_LocalPosition.x
  475. path:
  476. classID: 4
  477. script: {fileID: 0}
  478. - curve:
  479. serializedVersion: 2
  480. m_Curve:
  481. - serializedVersion: 3
  482. time: 0
  483. value: 0
  484. inSlope: 0
  485. outSlope: 0
  486. tangentMode: 136
  487. weightedMode: 0
  488. inWeight: 0.33333334
  489. outWeight: 0.33333334
  490. - serializedVersion: 3
  491. time: 3.9499998
  492. value: 0.000034548342
  493. inSlope: 0
  494. outSlope: 0
  495. tangentMode: 136
  496. weightedMode: 0
  497. inWeight: 0.33333334
  498. outWeight: 0.33333334
  499. - serializedVersion: 3
  500. time: 31.649998
  501. value: 0.000034548342
  502. inSlope: 0
  503. outSlope: 0
  504. tangentMode: 136
  505. weightedMode: 0
  506. inWeight: 0.33333334
  507. outWeight: 0.33333334
  508. - serializedVersion: 3
  509. time: 33.866665
  510. value: -0.00036466867
  511. inSlope: 0
  512. outSlope: 0
  513. tangentMode: 136
  514. weightedMode: 0
  515. inWeight: 0.33333334
  516. outWeight: 0.33333334
  517. m_PreInfinity: 2
  518. m_PostInfinity: 2
  519. m_RotationOrder: 4
  520. attribute: m_LocalPosition.y
  521. path:
  522. classID: 4
  523. script: {fileID: 0}
  524. - curve:
  525. serializedVersion: 2
  526. m_Curve:
  527. - serializedVersion: 3
  528. time: 0
  529. value: 0
  530. inSlope: 0
  531. outSlope: 0
  532. tangentMode: 136
  533. weightedMode: 0
  534. inWeight: 0.33333334
  535. outWeight: 0.33333334
  536. - serializedVersion: 3
  537. time: 3.9499998
  538. value: -0.0000069201924
  539. inSlope: 0
  540. outSlope: 0
  541. tangentMode: 136
  542. weightedMode: 0
  543. inWeight: 0.33333334
  544. outWeight: 0.33333334
  545. - serializedVersion: 3
  546. time: 31.649998
  547. value: -0.0000069197267
  548. inSlope: 6.226112e-11
  549. outSlope: 6.226112e-11
  550. tangentMode: 136
  551. weightedMode: 0
  552. inWeight: 0.33333334
  553. outWeight: 0.33333334
  554. - serializedVersion: 3
  555. time: 33.866665
  556. value: 0.0003932179
  557. inSlope: 0
  558. outSlope: 0
  559. tangentMode: 136
  560. weightedMode: 0
  561. inWeight: 0.33333334
  562. outWeight: 0.33333334
  563. m_PreInfinity: 2
  564. m_PostInfinity: 2
  565. m_RotationOrder: 4
  566. attribute: m_LocalPosition.z
  567. path:
  568. classID: 4
  569. script: {fileID: 0}
  570. m_EulerEditorCurves: []
  571. m_HasGenericRootTransform: 1
  572. m_HasMotionFloatCurves: 0
  573. m_Events: []
  574. --- !u!114 &-5924563024296278929
  575. MonoBehaviour:
  576. m_ObjectHideFlags: 1
  577. m_CorrespondingSourceObject: {fileID: 0}
  578. m_PrefabInstance: {fileID: 0}
  579. m_PrefabAsset: {fileID: 0}
  580. m_GameObject: {fileID: 0}
  581. m_Enabled: 1
  582. m_EditorHideFlags: 0
  583. m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
  584. m_Name: Activation Track (3)
  585. m_EditorClassIdentifier:
  586. m_Version: 3
  587. m_AnimClip: {fileID: 0}
  588. m_Locked: 0
  589. m_Muted: 0
  590. m_CustomPlayableFullTypename:
  591. m_Curves: {fileID: 0}
  592. m_Parent: {fileID: 11400000}
  593. m_Children: []
  594. m_Clips:
  595. - m_Version: 1
  596. m_Start: 3.85
  597. m_ClipIn: 0
  598. m_Asset: {fileID: -4394620390488347645}
  599. m_Duration: 2.5333333333333337
  600. m_TimeScale: 1
  601. m_ParentTrack: {fileID: -5924563024296278929}
  602. m_EaseInDuration: 0
  603. m_EaseOutDuration: 0
  604. m_BlendInDuration: 0
  605. m_BlendOutDuration: 0
  606. m_MixInCurve:
  607. serializedVersion: 2
  608. m_Curve:
  609. - serializedVersion: 3
  610. time: 0
  611. value: 0
  612. inSlope: 0
  613. outSlope: 0
  614. tangentMode: 0
  615. weightedMode: 0
  616. inWeight: 0
  617. outWeight: 0
  618. - serializedVersion: 3
  619. time: 1
  620. value: 1
  621. inSlope: 0
  622. outSlope: 0
  623. tangentMode: 0
  624. weightedMode: 0
  625. inWeight: 0
  626. outWeight: 0
  627. m_PreInfinity: 2
  628. m_PostInfinity: 2
  629. m_RotationOrder: 4
  630. m_MixOutCurve:
  631. serializedVersion: 2
  632. m_Curve:
  633. - serializedVersion: 3
  634. time: 0
  635. value: 1
  636. inSlope: 0
  637. outSlope: 0
  638. tangentMode: 0
  639. weightedMode: 0
  640. inWeight: 0
  641. outWeight: 0
  642. - serializedVersion: 3
  643. time: 1
  644. value: 0
  645. inSlope: 0
  646. outSlope: 0
  647. tangentMode: 0
  648. weightedMode: 0
  649. inWeight: 0
  650. outWeight: 0
  651. m_PreInfinity: 2
  652. m_PostInfinity: 2
  653. m_RotationOrder: 4
  654. m_BlendInCurveMode: 0
  655. m_BlendOutCurveMode: 0
  656. m_ExposedParameterNames: []
  657. m_AnimationCurves: {fileID: 0}
  658. m_Recordable: 0
  659. m_PostExtrapolationMode: 0
  660. m_PreExtrapolationMode: 0
  661. m_PostExtrapolationTime: 0
  662. m_PreExtrapolationTime: 0
  663. m_DisplayName: Active
  664. m_Markers:
  665. m_Objects: []
  666. m_PostPlaybackState: 3
  667. --- !u!114 &-4394620390488347645
  668. MonoBehaviour:
  669. m_ObjectHideFlags: 1
  670. m_CorrespondingSourceObject: {fileID: 0}
  671. m_PrefabInstance: {fileID: 0}
  672. m_PrefabAsset: {fileID: 0}
  673. m_GameObject: {fileID: 0}
  674. m_Enabled: 1
  675. m_EditorHideFlags: 0
  676. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  677. m_Name: ActivationPlayableAsset
  678. m_EditorClassIdentifier:
  679. --- !u!114 &-4183142464520191806
  680. MonoBehaviour:
  681. m_ObjectHideFlags: 1
  682. m_CorrespondingSourceObject: {fileID: 0}
  683. m_PrefabInstance: {fileID: 0}
  684. m_PrefabAsset: {fileID: 0}
  685. m_GameObject: {fileID: 0}
  686. m_Enabled: 1
  687. m_EditorHideFlags: 0
  688. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  689. m_Name: ActivationPlayableAsset
  690. m_EditorClassIdentifier:
  691. --- !u!74 &-4017571347899113893
  692. AnimationClip:
  693. m_ObjectHideFlags: 0
  694. m_CorrespondingSourceObject: {fileID: 0}
  695. m_PrefabInstance: {fileID: 0}
  696. m_PrefabAsset: {fileID: 0}
  697. m_Name: Recorded (3)
  698. serializedVersion: 7
  699. m_Legacy: 0
  700. m_Compressed: 0
  701. m_UseHighQualityCurve: 1
  702. m_RotationCurves: []
  703. m_CompressedRotationCurves: []
  704. m_EulerCurves: []
  705. m_PositionCurves:
  706. - curve:
  707. serializedVersion: 2
  708. m_Curve:
  709. - serializedVersion: 3
  710. time: 0
  711. value: {x: 0, y: 0, z: 0}
  712. inSlope: {x: 0, y: 0, z: 0}
  713. outSlope: {x: 0, y: 0, z: 0}
  714. tangentMode: 0
  715. weightedMode: 0
  716. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  717. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  718. - serializedVersion: 3
  719. time: 0.6166668
  720. value: {x: -0.011600018, y: 0, z: 0}
  721. inSlope: {x: 0, y: 0, z: 0}
  722. outSlope: {x: 0, y: 0, z: 0}
  723. tangentMode: 0
  724. weightedMode: 0
  725. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  726. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  727. - serializedVersion: 3
  728. time: 1.2833328
  729. value: {x: 0.016200006, y: 0, z: 0}
  730. inSlope: {x: 0, y: 0, z: 0}
  731. outSlope: {x: 0, y: 0, z: 0}
  732. tangentMode: 0
  733. weightedMode: 0
  734. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  735. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  736. - serializedVersion: 3
  737. time: 1.8999996
  738. value: {x: -0.0065000057, y: 0, z: 0}
  739. inSlope: {x: 0, y: 0, z: 0}
  740. outSlope: {x: 0, y: 0, z: 0}
  741. tangentMode: 0
  742. weightedMode: 0
  743. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  744. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  745. m_PreInfinity: 2
  746. m_PostInfinity: 2
  747. m_RotationOrder: 4
  748. path:
  749. m_ScaleCurves: []
  750. m_FloatCurves: []
  751. m_PPtrCurves: []
  752. m_SampleRate: 60
  753. m_WrapMode: 0
  754. m_Bounds:
  755. m_Center: {x: 0, y: 0, z: 0}
  756. m_Extent: {x: 0, y: 0, z: 0}
  757. m_ClipBindingConstant:
  758. genericBindings:
  759. - serializedVersion: 2
  760. path: 0
  761. attribute: 1
  762. script: {fileID: 0}
  763. typeID: 4
  764. customType: 0
  765. isPPtrCurve: 0
  766. pptrCurveMapping: []
  767. m_AnimationClipSettings:
  768. serializedVersion: 2
  769. m_AdditiveReferencePoseClip: {fileID: 0}
  770. m_AdditiveReferencePoseTime: 0
  771. m_StartTime: 0
  772. m_StopTime: 1.8999996
  773. m_OrientationOffsetY: 0
  774. m_Level: 0
  775. m_CycleOffset: 0
  776. m_HasAdditiveReferencePose: 0
  777. m_LoopTime: 0
  778. m_LoopBlend: 0
  779. m_LoopBlendOrientation: 0
  780. m_LoopBlendPositionY: 0
  781. m_LoopBlendPositionXZ: 0
  782. m_KeepOriginalOrientation: 0
  783. m_KeepOriginalPositionY: 1
  784. m_KeepOriginalPositionXZ: 0
  785. m_HeightFromFeet: 0
  786. m_Mirror: 0
  787. m_EditorCurves:
  788. - curve:
  789. serializedVersion: 2
  790. m_Curve:
  791. - serializedVersion: 3
  792. time: 0
  793. value: 0
  794. inSlope: 0
  795. outSlope: 0
  796. tangentMode: 136
  797. weightedMode: 0
  798. inWeight: 0.33333334
  799. outWeight: 0.33333334
  800. - serializedVersion: 3
  801. time: 0.6166668
  802. value: -0.011600018
  803. inSlope: 0
  804. outSlope: 0
  805. tangentMode: 136
  806. weightedMode: 0
  807. inWeight: 0.33333334
  808. outWeight: 0.33333334
  809. - serializedVersion: 3
  810. time: 1.2833328
  811. value: 0.016200006
  812. inSlope: 0
  813. outSlope: 0
  814. tangentMode: 136
  815. weightedMode: 0
  816. inWeight: 0.33333334
  817. outWeight: 0.33333334
  818. - serializedVersion: 3
  819. time: 1.8999996
  820. value: -0.0065000057
  821. inSlope: 0
  822. outSlope: 0
  823. tangentMode: 136
  824. weightedMode: 0
  825. inWeight: 0.33333334
  826. outWeight: 0.33333334
  827. m_PreInfinity: 2
  828. m_PostInfinity: 2
  829. m_RotationOrder: 4
  830. attribute: m_LocalPosition.x
  831. path:
  832. classID: 4
  833. script: {fileID: 0}
  834. - curve:
  835. serializedVersion: 2
  836. m_Curve:
  837. - serializedVersion: 3
  838. time: 0
  839. value: 0
  840. inSlope: 0
  841. outSlope: 0
  842. tangentMode: 136
  843. weightedMode: 0
  844. inWeight: 0.33333334
  845. outWeight: 0.33333334
  846. - serializedVersion: 3
  847. time: 0.6166668
  848. value: 0
  849. inSlope: 0
  850. outSlope: 0
  851. tangentMode: 136
  852. weightedMode: 0
  853. inWeight: 0.33333334
  854. outWeight: 0.33333334
  855. - serializedVersion: 3
  856. time: 1.2833328
  857. value: 0
  858. inSlope: 0
  859. outSlope: 0
  860. tangentMode: 136
  861. weightedMode: 0
  862. inWeight: 0.33333334
  863. outWeight: 0.33333334
  864. - serializedVersion: 3
  865. time: 1.8999996
  866. value: 0
  867. inSlope: 0
  868. outSlope: 0
  869. tangentMode: 136
  870. weightedMode: 0
  871. inWeight: 0.33333334
  872. outWeight: 0.33333334
  873. m_PreInfinity: 2
  874. m_PostInfinity: 2
  875. m_RotationOrder: 4
  876. attribute: m_LocalPosition.y
  877. path:
  878. classID: 4
  879. script: {fileID: 0}
  880. - curve:
  881. serializedVersion: 2
  882. m_Curve:
  883. - serializedVersion: 3
  884. time: 0
  885. value: 0
  886. inSlope: 0
  887. outSlope: 0
  888. tangentMode: 136
  889. weightedMode: 0
  890. inWeight: 0.33333334
  891. outWeight: 0.33333334
  892. - serializedVersion: 3
  893. time: 0.6166668
  894. value: 0
  895. inSlope: 0
  896. outSlope: 0
  897. tangentMode: 136
  898. weightedMode: 0
  899. inWeight: 0.33333334
  900. outWeight: 0.33333334
  901. - serializedVersion: 3
  902. time: 1.2833328
  903. value: 0
  904. inSlope: 0
  905. outSlope: 0
  906. tangentMode: 136
  907. weightedMode: 0
  908. inWeight: 0.33333334
  909. outWeight: 0.33333334
  910. - serializedVersion: 3
  911. time: 1.8999996
  912. value: 0
  913. inSlope: 0
  914. outSlope: 0
  915. tangentMode: 136
  916. weightedMode: 0
  917. inWeight: 0.33333334
  918. outWeight: 0.33333334
  919. m_PreInfinity: 2
  920. m_PostInfinity: 2
  921. m_RotationOrder: 4
  922. attribute: m_LocalPosition.z
  923. path:
  924. classID: 4
  925. script: {fileID: 0}
  926. m_EulerEditorCurves: []
  927. m_HasGenericRootTransform: 1
  928. m_HasMotionFloatCurves: 0
  929. m_Events: []
  930. --- !u!114 &-3435655227629419296
  931. MonoBehaviour:
  932. m_ObjectHideFlags: 1
  933. m_CorrespondingSourceObject: {fileID: 0}
  934. m_PrefabInstance: {fileID: 0}
  935. m_PrefabAsset: {fileID: 0}
  936. m_GameObject: {fileID: 0}
  937. m_Enabled: 1
  938. m_EditorHideFlags: 0
  939. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  940. m_Name: Recorded (4)
  941. m_EditorClassIdentifier:
  942. m_Clip: {fileID: -8628921035566691529}
  943. m_Position: {x: -7.724, y: 0.63, z: -8.164}
  944. m_EulerAngles: {x: -0, y: 0, z: 90}
  945. m_UseTrackMatchFields: 1
  946. m_MatchTargetFields: 63
  947. m_RemoveStartOffset: 0
  948. m_ApplyFootIK: 1
  949. m_Loop: 0
  950. m_Version: 1
  951. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  952. --- !u!114 &-2029721919920298295
  953. MonoBehaviour:
  954. m_ObjectHideFlags: 1
  955. m_CorrespondingSourceObject: {fileID: 0}
  956. m_PrefabInstance: {fileID: 0}
  957. m_PrefabAsset: {fileID: 0}
  958. m_GameObject: {fileID: 0}
  959. m_Enabled: 1
  960. m_EditorHideFlags: 0
  961. m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
  962. m_Name: Activation Track (1)
  963. m_EditorClassIdentifier:
  964. m_Version: 3
  965. m_AnimClip: {fileID: 0}
  966. m_Locked: 0
  967. m_Muted: 0
  968. m_CustomPlayableFullTypename:
  969. m_Curves: {fileID: 0}
  970. m_Parent: {fileID: 11400000}
  971. m_Children: []
  972. m_Clips:
  973. - m_Version: 1
  974. m_Start: 28.110181666413943
  975. m_ClipIn: 0
  976. m_Asset: {fileID: -4183142464520191806}
  977. m_Duration: 4.623151666919391
  978. m_TimeScale: 1
  979. m_ParentTrack: {fileID: -2029721919920298295}
  980. m_EaseInDuration: 0
  981. m_EaseOutDuration: 0
  982. m_BlendInDuration: 0
  983. m_BlendOutDuration: 0
  984. m_MixInCurve:
  985. serializedVersion: 2
  986. m_Curve:
  987. - serializedVersion: 3
  988. time: 0
  989. value: 0
  990. inSlope: 0
  991. outSlope: 0
  992. tangentMode: 0
  993. weightedMode: 0
  994. inWeight: 0
  995. outWeight: 0
  996. - serializedVersion: 3
  997. time: 1
  998. value: 1
  999. inSlope: 0
  1000. outSlope: 0
  1001. tangentMode: 0
  1002. weightedMode: 0
  1003. inWeight: 0
  1004. outWeight: 0
  1005. m_PreInfinity: 2
  1006. m_PostInfinity: 2
  1007. m_RotationOrder: 4
  1008. m_MixOutCurve:
  1009. serializedVersion: 2
  1010. m_Curve:
  1011. - serializedVersion: 3
  1012. time: 0
  1013. value: 1
  1014. inSlope: 0
  1015. outSlope: 0
  1016. tangentMode: 0
  1017. weightedMode: 0
  1018. inWeight: 0
  1019. outWeight: 0
  1020. - serializedVersion: 3
  1021. time: 1
  1022. value: 0
  1023. inSlope: 0
  1024. outSlope: 0
  1025. tangentMode: 0
  1026. weightedMode: 0
  1027. inWeight: 0
  1028. outWeight: 0
  1029. m_PreInfinity: 2
  1030. m_PostInfinity: 2
  1031. m_RotationOrder: 4
  1032. m_BlendInCurveMode: 0
  1033. m_BlendOutCurveMode: 0
  1034. m_ExposedParameterNames: []
  1035. m_AnimationCurves: {fileID: 0}
  1036. m_Recordable: 0
  1037. m_PostExtrapolationMode: 0
  1038. m_PreExtrapolationMode: 0
  1039. m_PostExtrapolationTime: 0
  1040. m_PreExtrapolationTime: 0
  1041. m_DisplayName: Active
  1042. m_Markers:
  1043. m_Objects: []
  1044. m_PostPlaybackState: 3
  1045. --- !u!114 &-1601072973396087962
  1046. MonoBehaviour:
  1047. m_ObjectHideFlags: 1
  1048. m_CorrespondingSourceObject: {fileID: 0}
  1049. m_PrefabInstance: {fileID: 0}
  1050. m_PrefabAsset: {fileID: 0}
  1051. m_GameObject: {fileID: 0}
  1052. m_Enabled: 1
  1053. m_EditorHideFlags: 0
  1054. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  1055. m_Name: ActivationPlayableAsset(Clone)(Clone)
  1056. m_EditorClassIdentifier:
  1057. --- !u!114 &-1399497614943326201
  1058. MonoBehaviour:
  1059. m_ObjectHideFlags: 1
  1060. m_CorrespondingSourceObject: {fileID: 0}
  1061. m_PrefabInstance: {fileID: 0}
  1062. m_PrefabAsset: {fileID: 0}
  1063. m_GameObject: {fileID: 0}
  1064. m_Enabled: 1
  1065. m_EditorHideFlags: 0
  1066. m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
  1067. m_Name: Activation Track
  1068. m_EditorClassIdentifier:
  1069. m_Version: 3
  1070. m_AnimClip: {fileID: 0}
  1071. m_Locked: 0
  1072. m_Muted: 0
  1073. m_CustomPlayableFullTypename:
  1074. m_Curves: {fileID: 0}
  1075. m_Parent: {fileID: 11400000}
  1076. m_Children: []
  1077. m_Clips:
  1078. - m_Version: 1
  1079. m_Start: 0
  1080. m_ClipIn: 0
  1081. m_Asset: {fileID: 735119947339320985}
  1082. m_Duration: 3.85
  1083. m_TimeScale: 1
  1084. m_ParentTrack: {fileID: -1399497614943326201}
  1085. m_EaseInDuration: 0
  1086. m_EaseOutDuration: 0
  1087. m_BlendInDuration: 0
  1088. m_BlendOutDuration: 0
  1089. m_MixInCurve:
  1090. serializedVersion: 2
  1091. m_Curve:
  1092. - serializedVersion: 3
  1093. time: 0
  1094. value: 0
  1095. inSlope: 0
  1096. outSlope: 0
  1097. tangentMode: 0
  1098. weightedMode: 0
  1099. inWeight: 0
  1100. outWeight: 0
  1101. - serializedVersion: 3
  1102. time: 1
  1103. value: 1
  1104. inSlope: 0
  1105. outSlope: 0
  1106. tangentMode: 0
  1107. weightedMode: 0
  1108. inWeight: 0
  1109. outWeight: 0
  1110. m_PreInfinity: 2
  1111. m_PostInfinity: 2
  1112. m_RotationOrder: 4
  1113. m_MixOutCurve:
  1114. serializedVersion: 2
  1115. m_Curve:
  1116. - serializedVersion: 3
  1117. time: 0
  1118. value: 1
  1119. inSlope: 0
  1120. outSlope: 0
  1121. tangentMode: 0
  1122. weightedMode: 0
  1123. inWeight: 0
  1124. outWeight: 0
  1125. - serializedVersion: 3
  1126. time: 1
  1127. value: 0
  1128. inSlope: 0
  1129. outSlope: 0
  1130. tangentMode: 0
  1131. weightedMode: 0
  1132. inWeight: 0
  1133. outWeight: 0
  1134. m_PreInfinity: 2
  1135. m_PostInfinity: 2
  1136. m_RotationOrder: 4
  1137. m_BlendInCurveMode: 0
  1138. m_BlendOutCurveMode: 0
  1139. m_ExposedParameterNames: []
  1140. m_AnimationCurves: {fileID: 0}
  1141. m_Recordable: 0
  1142. m_PostExtrapolationMode: 0
  1143. m_PreExtrapolationMode: 0
  1144. m_PostExtrapolationTime: 0
  1145. m_PreExtrapolationTime: 0
  1146. m_DisplayName: Active
  1147. - m_Version: 1
  1148. m_Start: 6.383333333333334
  1149. m_ClipIn: 0
  1150. m_Asset: {fileID: -1601072973396087962}
  1151. m_Duration: 53.03333333333333
  1152. m_TimeScale: 1
  1153. m_ParentTrack: {fileID: -1399497614943326201}
  1154. m_EaseInDuration: 0
  1155. m_EaseOutDuration: 0
  1156. m_BlendInDuration: 0
  1157. m_BlendOutDuration: 0
  1158. m_MixInCurve:
  1159. serializedVersion: 2
  1160. m_Curve:
  1161. - serializedVersion: 3
  1162. time: 0
  1163. value: 0
  1164. inSlope: 0
  1165. outSlope: 0
  1166. tangentMode: 0
  1167. weightedMode: 0
  1168. inWeight: 0
  1169. outWeight: 0
  1170. - serializedVersion: 3
  1171. time: 1
  1172. value: 1
  1173. inSlope: 0
  1174. outSlope: 0
  1175. tangentMode: 0
  1176. weightedMode: 0
  1177. inWeight: 0
  1178. outWeight: 0
  1179. m_PreInfinity: 2
  1180. m_PostInfinity: 2
  1181. m_RotationOrder: 4
  1182. m_MixOutCurve:
  1183. serializedVersion: 2
  1184. m_Curve:
  1185. - serializedVersion: 3
  1186. time: 0
  1187. value: 1
  1188. inSlope: 0
  1189. outSlope: 0
  1190. tangentMode: 0
  1191. weightedMode: 0
  1192. inWeight: 0
  1193. outWeight: 0
  1194. - serializedVersion: 3
  1195. time: 1
  1196. value: 0
  1197. inSlope: 0
  1198. outSlope: 0
  1199. tangentMode: 0
  1200. weightedMode: 0
  1201. inWeight: 0
  1202. outWeight: 0
  1203. m_PreInfinity: 2
  1204. m_PostInfinity: 2
  1205. m_RotationOrder: 4
  1206. m_BlendInCurveMode: 0
  1207. m_BlendOutCurveMode: 0
  1208. m_ExposedParameterNames: []
  1209. m_AnimationCurves: {fileID: 0}
  1210. m_Recordable: 0
  1211. m_PostExtrapolationMode: 0
  1212. m_PreExtrapolationMode: 0
  1213. m_PostExtrapolationTime: 0
  1214. m_PreExtrapolationTime: 0
  1215. m_DisplayName: Active
  1216. m_Markers:
  1217. m_Objects: []
  1218. m_PostPlaybackState: 3
  1219. --- !u!74 &-1092314777848640289
  1220. AnimationClip:
  1221. m_ObjectHideFlags: 0
  1222. m_CorrespondingSourceObject: {fileID: 0}
  1223. m_PrefabInstance: {fileID: 0}
  1224. m_PrefabAsset: {fileID: 0}
  1225. m_Name: Recorded (2)
  1226. serializedVersion: 7
  1227. m_Legacy: 0
  1228. m_Compressed: 0
  1229. m_UseHighQualityCurve: 1
  1230. m_RotationCurves: []
  1231. m_CompressedRotationCurves: []
  1232. m_EulerCurves: []
  1233. m_PositionCurves:
  1234. - curve:
  1235. serializedVersion: 2
  1236. m_Curve:
  1237. - serializedVersion: 3
  1238. time: 0
  1239. value: {x: 0, y: -0.000010001939, z: -0.00087597966}
  1240. inSlope: {x: 0, y: 0, z: 0}
  1241. outSlope: {x: 0, y: 0, z: 0}
  1242. tangentMode: 0
  1243. weightedMode: 0
  1244. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1245. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1246. - serializedVersion: 3
  1247. time: 1.5666656
  1248. value: {x: -0.024337908, y: -0.000010001939, z: -0.07817599}
  1249. inSlope: {x: -0.023271311, y: 0, z: 0}
  1250. outSlope: {x: -0.023271311, y: 0, z: 0}
  1251. tangentMode: 0
  1252. weightedMode: 0
  1253. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1254. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1255. - serializedVersion: 3
  1256. time: 4.1833324
  1257. value: {x: -0.1469379, y: -0.08551, z: 0.10522401}
  1258. inSlope: {x: -0.000043400894, y: -0.000021699485, z: 0}
  1259. outSlope: {x: -0.000043400894, y: -0.000021699485, z: 0}
  1260. tangentMode: 0
  1261. weightedMode: 0
  1262. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1263. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1264. - serializedVersion: 3
  1265. time: 20
  1266. value: {x: -0.14713791, y: -0.08561, z: 0.10522401}
  1267. inSlope: {x: 0, y: 0, z: 0}
  1268. outSlope: {x: 0, y: 0, z: 0}
  1269. tangentMode: 0
  1270. weightedMode: 0
  1271. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1272. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1273. - serializedVersion: 3
  1274. time: 21
  1275. value: {x: -0.0026379079, y: 0.001389998, z: -0.09577599}
  1276. inSlope: {x: 0, y: 0, z: 0}
  1277. outSlope: {x: 0, y: 0, z: 0}
  1278. tangentMode: 0
  1279. weightedMode: 0
  1280. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1281. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1282. - serializedVersion: 3
  1283. time: 21.666668
  1284. value: {x: -0.0026379079, y: 0.001389998, z: -0.020475984}
  1285. inSlope: {x: 0, y: 0, z: 0.024378931}
  1286. outSlope: {x: 0, y: 0, z: 0.024378931}
  1287. tangentMode: 0
  1288. weightedMode: 0
  1289. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1290. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1291. - serializedVersion: 3
  1292. time: 24.166668
  1293. value: {x: -0.0026379079, y: 0.001389998, z: -0.0011759847}
  1294. inSlope: {x: 0, y: 0, z: 0}
  1295. outSlope: {x: 0, y: 0, z: 0}
  1296. tangentMode: 0
  1297. weightedMode: 0
  1298. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1299. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1300. m_PreInfinity: 2
  1301. m_PostInfinity: 2
  1302. m_RotationOrder: 4
  1303. path:
  1304. - curve:
  1305. serializedVersion: 2
  1306. m_Curve:
  1307. - serializedVersion: 3
  1308. time: 4.5166664
  1309. value: {x: -0.0011906662, y: 0.0002293358, z: 0.028824404}
  1310. inSlope: {x: 0, y: 0, z: 0}
  1311. outSlope: {x: 0, y: 0, z: 0}
  1312. tangentMode: 0
  1313. weightedMode: 0
  1314. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1315. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1316. - serializedVersion: 3
  1317. time: 5.3166656
  1318. value: {x: -0.0011906662, y: 0.0002, z: 0.0473}
  1319. inSlope: {x: 0, y: 0, z: 0}
  1320. outSlope: {x: 0, y: 0, z: 0}
  1321. tangentMode: 0
  1322. weightedMode: 0
  1323. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1324. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1325. - serializedVersion: 3
  1326. time: 6.5666656
  1327. value: {x: -0.018, y: 0.231, z: 0.047}
  1328. inSlope: {x: 0, y: 0, z: 0}
  1329. outSlope: {x: 0, y: 0, z: 0}
  1330. tangentMode: 0
  1331. weightedMode: 0
  1332. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1333. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1334. - serializedVersion: 3
  1335. time: 19.150002
  1336. value: {x: -0.0178, y: 0.2303, z: 0.047}
  1337. inSlope: {x: 0.000059553244, y: -0.00020844022, z: 0}
  1338. outSlope: {x: 0.000059553244, y: -0.00020844022, z: 0}
  1339. tangentMode: 0
  1340. weightedMode: 0
  1341. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1342. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1343. - serializedVersion: 3
  1344. time: 20
  1345. value: {x: -0.0019, y: 0.0008, z: 0.029}
  1346. inSlope: {x: 0, y: 0, z: 0}
  1347. outSlope: {x: 0, y: 0, z: 0}
  1348. tangentMode: 0
  1349. weightedMode: 0
  1350. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1351. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1352. m_PreInfinity: 2
  1353. m_PostInfinity: 2
  1354. m_RotationOrder: 4
  1355. path: Cylinder001
  1356. m_ScaleCurves: []
  1357. m_FloatCurves: []
  1358. m_PPtrCurves: []
  1359. m_SampleRate: 60
  1360. m_WrapMode: 0
  1361. m_Bounds:
  1362. m_Center: {x: 0, y: 0, z: 0}
  1363. m_Extent: {x: 0, y: 0, z: 0}
  1364. m_ClipBindingConstant:
  1365. genericBindings:
  1366. - serializedVersion: 2
  1367. path: 0
  1368. attribute: 1
  1369. script: {fileID: 0}
  1370. typeID: 4
  1371. customType: 0
  1372. isPPtrCurve: 0
  1373. - serializedVersion: 2
  1374. path: 695832823
  1375. attribute: 1
  1376. script: {fileID: 0}
  1377. typeID: 4
  1378. customType: 0
  1379. isPPtrCurve: 0
  1380. pptrCurveMapping: []
  1381. m_AnimationClipSettings:
  1382. serializedVersion: 2
  1383. m_AdditiveReferencePoseClip: {fileID: 0}
  1384. m_AdditiveReferencePoseTime: 0
  1385. m_StartTime: 0
  1386. m_StopTime: 24.166668
  1387. m_OrientationOffsetY: 0
  1388. m_Level: 0
  1389. m_CycleOffset: 0
  1390. m_HasAdditiveReferencePose: 0
  1391. m_LoopTime: 0
  1392. m_LoopBlend: 0
  1393. m_LoopBlendOrientation: 0
  1394. m_LoopBlendPositionY: 0
  1395. m_LoopBlendPositionXZ: 0
  1396. m_KeepOriginalOrientation: 0
  1397. m_KeepOriginalPositionY: 1
  1398. m_KeepOriginalPositionXZ: 0
  1399. m_HeightFromFeet: 0
  1400. m_Mirror: 0
  1401. m_EditorCurves:
  1402. - curve:
  1403. serializedVersion: 2
  1404. m_Curve:
  1405. - serializedVersion: 3
  1406. time: 0
  1407. value: 0
  1408. inSlope: 0
  1409. outSlope: 0
  1410. tangentMode: 136
  1411. weightedMode: 0
  1412. inWeight: 0.33333334
  1413. outWeight: 0.33333334
  1414. - serializedVersion: 3
  1415. time: 1.5666656
  1416. value: -0.024337908
  1417. inSlope: -0.023271311
  1418. outSlope: -0.023271311
  1419. tangentMode: 136
  1420. weightedMode: 0
  1421. inWeight: 0.33333334
  1422. outWeight: 0.33333334
  1423. - serializedVersion: 3
  1424. time: 4.1833324
  1425. value: -0.1469379
  1426. inSlope: -0.000043400894
  1427. outSlope: -0.000043400894
  1428. tangentMode: 136
  1429. weightedMode: 0
  1430. inWeight: 0.33333334
  1431. outWeight: 0.33333334
  1432. - serializedVersion: 3
  1433. time: 20
  1434. value: -0.14713791
  1435. inSlope: 0
  1436. outSlope: 0
  1437. tangentMode: 136
  1438. weightedMode: 0
  1439. inWeight: 0.33333334
  1440. outWeight: 0.33333334
  1441. - serializedVersion: 3
  1442. time: 21
  1443. value: -0.0026379079
  1444. inSlope: 0
  1445. outSlope: 0
  1446. tangentMode: 136
  1447. weightedMode: 0
  1448. inWeight: 0.33333334
  1449. outWeight: 0.33333334
  1450. - serializedVersion: 3
  1451. time: 21.666668
  1452. value: -0.0026379079
  1453. inSlope: 0
  1454. outSlope: 0
  1455. tangentMode: 136
  1456. weightedMode: 0
  1457. inWeight: 0.33333334
  1458. outWeight: 0.33333334
  1459. - serializedVersion: 3
  1460. time: 24.166668
  1461. value: -0.0026379079
  1462. inSlope: 0
  1463. outSlope: 0
  1464. tangentMode: 136
  1465. weightedMode: 0
  1466. inWeight: 0.33333334
  1467. outWeight: 0.33333334
  1468. m_PreInfinity: 2
  1469. m_PostInfinity: 2
  1470. m_RotationOrder: 4
  1471. attribute: m_LocalPosition.x
  1472. path:
  1473. classID: 4
  1474. script: {fileID: 0}
  1475. - curve:
  1476. serializedVersion: 2
  1477. m_Curve:
  1478. - serializedVersion: 3
  1479. time: 0
  1480. value: -0.000010001939
  1481. inSlope: 0
  1482. outSlope: 0
  1483. tangentMode: 136
  1484. weightedMode: 0
  1485. inWeight: 0.33333334
  1486. outWeight: 0.33333334
  1487. - serializedVersion: 3
  1488. time: 1.5666656
  1489. value: -0.000010001939
  1490. inSlope: 0
  1491. outSlope: 0
  1492. tangentMode: 136
  1493. weightedMode: 0
  1494. inWeight: 0.33333334
  1495. outWeight: 0.33333334
  1496. - serializedVersion: 3
  1497. time: 4.1833324
  1498. value: -0.08551
  1499. inSlope: -0.000021699485
  1500. outSlope: -0.000021699485
  1501. tangentMode: 136
  1502. weightedMode: 0
  1503. inWeight: 0.33333334
  1504. outWeight: 0.33333334
  1505. - serializedVersion: 3
  1506. time: 20
  1507. value: -0.08561
  1508. inSlope: 0
  1509. outSlope: 0
  1510. tangentMode: 136
  1511. weightedMode: 0
  1512. inWeight: 0.33333334
  1513. outWeight: 0.33333334
  1514. - serializedVersion: 3
  1515. time: 21
  1516. value: 0.001389998
  1517. inSlope: 0
  1518. outSlope: 0
  1519. tangentMode: 136
  1520. weightedMode: 0
  1521. inWeight: 0.33333334
  1522. outWeight: 0.33333334
  1523. - serializedVersion: 3
  1524. time: 21.666668
  1525. value: 0.001389998
  1526. inSlope: 0
  1527. outSlope: 0
  1528. tangentMode: 136
  1529. weightedMode: 0
  1530. inWeight: 0.33333334
  1531. outWeight: 0.33333334
  1532. - serializedVersion: 3
  1533. time: 24.166668
  1534. value: 0.001389998
  1535. inSlope: 0
  1536. outSlope: 0
  1537. tangentMode: 136
  1538. weightedMode: 0
  1539. inWeight: 0.33333334
  1540. outWeight: 0.33333334
  1541. m_PreInfinity: 2
  1542. m_PostInfinity: 2
  1543. m_RotationOrder: 4
  1544. attribute: m_LocalPosition.y
  1545. path:
  1546. classID: 4
  1547. script: {fileID: 0}
  1548. - curve:
  1549. serializedVersion: 2
  1550. m_Curve:
  1551. - serializedVersion: 3
  1552. time: 0
  1553. value: -0.00087597966
  1554. inSlope: 0
  1555. outSlope: 0
  1556. tangentMode: 136
  1557. weightedMode: 0
  1558. inWeight: 0.33333334
  1559. outWeight: 0.33333334
  1560. - serializedVersion: 3
  1561. time: 1.5666656
  1562. value: -0.07817599
  1563. inSlope: 0
  1564. outSlope: 0
  1565. tangentMode: 136
  1566. weightedMode: 0
  1567. inWeight: 0.33333334
  1568. outWeight: 0.33333334
  1569. - serializedVersion: 3
  1570. time: 4.1833324
  1571. value: 0.10522401
  1572. inSlope: 0
  1573. outSlope: 0
  1574. tangentMode: 136
  1575. weightedMode: 0
  1576. inWeight: 0.33333334
  1577. outWeight: 0.33333334
  1578. - serializedVersion: 3
  1579. time: 20
  1580. value: 0.10522401
  1581. inSlope: 0
  1582. outSlope: 0
  1583. tangentMode: 136
  1584. weightedMode: 0
  1585. inWeight: 0.33333334
  1586. outWeight: 0.33333334
  1587. - serializedVersion: 3
  1588. time: 21
  1589. value: -0.09577599
  1590. inSlope: 0
  1591. outSlope: 0
  1592. tangentMode: 136
  1593. weightedMode: 0
  1594. inWeight: 0.33333334
  1595. outWeight: 0.33333334
  1596. - serializedVersion: 3
  1597. time: 21.666668
  1598. value: -0.020475984
  1599. inSlope: 0.024378931
  1600. outSlope: 0.024378931
  1601. tangentMode: 136
  1602. weightedMode: 0
  1603. inWeight: 0.33333334
  1604. outWeight: 0.33333334
  1605. - serializedVersion: 3
  1606. time: 24.166668
  1607. value: -0.0011759847
  1608. inSlope: 0
  1609. outSlope: 0
  1610. tangentMode: 136
  1611. weightedMode: 0
  1612. inWeight: 0.33333334
  1613. outWeight: 0.33333334
  1614. m_PreInfinity: 2
  1615. m_PostInfinity: 2
  1616. m_RotationOrder: 4
  1617. attribute: m_LocalPosition.z
  1618. path:
  1619. classID: 4
  1620. script: {fileID: 0}
  1621. - curve:
  1622. serializedVersion: 2
  1623. m_Curve:
  1624. - serializedVersion: 3
  1625. time: 4.5166664
  1626. value: -0.0011906662
  1627. inSlope: 0
  1628. outSlope: 0
  1629. tangentMode: 136
  1630. weightedMode: 0
  1631. inWeight: 0.33333334
  1632. outWeight: 0.33333334
  1633. - serializedVersion: 3
  1634. time: 5.3166656
  1635. value: -0.0011906662
  1636. inSlope: 0
  1637. outSlope: 0
  1638. tangentMode: 136
  1639. weightedMode: 0
  1640. inWeight: 0.33333334
  1641. outWeight: 0.33333334
  1642. - serializedVersion: 3
  1643. time: 6.5666656
  1644. value: -0.018
  1645. inSlope: 0
  1646. outSlope: 0
  1647. tangentMode: 136
  1648. weightedMode: 0
  1649. inWeight: 0.33333334
  1650. outWeight: 0.33333334
  1651. - serializedVersion: 3
  1652. time: 19.150002
  1653. value: -0.0178
  1654. inSlope: 0.000059553244
  1655. outSlope: 0.000059553244
  1656. tangentMode: 136
  1657. weightedMode: 0
  1658. inWeight: 0.33333334
  1659. outWeight: 0.33333334
  1660. - serializedVersion: 3
  1661. time: 20
  1662. value: -0.0019
  1663. inSlope: 0
  1664. outSlope: 0
  1665. tangentMode: 136
  1666. weightedMode: 0
  1667. inWeight: 0.33333334
  1668. outWeight: 0.33333334
  1669. m_PreInfinity: 2
  1670. m_PostInfinity: 2
  1671. m_RotationOrder: 4
  1672. attribute: m_LocalPosition.x
  1673. path: Cylinder001
  1674. classID: 4
  1675. script: {fileID: 0}
  1676. - curve:
  1677. serializedVersion: 2
  1678. m_Curve:
  1679. - serializedVersion: 3
  1680. time: 4.5166664
  1681. value: 0.0002293358
  1682. inSlope: 0
  1683. outSlope: 0
  1684. tangentMode: 136
  1685. weightedMode: 0
  1686. inWeight: 0.33333334
  1687. outWeight: 0.33333334
  1688. - serializedVersion: 3
  1689. time: 5.3166656
  1690. value: 0.0002
  1691. inSlope: 0
  1692. outSlope: 0
  1693. tangentMode: 136
  1694. weightedMode: 0
  1695. inWeight: 0.33333334
  1696. outWeight: 0.33333334
  1697. - serializedVersion: 3
  1698. time: 6.5666656
  1699. value: 0.231
  1700. inSlope: 0
  1701. outSlope: 0
  1702. tangentMode: 136
  1703. weightedMode: 0
  1704. inWeight: 0.33333334
  1705. outWeight: 0.33333334
  1706. - serializedVersion: 3
  1707. time: 19.150002
  1708. value: 0.2303
  1709. inSlope: -0.00020844022
  1710. outSlope: -0.00020844022
  1711. tangentMode: 136
  1712. weightedMode: 0
  1713. inWeight: 0.33333334
  1714. outWeight: 0.33333334
  1715. - serializedVersion: 3
  1716. time: 20
  1717. value: 0.0008
  1718. inSlope: 0
  1719. outSlope: 0
  1720. tangentMode: 136
  1721. weightedMode: 0
  1722. inWeight: 0.33333334
  1723. outWeight: 0.33333334
  1724. m_PreInfinity: 2
  1725. m_PostInfinity: 2
  1726. m_RotationOrder: 4
  1727. attribute: m_LocalPosition.y
  1728. path: Cylinder001
  1729. classID: 4
  1730. script: {fileID: 0}
  1731. - curve:
  1732. serializedVersion: 2
  1733. m_Curve:
  1734. - serializedVersion: 3
  1735. time: 4.5166664
  1736. value: 0.028824404
  1737. inSlope: 0
  1738. outSlope: 0
  1739. tangentMode: 136
  1740. weightedMode: 0
  1741. inWeight: 0.33333334
  1742. outWeight: 0.33333334
  1743. - serializedVersion: 3
  1744. time: 5.3166656
  1745. value: 0.0473
  1746. inSlope: 0
  1747. outSlope: 0
  1748. tangentMode: 136
  1749. weightedMode: 0
  1750. inWeight: 0.33333334
  1751. outWeight: 0.33333334
  1752. - serializedVersion: 3
  1753. time: 6.5666656
  1754. value: 0.047
  1755. inSlope: 0
  1756. outSlope: 0
  1757. tangentMode: 136
  1758. weightedMode: 0
  1759. inWeight: 0.33333334
  1760. outWeight: 0.33333334
  1761. - serializedVersion: 3
  1762. time: 19.150002
  1763. value: 0.047
  1764. inSlope: 0
  1765. outSlope: 0
  1766. tangentMode: 136
  1767. weightedMode: 0
  1768. inWeight: 0.33333334
  1769. outWeight: 0.33333334
  1770. - serializedVersion: 3
  1771. time: 20
  1772. value: 0.029
  1773. inSlope: 0
  1774. outSlope: 0
  1775. tangentMode: 136
  1776. weightedMode: 0
  1777. inWeight: 0.33333334
  1778. outWeight: 0.33333334
  1779. m_PreInfinity: 2
  1780. m_PostInfinity: 2
  1781. m_RotationOrder: 4
  1782. attribute: m_LocalPosition.z
  1783. path: Cylinder001
  1784. classID: 4
  1785. script: {fileID: 0}
  1786. m_EulerEditorCurves: []
  1787. m_HasGenericRootTransform: 1
  1788. m_HasMotionFloatCurves: 0
  1789. m_Events: []
  1790. --- !u!114 &11400000
  1791. MonoBehaviour:
  1792. m_ObjectHideFlags: 0
  1793. m_CorrespondingSourceObject: {fileID: 0}
  1794. m_PrefabInstance: {fileID: 0}
  1795. m_PrefabAsset: {fileID: 0}
  1796. m_GameObject: {fileID: 0}
  1797. m_Enabled: 1
  1798. m_EditorHideFlags: 0
  1799. m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3}
  1800. m_Name: LQXT_5_Fix
  1801. m_EditorClassIdentifier:
  1802. m_Version: 0
  1803. m_Tracks:
  1804. - {fileID: 7881252869935293442}
  1805. - {fileID: -1399497614943326201}
  1806. - {fileID: 8078785036211587963}
  1807. - {fileID: 7932618405638870088}
  1808. - {fileID: 2297069836580575921}
  1809. - {fileID: -2029721919920298295}
  1810. - {fileID: -8405672331627114974}
  1811. - {fileID: 393304569402290558}
  1812. - {fileID: 9124058846587292333}
  1813. - {fileID: -5924563024296278929}
  1814. m_FixedDuration: 0
  1815. m_EditorSettings:
  1816. m_Framerate: 60
  1817. m_ScenePreview: 1
  1818. m_DurationMode: 0
  1819. m_MarkerTrack: {fileID: 0}
  1820. --- !u!114 &393304569402290558
  1821. MonoBehaviour:
  1822. m_ObjectHideFlags: 1
  1823. m_CorrespondingSourceObject: {fileID: 0}
  1824. m_PrefabInstance: {fileID: 0}
  1825. m_PrefabAsset: {fileID: 0}
  1826. m_GameObject: {fileID: 0}
  1827. m_Enabled: 1
  1828. m_EditorHideFlags: 0
  1829. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  1830. m_Name: Animation Track (3)
  1831. m_EditorClassIdentifier:
  1832. m_Version: 3
  1833. m_AnimClip: {fileID: 0}
  1834. m_Locked: 0
  1835. m_Muted: 0
  1836. m_CustomPlayableFullTypename:
  1837. m_Curves: {fileID: 0}
  1838. m_Parent: {fileID: 11400000}
  1839. m_Children: []
  1840. m_Clips:
  1841. - m_Version: 1
  1842. m_Start: 28.883333206176758
  1843. m_ClipIn: 0
  1844. m_Asset: {fileID: -3435655227629419296}
  1845. m_Duration: 3.1666666666666643
  1846. m_TimeScale: 0.6000000000000004
  1847. m_ParentTrack: {fileID: 393304569402290558}
  1848. m_EaseInDuration: 0
  1849. m_EaseOutDuration: 0
  1850. m_BlendInDuration: -1
  1851. m_BlendOutDuration: -1
  1852. m_MixInCurve:
  1853. serializedVersion: 2
  1854. m_Curve:
  1855. - serializedVersion: 3
  1856. time: 0
  1857. value: 0
  1858. inSlope: 0
  1859. outSlope: 0
  1860. tangentMode: 0
  1861. weightedMode: 0
  1862. inWeight: 0
  1863. outWeight: 0
  1864. - serializedVersion: 3
  1865. time: 1
  1866. value: 1
  1867. inSlope: 0
  1868. outSlope: 0
  1869. tangentMode: 0
  1870. weightedMode: 0
  1871. inWeight: 0
  1872. outWeight: 0
  1873. m_PreInfinity: 2
  1874. m_PostInfinity: 2
  1875. m_RotationOrder: 4
  1876. m_MixOutCurve:
  1877. serializedVersion: 2
  1878. m_Curve:
  1879. - serializedVersion: 3
  1880. time: 0
  1881. value: 1
  1882. inSlope: 0
  1883. outSlope: 0
  1884. tangentMode: 0
  1885. weightedMode: 0
  1886. inWeight: 0
  1887. outWeight: 0
  1888. - serializedVersion: 3
  1889. time: 1
  1890. value: 0
  1891. inSlope: 0
  1892. outSlope: 0
  1893. tangentMode: 0
  1894. weightedMode: 0
  1895. inWeight: 0
  1896. outWeight: 0
  1897. m_PreInfinity: 2
  1898. m_PostInfinity: 2
  1899. m_RotationOrder: 4
  1900. m_BlendInCurveMode: 0
  1901. m_BlendOutCurveMode: 0
  1902. m_ExposedParameterNames: []
  1903. m_AnimationCurves: {fileID: 0}
  1904. m_Recordable: 1
  1905. m_PostExtrapolationMode: 1
  1906. m_PreExtrapolationMode: 1
  1907. m_PostExtrapolationTime: Infinity
  1908. m_PreExtrapolationTime: 28.883333206176758
  1909. m_DisplayName: Recorded (4)
  1910. m_Markers:
  1911. m_Objects: []
  1912. m_InfiniteClipPreExtrapolation: 1
  1913. m_InfiniteClipPostExtrapolation: 1
  1914. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  1915. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  1916. m_InfiniteClipTimeOffset: 0
  1917. m_InfiniteClipRemoveOffset: 0
  1918. m_InfiniteClipApplyFootIK: 1
  1919. mInfiniteClipLoop: 0
  1920. m_MatchTargetFields: 63
  1921. m_Position: {x: 0, y: 0, z: 0}
  1922. m_EulerAngles: {x: 0, y: 0, z: 0}
  1923. m_AvatarMask: {fileID: 0}
  1924. m_ApplyAvatarMask: 1
  1925. m_TrackOffset: 0
  1926. m_InfiniteClip: {fileID: 0}
  1927. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  1928. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  1929. m_ApplyOffsets: 0
  1930. --- !u!114 &735119947339320985
  1931. MonoBehaviour:
  1932. m_ObjectHideFlags: 1
  1933. m_CorrespondingSourceObject: {fileID: 0}
  1934. m_PrefabInstance: {fileID: 0}
  1935. m_PrefabAsset: {fileID: 0}
  1936. m_GameObject: {fileID: 0}
  1937. m_Enabled: 1
  1938. m_EditorHideFlags: 0
  1939. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  1940. m_Name: ActivationPlayableAsset
  1941. m_EditorClassIdentifier:
  1942. --- !u!114 &2297069836580575921
  1943. MonoBehaviour:
  1944. m_ObjectHideFlags: 1
  1945. m_CorrespondingSourceObject: {fileID: 0}
  1946. m_PrefabInstance: {fileID: 0}
  1947. m_PrefabAsset: {fileID: 0}
  1948. m_GameObject: {fileID: 0}
  1949. m_Enabled: 1
  1950. m_EditorHideFlags: 0
  1951. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  1952. m_Name: Animation Track (2)
  1953. m_EditorClassIdentifier:
  1954. m_Version: 3
  1955. m_AnimClip: {fileID: 0}
  1956. m_Locked: 0
  1957. m_Muted: 0
  1958. m_CustomPlayableFullTypename:
  1959. m_Curves: {fileID: 0}
  1960. m_Parent: {fileID: 11400000}
  1961. m_Children: []
  1962. m_Clips:
  1963. - m_Version: 1
  1964. m_Start: 19.233333587646484
  1965. m_ClipIn: 0
  1966. m_Asset: {fileID: 7956737287664823275}
  1967. m_Duration: 24.166666666666668
  1968. m_TimeScale: 1
  1969. m_ParentTrack: {fileID: 2297069836580575921}
  1970. m_EaseInDuration: 0
  1971. m_EaseOutDuration: 0
  1972. m_BlendInDuration: -1
  1973. m_BlendOutDuration: -1
  1974. m_MixInCurve:
  1975. serializedVersion: 2
  1976. m_Curve:
  1977. - serializedVersion: 3
  1978. time: 0
  1979. value: 0
  1980. inSlope: 0
  1981. outSlope: 0
  1982. tangentMode: 0
  1983. weightedMode: 0
  1984. inWeight: 0
  1985. outWeight: 0
  1986. - serializedVersion: 3
  1987. time: 1
  1988. value: 1
  1989. inSlope: 0
  1990. outSlope: 0
  1991. tangentMode: 0
  1992. weightedMode: 0
  1993. inWeight: 0
  1994. outWeight: 0
  1995. m_PreInfinity: 2
  1996. m_PostInfinity: 2
  1997. m_RotationOrder: 4
  1998. m_MixOutCurve:
  1999. serializedVersion: 2
  2000. m_Curve:
  2001. - serializedVersion: 3
  2002. time: 0
  2003. value: 1
  2004. inSlope: 0
  2005. outSlope: 0
  2006. tangentMode: 0
  2007. weightedMode: 0
  2008. inWeight: 0
  2009. outWeight: 0
  2010. - serializedVersion: 3
  2011. time: 1
  2012. value: 0
  2013. inSlope: 0
  2014. outSlope: 0
  2015. tangentMode: 0
  2016. weightedMode: 0
  2017. inWeight: 0
  2018. outWeight: 0
  2019. m_PreInfinity: 2
  2020. m_PostInfinity: 2
  2021. m_RotationOrder: 4
  2022. m_BlendInCurveMode: 0
  2023. m_BlendOutCurveMode: 0
  2024. m_ExposedParameterNames: []
  2025. m_AnimationCurves: {fileID: 0}
  2026. m_Recordable: 1
  2027. m_PostExtrapolationMode: 1
  2028. m_PreExtrapolationMode: 1
  2029. m_PostExtrapolationTime: Infinity
  2030. m_PreExtrapolationTime: 19.233333587646484
  2031. m_DisplayName: Recorded (2)
  2032. m_Markers:
  2033. m_Objects: []
  2034. m_InfiniteClipPreExtrapolation: 1
  2035. m_InfiniteClipPostExtrapolation: 1
  2036. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2037. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2038. m_InfiniteClipTimeOffset: 0
  2039. m_InfiniteClipRemoveOffset: 0
  2040. m_InfiniteClipApplyFootIK: 1
  2041. mInfiniteClipLoop: 0
  2042. m_MatchTargetFields: 63
  2043. m_Position: {x: 0, y: 0, z: 0}
  2044. m_EulerAngles: {x: 0, y: 0, z: 0}
  2045. m_AvatarMask: {fileID: 0}
  2046. m_ApplyAvatarMask: 1
  2047. m_TrackOffset: 0
  2048. m_InfiniteClip: {fileID: 0}
  2049. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2050. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2051. m_ApplyOffsets: 0
  2052. --- !u!114 &3639599201954968543
  2053. MonoBehaviour:
  2054. m_ObjectHideFlags: 1
  2055. m_CorrespondingSourceObject: {fileID: 0}
  2056. m_PrefabInstance: {fileID: 0}
  2057. m_PrefabAsset: {fileID: 0}
  2058. m_GameObject: {fileID: 0}
  2059. m_Enabled: 1
  2060. m_EditorHideFlags: 0
  2061. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2062. m_Name: Recorded (3)
  2063. m_EditorClassIdentifier:
  2064. m_Clip: {fileID: -4017571347899113893}
  2065. m_Position: {x: -7.742, y: 0.651, z: -8.453}
  2066. m_EulerAngles: {x: -0, y: 0, z: 90}
  2067. m_UseTrackMatchFields: 1
  2068. m_MatchTargetFields: 63
  2069. m_RemoveStartOffset: 0
  2070. m_ApplyFootIK: 1
  2071. m_Loop: 0
  2072. m_Version: 1
  2073. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2074. --- !u!114 &6376862541099315805
  2075. MonoBehaviour:
  2076. m_ObjectHideFlags: 1
  2077. m_CorrespondingSourceObject: {fileID: 0}
  2078. m_PrefabInstance: {fileID: 0}
  2079. m_PrefabAsset: {fileID: 0}
  2080. m_GameObject: {fileID: 0}
  2081. m_Enabled: 1
  2082. m_EditorHideFlags: 0
  2083. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2084. m_Name: CinemachineShot
  2085. m_EditorClassIdentifier:
  2086. DisplayName:
  2087. VirtualCamera:
  2088. exposedName: 5a4dba2919f34164b8a5e34cecccae97
  2089. defaultValue: {fileID: 0}
  2090. --- !u!114 &6444523818151495914
  2091. MonoBehaviour:
  2092. m_ObjectHideFlags: 1
  2093. m_CorrespondingSourceObject: {fileID: 0}
  2094. m_PrefabInstance: {fileID: 0}
  2095. m_PrefabAsset: {fileID: 0}
  2096. m_GameObject: {fileID: 0}
  2097. m_Enabled: 1
  2098. m_EditorHideFlags: 0
  2099. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2100. m_Name: Recorded (1)
  2101. m_EditorClassIdentifier:
  2102. m_Clip: {fileID: -6323854268480312141}
  2103. m_Position: {x: -0.06971567, y: -0.0043930914, z: -0.11463521}
  2104. m_EulerAngles: {x: 270.01978, y: 180.00006, z: 0}
  2105. m_UseTrackMatchFields: 1
  2106. m_MatchTargetFields: 63
  2107. m_RemoveStartOffset: 0
  2108. m_ApplyFootIK: 1
  2109. m_Loop: 0
  2110. m_Version: 1
  2111. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2112. --- !u!114 &7360499279718930065
  2113. MonoBehaviour:
  2114. m_ObjectHideFlags: 1
  2115. m_CorrespondingSourceObject: {fileID: 0}
  2116. m_PrefabInstance: {fileID: 0}
  2117. m_PrefabAsset: {fileID: 0}
  2118. m_GameObject: {fileID: 0}
  2119. m_Enabled: 1
  2120. m_EditorHideFlags: 0
  2121. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2122. m_Name: CinemachineShot
  2123. m_EditorClassIdentifier:
  2124. DisplayName:
  2125. VirtualCamera:
  2126. exposedName: 8cc8f5f207a7b9642b52fc66a6d7db53
  2127. defaultValue: {fileID: 0}
  2128. --- !u!114 &7881252869935293442
  2129. MonoBehaviour:
  2130. m_ObjectHideFlags: 1
  2131. m_CorrespondingSourceObject: {fileID: 0}
  2132. m_PrefabInstance: {fileID: 0}
  2133. m_PrefabAsset: {fileID: 0}
  2134. m_GameObject: {fileID: 0}
  2135. m_Enabled: 1
  2136. m_EditorHideFlags: 0
  2137. m_Script: {fileID: 11500000, guid: 05acc715f855ced458d76ee6f8ac6c61, type: 3}
  2138. m_Name: Cinemachine Track
  2139. m_EditorClassIdentifier:
  2140. m_Version: 3
  2141. m_AnimClip: {fileID: 0}
  2142. m_Locked: 0
  2143. m_Muted: 0
  2144. m_CustomPlayableFullTypename:
  2145. m_Curves: {fileID: 0}
  2146. m_Parent: {fileID: 11400000}
  2147. m_Children: []
  2148. m_Clips:
  2149. - m_Version: 1
  2150. m_Start: 0
  2151. m_ClipIn: 0
  2152. m_Asset: {fileID: 7360499279718930065}
  2153. m_Duration: 3.85
  2154. m_TimeScale: 1
  2155. m_ParentTrack: {fileID: 7881252869935293442}
  2156. m_EaseInDuration: 0
  2157. m_EaseOutDuration: 0
  2158. m_BlendInDuration: -1
  2159. m_BlendOutDuration: -1
  2160. m_MixInCurve:
  2161. serializedVersion: 2
  2162. m_Curve:
  2163. - serializedVersion: 3
  2164. time: 0
  2165. value: 0
  2166. inSlope: 0
  2167. outSlope: 0
  2168. tangentMode: 0
  2169. weightedMode: 0
  2170. inWeight: 0
  2171. outWeight: 0
  2172. - serializedVersion: 3
  2173. time: 1
  2174. value: 1
  2175. inSlope: 0
  2176. outSlope: 0
  2177. tangentMode: 0
  2178. weightedMode: 0
  2179. inWeight: 0
  2180. outWeight: 0
  2181. m_PreInfinity: 2
  2182. m_PostInfinity: 2
  2183. m_RotationOrder: 4
  2184. m_MixOutCurve:
  2185. serializedVersion: 2
  2186. m_Curve: []
  2187. m_PreInfinity: 2
  2188. m_PostInfinity: 2
  2189. m_RotationOrder: 4
  2190. m_BlendInCurveMode: 0
  2191. m_BlendOutCurveMode: 0
  2192. m_ExposedParameterNames: []
  2193. m_AnimationCurves: {fileID: 0}
  2194. m_Recordable: 0
  2195. m_PostExtrapolationMode: 0
  2196. m_PreExtrapolationMode: 0
  2197. m_PostExtrapolationTime: 0
  2198. m_PreExtrapolationTime: 0
  2199. m_DisplayName: ' virtualcam9'
  2200. - m_Version: 1
  2201. m_Start: 3.85
  2202. m_ClipIn: 0
  2203. m_Asset: {fileID: 8750428718144868976}
  2204. m_Duration: 2.5333333333333337
  2205. m_TimeScale: 1
  2206. m_ParentTrack: {fileID: 7881252869935293442}
  2207. m_EaseInDuration: 0
  2208. m_EaseOutDuration: 0
  2209. m_BlendInDuration: -1
  2210. m_BlendOutDuration: -1
  2211. m_MixInCurve:
  2212. serializedVersion: 2
  2213. m_Curve:
  2214. - serializedVersion: 3
  2215. time: 0
  2216. value: 0
  2217. inSlope: 0
  2218. outSlope: 0
  2219. tangentMode: 0
  2220. weightedMode: 0
  2221. inWeight: 0
  2222. outWeight: 0
  2223. - serializedVersion: 3
  2224. time: 1
  2225. value: 1
  2226. inSlope: 0
  2227. outSlope: 0
  2228. tangentMode: 0
  2229. weightedMode: 0
  2230. inWeight: 0
  2231. outWeight: 0
  2232. m_PreInfinity: 2
  2233. m_PostInfinity: 2
  2234. m_RotationOrder: 4
  2235. m_MixOutCurve:
  2236. serializedVersion: 2
  2237. m_Curve:
  2238. - serializedVersion: 3
  2239. time: 0
  2240. value: 1
  2241. inSlope: 0
  2242. outSlope: 0
  2243. tangentMode: 0
  2244. weightedMode: 0
  2245. inWeight: 0
  2246. outWeight: 0
  2247. - serializedVersion: 3
  2248. time: 1
  2249. value: 0
  2250. inSlope: 0
  2251. outSlope: 0
  2252. tangentMode: 0
  2253. weightedMode: 0
  2254. inWeight: 0
  2255. outWeight: 0
  2256. m_PreInfinity: 2
  2257. m_PostInfinity: 2
  2258. m_RotationOrder: 4
  2259. m_BlendInCurveMode: 0
  2260. m_BlendOutCurveMode: 0
  2261. m_ExposedParameterNames: []
  2262. m_AnimationCurves: {fileID: 0}
  2263. m_Recordable: 0
  2264. m_PostExtrapolationMode: 0
  2265. m_PreExtrapolationMode: 0
  2266. m_PostExtrapolationTime: 0
  2267. m_PreExtrapolationTime: 0
  2268. m_DisplayName: ' virtualcam2'
  2269. - m_Version: 1
  2270. m_Start: 6.383333333333334
  2271. m_ClipIn: 0
  2272. m_Asset: {fileID: 6376862541099315805}
  2273. m_Duration: 53.03333333333333
  2274. m_TimeScale: 1
  2275. m_ParentTrack: {fileID: 7881252869935293442}
  2276. m_EaseInDuration: 0
  2277. m_EaseOutDuration: 0
  2278. m_BlendInDuration: -1
  2279. m_BlendOutDuration: -1
  2280. m_MixInCurve:
  2281. serializedVersion: 2
  2282. m_Curve:
  2283. - serializedVersion: 3
  2284. time: 0
  2285. value: 0
  2286. inSlope: 0
  2287. outSlope: 0
  2288. tangentMode: 0
  2289. weightedMode: 0
  2290. inWeight: 0
  2291. outWeight: 0
  2292. - serializedVersion: 3
  2293. time: 1
  2294. value: 1
  2295. inSlope: 0
  2296. outSlope: 0
  2297. tangentMode: 0
  2298. weightedMode: 0
  2299. inWeight: 0
  2300. outWeight: 0
  2301. m_PreInfinity: 2
  2302. m_PostInfinity: 2
  2303. m_RotationOrder: 4
  2304. m_MixOutCurve:
  2305. serializedVersion: 2
  2306. m_Curve:
  2307. - serializedVersion: 3
  2308. time: 0
  2309. value: 1
  2310. inSlope: 0
  2311. outSlope: 0
  2312. tangentMode: 0
  2313. weightedMode: 0
  2314. inWeight: 0
  2315. outWeight: 0
  2316. - serializedVersion: 3
  2317. time: 1
  2318. value: 0
  2319. inSlope: 0
  2320. outSlope: 0
  2321. tangentMode: 0
  2322. weightedMode: 0
  2323. inWeight: 0
  2324. outWeight: 0
  2325. m_PreInfinity: 2
  2326. m_PostInfinity: 2
  2327. m_RotationOrder: 4
  2328. m_BlendInCurveMode: 0
  2329. m_BlendOutCurveMode: 0
  2330. m_ExposedParameterNames: []
  2331. m_AnimationCurves: {fileID: 0}
  2332. m_Recordable: 0
  2333. m_PostExtrapolationMode: 0
  2334. m_PreExtrapolationMode: 0
  2335. m_PostExtrapolationTime: 0
  2336. m_PreExtrapolationTime: 0
  2337. m_DisplayName: ' virtualcam9'
  2338. m_Markers:
  2339. m_Objects: []
  2340. --- !u!114 &7932618405638870088
  2341. MonoBehaviour:
  2342. m_ObjectHideFlags: 1
  2343. m_CorrespondingSourceObject: {fileID: 0}
  2344. m_PrefabInstance: {fileID: 0}
  2345. m_PrefabAsset: {fileID: 0}
  2346. m_GameObject: {fileID: 0}
  2347. m_Enabled: 1
  2348. m_EditorHideFlags: 0
  2349. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2350. m_Name: Animation Track (1)
  2351. m_EditorClassIdentifier:
  2352. m_Version: 3
  2353. m_AnimClip: {fileID: 0}
  2354. m_Locked: 0
  2355. m_Muted: 0
  2356. m_CustomPlayableFullTypename:
  2357. m_Curves: {fileID: 0}
  2358. m_Parent: {fileID: 11400000}
  2359. m_Children: []
  2360. m_Clips:
  2361. - m_Version: 1
  2362. m_Start: 14.716666221618652
  2363. m_ClipIn: 0
  2364. m_Asset: {fileID: 6444523818151495914}
  2365. m_Duration: 33.86666666666667
  2366. m_TimeScale: 1
  2367. m_ParentTrack: {fileID: 7932618405638870088}
  2368. m_EaseInDuration: 0
  2369. m_EaseOutDuration: 0
  2370. m_BlendInDuration: -1
  2371. m_BlendOutDuration: -1
  2372. m_MixInCurve:
  2373. serializedVersion: 2
  2374. m_Curve:
  2375. - serializedVersion: 3
  2376. time: 0
  2377. value: 0
  2378. inSlope: 0
  2379. outSlope: 0
  2380. tangentMode: 0
  2381. weightedMode: 0
  2382. inWeight: 0
  2383. outWeight: 0
  2384. - serializedVersion: 3
  2385. time: 1
  2386. value: 1
  2387. inSlope: 0
  2388. outSlope: 0
  2389. tangentMode: 0
  2390. weightedMode: 0
  2391. inWeight: 0
  2392. outWeight: 0
  2393. m_PreInfinity: 2
  2394. m_PostInfinity: 2
  2395. m_RotationOrder: 4
  2396. m_MixOutCurve:
  2397. serializedVersion: 2
  2398. m_Curve:
  2399. - serializedVersion: 3
  2400. time: 0
  2401. value: 1
  2402. inSlope: 0
  2403. outSlope: 0
  2404. tangentMode: 0
  2405. weightedMode: 0
  2406. inWeight: 0
  2407. outWeight: 0
  2408. - serializedVersion: 3
  2409. time: 1
  2410. value: 0
  2411. inSlope: 0
  2412. outSlope: 0
  2413. tangentMode: 0
  2414. weightedMode: 0
  2415. inWeight: 0
  2416. outWeight: 0
  2417. m_PreInfinity: 2
  2418. m_PostInfinity: 2
  2419. m_RotationOrder: 4
  2420. m_BlendInCurveMode: 0
  2421. m_BlendOutCurveMode: 0
  2422. m_ExposedParameterNames: []
  2423. m_AnimationCurves: {fileID: 0}
  2424. m_Recordable: 1
  2425. m_PostExtrapolationMode: 1
  2426. m_PreExtrapolationMode: 1
  2427. m_PostExtrapolationTime: Infinity
  2428. m_PreExtrapolationTime: 14.716666221618652
  2429. m_DisplayName: Recorded (1)
  2430. m_Markers:
  2431. m_Objects: []
  2432. m_InfiniteClipPreExtrapolation: 1
  2433. m_InfiniteClipPostExtrapolation: 1
  2434. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2435. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2436. m_InfiniteClipTimeOffset: 0
  2437. m_InfiniteClipRemoveOffset: 0
  2438. m_InfiniteClipApplyFootIK: 1
  2439. mInfiniteClipLoop: 0
  2440. m_MatchTargetFields: 63
  2441. m_Position: {x: 0, y: 0, z: 0}
  2442. m_EulerAngles: {x: 0, y: 0, z: 0}
  2443. m_AvatarMask: {fileID: 0}
  2444. m_ApplyAvatarMask: 1
  2445. m_TrackOffset: 0
  2446. m_InfiniteClip: {fileID: 0}
  2447. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2448. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2449. m_ApplyOffsets: 0
  2450. --- !u!114 &7956737287664823275
  2451. MonoBehaviour:
  2452. m_ObjectHideFlags: 1
  2453. m_CorrespondingSourceObject: {fileID: 0}
  2454. m_PrefabInstance: {fileID: 0}
  2455. m_PrefabAsset: {fileID: 0}
  2456. m_GameObject: {fileID: 0}
  2457. m_Enabled: 1
  2458. m_EditorHideFlags: 0
  2459. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2460. m_Name: Recorded (2)
  2461. m_EditorClassIdentifier:
  2462. m_Clip: {fileID: -1092314777848640289}
  2463. m_Position: {x: -0.022162093, y: -0.004389998, z: -0.15022402}
  2464. m_EulerAngles: {x: 0, y: 0, z: 0}
  2465. m_UseTrackMatchFields: 1
  2466. m_MatchTargetFields: 63
  2467. m_RemoveStartOffset: 0
  2468. m_ApplyFootIK: 1
  2469. m_Loop: 0
  2470. m_Version: 1
  2471. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2472. --- !u!114 &7968978128150242165
  2473. MonoBehaviour:
  2474. m_ObjectHideFlags: 1
  2475. m_CorrespondingSourceObject: {fileID: 0}
  2476. m_PrefabInstance: {fileID: 0}
  2477. m_PrefabAsset: {fileID: 0}
  2478. m_GameObject: {fileID: 0}
  2479. m_Enabled: 1
  2480. m_EditorHideFlags: 0
  2481. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  2482. m_Name: ActivationPlayableAsset
  2483. m_EditorClassIdentifier:
  2484. --- !u!114 &8078785036211587963
  2485. MonoBehaviour:
  2486. m_ObjectHideFlags: 1
  2487. m_CorrespondingSourceObject: {fileID: 0}
  2488. m_PrefabInstance: {fileID: 0}
  2489. m_PrefabAsset: {fileID: 0}
  2490. m_GameObject: {fileID: 0}
  2491. m_Enabled: 1
  2492. m_EditorHideFlags: 0
  2493. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2494. m_Name: Animation Track
  2495. m_EditorClassIdentifier:
  2496. m_Version: 3
  2497. m_AnimClip: {fileID: 0}
  2498. m_Locked: 0
  2499. m_Muted: 0
  2500. m_CustomPlayableFullTypename:
  2501. m_Curves: {fileID: 0}
  2502. m_Parent: {fileID: 11400000}
  2503. m_Children: []
  2504. m_Clips: []
  2505. m_Markers:
  2506. m_Objects: []
  2507. m_InfiniteClipPreExtrapolation: 1
  2508. m_InfiniteClipPostExtrapolation: 1
  2509. m_InfiniteClipOffsetPosition: {x: -2.9150012, y: -0.4579841, z: 20.15327}
  2510. m_InfiniteClipOffsetEulerAngles: {x: 15.965883, y: 156.26428, z: -0.0000039961296}
  2511. m_InfiniteClipTimeOffset: 0
  2512. m_InfiniteClipRemoveOffset: 0
  2513. m_InfiniteClipApplyFootIK: 1
  2514. mInfiniteClipLoop: 0
  2515. m_MatchTargetFields: 63
  2516. m_Position: {x: 0, y: 0, z: 0}
  2517. m_EulerAngles: {x: 0, y: 0, z: 0}
  2518. m_AvatarMask: {fileID: 0}
  2519. m_ApplyAvatarMask: 1
  2520. m_TrackOffset: 0
  2521. m_InfiniteClip: {fileID: 8546945574662414013}
  2522. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2523. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2524. m_ApplyOffsets: 0
  2525. --- !u!74 &8546945574662414013
  2526. AnimationClip:
  2527. m_ObjectHideFlags: 0
  2528. m_CorrespondingSourceObject: {fileID: 0}
  2529. m_PrefabInstance: {fileID: 0}
  2530. m_PrefabAsset: {fileID: 0}
  2531. m_Name: Recorded
  2532. serializedVersion: 7
  2533. m_Legacy: 0
  2534. m_Compressed: 0
  2535. m_UseHighQualityCurve: 1
  2536. m_RotationCurves: []
  2537. m_CompressedRotationCurves: []
  2538. m_EulerCurves: []
  2539. m_PositionCurves:
  2540. - curve:
  2541. serializedVersion: 2
  2542. m_Curve:
  2543. - serializedVersion: 3
  2544. time: 0
  2545. value: {x: -0.00017786026, y: 0.00032663345, z: -0.031518936}
  2546. inSlope: {x: 0, y: 0, z: 0}
  2547. outSlope: {x: 0, y: 0, z: 0}
  2548. tangentMode: 0
  2549. weightedMode: 0
  2550. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2551. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2552. - serializedVersion: 3
  2553. time: 13.15
  2554. value: {x: -0.00063991547, y: 0.00039052963, z: 0.2231884}
  2555. inSlope: {x: 0, y: 0.0000051737793, z: 0.00007135186}
  2556. outSlope: {x: 0, y: 0.0000051737793, z: 0.00007135186}
  2557. tangentMode: 0
  2558. weightedMode: 0
  2559. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2560. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2561. - serializedVersion: 3
  2562. time: 49.4
  2563. value: {x: -0.00023651123, y: 0.0006427765, z: 0.2240696}
  2564. inSlope: {x: 0.00000004122499, y: 0.0000053180397, z: 0}
  2565. outSlope: {x: 0.00000004122499, y: 0.0000053180397, z: 0}
  2566. tangentMode: 0
  2567. weightedMode: 0
  2568. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2569. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2570. - serializedVersion: 3
  2571. time: 59.416668
  2572. value: {x: -0.0002360344, y: 0.0007042885, z: 0.09304237}
  2573. inSlope: {x: 0, y: 0, z: 0}
  2574. outSlope: {x: 0, y: 0, z: 0}
  2575. tangentMode: 0
  2576. weightedMode: 0
  2577. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2578. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2579. m_PreInfinity: 2
  2580. m_PostInfinity: 2
  2581. m_RotationOrder: 4
  2582. path:
  2583. m_ScaleCurves: []
  2584. m_FloatCurves: []
  2585. m_PPtrCurves: []
  2586. m_SampleRate: 60
  2587. m_WrapMode: 0
  2588. m_Bounds:
  2589. m_Center: {x: 0, y: 0, z: 0}
  2590. m_Extent: {x: 0, y: 0, z: 0}
  2591. m_ClipBindingConstant:
  2592. genericBindings:
  2593. - serializedVersion: 2
  2594. path: 0
  2595. attribute: 1
  2596. script: {fileID: 0}
  2597. typeID: 4
  2598. customType: 0
  2599. isPPtrCurve: 0
  2600. pptrCurveMapping: []
  2601. m_AnimationClipSettings:
  2602. serializedVersion: 2
  2603. m_AdditiveReferencePoseClip: {fileID: 0}
  2604. m_AdditiveReferencePoseTime: 0
  2605. m_StartTime: 0
  2606. m_StopTime: 59.416668
  2607. m_OrientationOffsetY: 0
  2608. m_Level: 0
  2609. m_CycleOffset: 0
  2610. m_HasAdditiveReferencePose: 0
  2611. m_LoopTime: 0
  2612. m_LoopBlend: 0
  2613. m_LoopBlendOrientation: 0
  2614. m_LoopBlendPositionY: 0
  2615. m_LoopBlendPositionXZ: 0
  2616. m_KeepOriginalOrientation: 0
  2617. m_KeepOriginalPositionY: 1
  2618. m_KeepOriginalPositionXZ: 0
  2619. m_HeightFromFeet: 0
  2620. m_Mirror: 0
  2621. m_EditorCurves:
  2622. - curve:
  2623. serializedVersion: 2
  2624. m_Curve:
  2625. - serializedVersion: 3
  2626. time: 0
  2627. value: -0.00017786026
  2628. inSlope: 0
  2629. outSlope: 0
  2630. tangentMode: 136
  2631. weightedMode: 0
  2632. inWeight: 0.33333334
  2633. outWeight: 0.33333334
  2634. - serializedVersion: 3
  2635. time: 13.15
  2636. value: -0.00063991547
  2637. inSlope: 0
  2638. outSlope: 0
  2639. tangentMode: 136
  2640. weightedMode: 0
  2641. inWeight: 0.33333334
  2642. outWeight: 0.33333334
  2643. - serializedVersion: 3
  2644. time: 49.4
  2645. value: -0.00023651123
  2646. inSlope: 0.00000004122499
  2647. outSlope: 0.00000004122499
  2648. tangentMode: 136
  2649. weightedMode: 0
  2650. inWeight: 0.33333334
  2651. outWeight: 0.33333334
  2652. - serializedVersion: 3
  2653. time: 59.416668
  2654. value: -0.0002360344
  2655. inSlope: 0
  2656. outSlope: 0
  2657. tangentMode: 136
  2658. weightedMode: 0
  2659. inWeight: 0.33333334
  2660. outWeight: 0.33333334
  2661. m_PreInfinity: 2
  2662. m_PostInfinity: 2
  2663. m_RotationOrder: 4
  2664. attribute: m_LocalPosition.x
  2665. path:
  2666. classID: 4
  2667. script: {fileID: 0}
  2668. - curve:
  2669. serializedVersion: 2
  2670. m_Curve:
  2671. - serializedVersion: 3
  2672. time: 0
  2673. value: 0.00032663345
  2674. inSlope: 0
  2675. outSlope: 0
  2676. tangentMode: 136
  2677. weightedMode: 0
  2678. inWeight: 0.33333334
  2679. outWeight: 0.33333334
  2680. - serializedVersion: 3
  2681. time: 13.15
  2682. value: 0.00039052963
  2683. inSlope: 0.0000051737793
  2684. outSlope: 0.0000051737793
  2685. tangentMode: 136
  2686. weightedMode: 0
  2687. inWeight: 0.33333334
  2688. outWeight: 0.33333334
  2689. - serializedVersion: 3
  2690. time: 49.4
  2691. value: 0.0006427765
  2692. inSlope: 0.0000053180397
  2693. outSlope: 0.0000053180397
  2694. tangentMode: 136
  2695. weightedMode: 0
  2696. inWeight: 0.33333334
  2697. outWeight: 0.33333334
  2698. - serializedVersion: 3
  2699. time: 59.416668
  2700. value: 0.0007042885
  2701. inSlope: 0
  2702. outSlope: 0
  2703. tangentMode: 136
  2704. weightedMode: 0
  2705. inWeight: 0.33333334
  2706. outWeight: 0.33333334
  2707. m_PreInfinity: 2
  2708. m_PostInfinity: 2
  2709. m_RotationOrder: 4
  2710. attribute: m_LocalPosition.y
  2711. path:
  2712. classID: 4
  2713. script: {fileID: 0}
  2714. - curve:
  2715. serializedVersion: 2
  2716. m_Curve:
  2717. - serializedVersion: 3
  2718. time: 0
  2719. value: -0.031518936
  2720. inSlope: 0
  2721. outSlope: 0
  2722. tangentMode: 136
  2723. weightedMode: 0
  2724. inWeight: 0.33333334
  2725. outWeight: 0.33333334
  2726. - serializedVersion: 3
  2727. time: 13.15
  2728. value: 0.2231884
  2729. inSlope: 0.00007135186
  2730. outSlope: 0.00007135186
  2731. tangentMode: 136
  2732. weightedMode: 0
  2733. inWeight: 0.33333334
  2734. outWeight: 0.33333334
  2735. - serializedVersion: 3
  2736. time: 49.4
  2737. value: 0.2240696
  2738. inSlope: 0
  2739. outSlope: 0
  2740. tangentMode: 136
  2741. weightedMode: 0
  2742. inWeight: 0.33333334
  2743. outWeight: 0.33333334
  2744. - serializedVersion: 3
  2745. time: 59.416668
  2746. value: 0.09304237
  2747. inSlope: 0
  2748. outSlope: 0
  2749. tangentMode: 136
  2750. weightedMode: 0
  2751. inWeight: 0.33333334
  2752. outWeight: 0.33333334
  2753. m_PreInfinity: 2
  2754. m_PostInfinity: 2
  2755. m_RotationOrder: 4
  2756. attribute: m_LocalPosition.z
  2757. path:
  2758. classID: 4
  2759. script: {fileID: 0}
  2760. m_EulerEditorCurves: []
  2761. m_HasGenericRootTransform: 1
  2762. m_HasMotionFloatCurves: 0
  2763. m_Events: []
  2764. --- !u!114 &8750428718144868976
  2765. MonoBehaviour:
  2766. m_ObjectHideFlags: 1
  2767. m_CorrespondingSourceObject: {fileID: 0}
  2768. m_PrefabInstance: {fileID: 0}
  2769. m_PrefabAsset: {fileID: 0}
  2770. m_GameObject: {fileID: 0}
  2771. m_Enabled: 1
  2772. m_EditorHideFlags: 0
  2773. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2774. m_Name: CinemachineShot
  2775. m_EditorClassIdentifier:
  2776. DisplayName:
  2777. VirtualCamera:
  2778. exposedName: ad5b4e0836541844596f8f4f0b2d1657
  2779. defaultValue: {fileID: 0}
  2780. --- !u!114 &9124058846587292333
  2781. MonoBehaviour:
  2782. m_ObjectHideFlags: 1
  2783. m_CorrespondingSourceObject: {fileID: 0}
  2784. m_PrefabInstance: {fileID: 0}
  2785. m_PrefabAsset: {fileID: 0}
  2786. m_GameObject: {fileID: 0}
  2787. m_Enabled: 1
  2788. m_EditorHideFlags: 0
  2789. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2790. m_Name: Animation Track (4)
  2791. m_EditorClassIdentifier:
  2792. m_Version: 3
  2793. m_AnimClip: {fileID: 0}
  2794. m_Locked: 0
  2795. m_Muted: 0
  2796. m_CustomPlayableFullTypename:
  2797. m_Curves: {fileID: 0}
  2798. m_Parent: {fileID: 11400000}
  2799. m_Children: []
  2800. m_Clips:
  2801. - m_Version: 1
  2802. m_Start: 34.31666666666667
  2803. m_ClipIn: 0
  2804. m_Asset: {fileID: 3639599201954968543}
  2805. m_Duration: 2.7142857142857153
  2806. m_TimeScale: 0.6999999999999997
  2807. m_ParentTrack: {fileID: 9124058846587292333}
  2808. m_EaseInDuration: 0
  2809. m_EaseOutDuration: 0
  2810. m_BlendInDuration: -1
  2811. m_BlendOutDuration: -1
  2812. m_MixInCurve:
  2813. serializedVersion: 2
  2814. m_Curve:
  2815. - serializedVersion: 3
  2816. time: 0
  2817. value: 0
  2818. inSlope: 0
  2819. outSlope: 0
  2820. tangentMode: 0
  2821. weightedMode: 0
  2822. inWeight: 0
  2823. outWeight: 0
  2824. - serializedVersion: 3
  2825. time: 1
  2826. value: 1
  2827. inSlope: 0
  2828. outSlope: 0
  2829. tangentMode: 0
  2830. weightedMode: 0
  2831. inWeight: 0
  2832. outWeight: 0
  2833. m_PreInfinity: 2
  2834. m_PostInfinity: 2
  2835. m_RotationOrder: 4
  2836. m_MixOutCurve:
  2837. serializedVersion: 2
  2838. m_Curve:
  2839. - serializedVersion: 3
  2840. time: 0
  2841. value: 1
  2842. inSlope: 0
  2843. outSlope: 0
  2844. tangentMode: 0
  2845. weightedMode: 0
  2846. inWeight: 0
  2847. outWeight: 0
  2848. - serializedVersion: 3
  2849. time: 1
  2850. value: 0
  2851. inSlope: 0
  2852. outSlope: 0
  2853. tangentMode: 0
  2854. weightedMode: 0
  2855. inWeight: 0
  2856. outWeight: 0
  2857. m_PreInfinity: 2
  2858. m_PostInfinity: 2
  2859. m_RotationOrder: 4
  2860. m_BlendInCurveMode: 0
  2861. m_BlendOutCurveMode: 0
  2862. m_ExposedParameterNames: []
  2863. m_AnimationCurves: {fileID: 0}
  2864. m_Recordable: 1
  2865. m_PostExtrapolationMode: 1
  2866. m_PreExtrapolationMode: 1
  2867. m_PostExtrapolationTime: Infinity
  2868. m_PreExtrapolationTime: 34.31666666666667
  2869. m_DisplayName: Recorded (3)
  2870. m_Markers:
  2871. m_Objects: []
  2872. m_InfiniteClipPreExtrapolation: 1
  2873. m_InfiniteClipPostExtrapolation: 1
  2874. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2875. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2876. m_InfiniteClipTimeOffset: 0
  2877. m_InfiniteClipRemoveOffset: 0
  2878. m_InfiniteClipApplyFootIK: 1
  2879. mInfiniteClipLoop: 0
  2880. m_MatchTargetFields: 63
  2881. m_Position: {x: 0, y: 0, z: 0}
  2882. m_EulerAngles: {x: 0, y: 0, z: 0}
  2883. m_AvatarMask: {fileID: 0}
  2884. m_ApplyAvatarMask: 1
  2885. m_TrackOffset: 0
  2886. m_InfiniteClip: {fileID: 0}
  2887. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2888. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2889. m_ApplyOffsets: 0