LQXT_5.playable 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003
  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 &-1464427187524067004
  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: 8b22792c3b570444eb18cb78c2af3a74, type: 3}
  1067. m_Name: Audio 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: 773760726207964712}
  1082. m_Duration: 59.416666666666664
  1083. m_TimeScale: 1
  1084. m_ParentTrack: {fileID: -1464427187524067004}
  1085. m_EaseInDuration: 0
  1086. m_EaseOutDuration: 0
  1087. m_BlendInDuration: -1
  1088. m_BlendOutDuration: -1
  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: "\u51B7\u5374\u7CFB\u7EDF\u5B89\u5168\u9600\u6CC4\u9732"
  1147. m_Markers:
  1148. m_Objects: []
  1149. m_TrackProperties:
  1150. volume: 1
  1151. stereoPan: 0
  1152. spatialBlend: 0
  1153. --- !u!114 &-1399497614943326201
  1154. MonoBehaviour:
  1155. m_ObjectHideFlags: 1
  1156. m_CorrespondingSourceObject: {fileID: 0}
  1157. m_PrefabInstance: {fileID: 0}
  1158. m_PrefabAsset: {fileID: 0}
  1159. m_GameObject: {fileID: 0}
  1160. m_Enabled: 1
  1161. m_EditorHideFlags: 0
  1162. m_Script: {fileID: 11500000, guid: 21bf7f712d84d26478ebe6a299f21738, type: 3}
  1163. m_Name: Activation Track
  1164. m_EditorClassIdentifier:
  1165. m_Version: 3
  1166. m_AnimClip: {fileID: 0}
  1167. m_Locked: 0
  1168. m_Muted: 0
  1169. m_CustomPlayableFullTypename:
  1170. m_Curves: {fileID: 0}
  1171. m_Parent: {fileID: 11400000}
  1172. m_Children: []
  1173. m_Clips:
  1174. - m_Version: 1
  1175. m_Start: 0
  1176. m_ClipIn: 0
  1177. m_Asset: {fileID: 735119947339320985}
  1178. m_Duration: 3.85
  1179. m_TimeScale: 1
  1180. m_ParentTrack: {fileID: -1399497614943326201}
  1181. m_EaseInDuration: 0
  1182. m_EaseOutDuration: 0
  1183. m_BlendInDuration: 0
  1184. m_BlendOutDuration: 0
  1185. m_MixInCurve:
  1186. serializedVersion: 2
  1187. m_Curve:
  1188. - serializedVersion: 3
  1189. time: 0
  1190. value: 0
  1191. inSlope: 0
  1192. outSlope: 0
  1193. tangentMode: 0
  1194. weightedMode: 0
  1195. inWeight: 0
  1196. outWeight: 0
  1197. - serializedVersion: 3
  1198. time: 1
  1199. value: 1
  1200. inSlope: 0
  1201. outSlope: 0
  1202. tangentMode: 0
  1203. weightedMode: 0
  1204. inWeight: 0
  1205. outWeight: 0
  1206. m_PreInfinity: 2
  1207. m_PostInfinity: 2
  1208. m_RotationOrder: 4
  1209. m_MixOutCurve:
  1210. serializedVersion: 2
  1211. m_Curve:
  1212. - serializedVersion: 3
  1213. time: 0
  1214. value: 1
  1215. inSlope: 0
  1216. outSlope: 0
  1217. tangentMode: 0
  1218. weightedMode: 0
  1219. inWeight: 0
  1220. outWeight: 0
  1221. - serializedVersion: 3
  1222. time: 1
  1223. value: 0
  1224. inSlope: 0
  1225. outSlope: 0
  1226. tangentMode: 0
  1227. weightedMode: 0
  1228. inWeight: 0
  1229. outWeight: 0
  1230. m_PreInfinity: 2
  1231. m_PostInfinity: 2
  1232. m_RotationOrder: 4
  1233. m_BlendInCurveMode: 0
  1234. m_BlendOutCurveMode: 0
  1235. m_ExposedParameterNames: []
  1236. m_AnimationCurves: {fileID: 0}
  1237. m_Recordable: 0
  1238. m_PostExtrapolationMode: 0
  1239. m_PreExtrapolationMode: 0
  1240. m_PostExtrapolationTime: 0
  1241. m_PreExtrapolationTime: 0
  1242. m_DisplayName: Active
  1243. - m_Version: 1
  1244. m_Start: 6.383333333333334
  1245. m_ClipIn: 0
  1246. m_Asset: {fileID: -1601072973396087962}
  1247. m_Duration: 53.03333333333333
  1248. m_TimeScale: 1
  1249. m_ParentTrack: {fileID: -1399497614943326201}
  1250. m_EaseInDuration: 0
  1251. m_EaseOutDuration: 0
  1252. m_BlendInDuration: 0
  1253. m_BlendOutDuration: 0
  1254. m_MixInCurve:
  1255. serializedVersion: 2
  1256. m_Curve:
  1257. - serializedVersion: 3
  1258. time: 0
  1259. value: 0
  1260. inSlope: 0
  1261. outSlope: 0
  1262. tangentMode: 0
  1263. weightedMode: 0
  1264. inWeight: 0
  1265. outWeight: 0
  1266. - serializedVersion: 3
  1267. time: 1
  1268. value: 1
  1269. inSlope: 0
  1270. outSlope: 0
  1271. tangentMode: 0
  1272. weightedMode: 0
  1273. inWeight: 0
  1274. outWeight: 0
  1275. m_PreInfinity: 2
  1276. m_PostInfinity: 2
  1277. m_RotationOrder: 4
  1278. m_MixOutCurve:
  1279. serializedVersion: 2
  1280. m_Curve:
  1281. - serializedVersion: 3
  1282. time: 0
  1283. value: 1
  1284. inSlope: 0
  1285. outSlope: 0
  1286. tangentMode: 0
  1287. weightedMode: 0
  1288. inWeight: 0
  1289. outWeight: 0
  1290. - serializedVersion: 3
  1291. time: 1
  1292. value: 0
  1293. inSlope: 0
  1294. outSlope: 0
  1295. tangentMode: 0
  1296. weightedMode: 0
  1297. inWeight: 0
  1298. outWeight: 0
  1299. m_PreInfinity: 2
  1300. m_PostInfinity: 2
  1301. m_RotationOrder: 4
  1302. m_BlendInCurveMode: 0
  1303. m_BlendOutCurveMode: 0
  1304. m_ExposedParameterNames: []
  1305. m_AnimationCurves: {fileID: 0}
  1306. m_Recordable: 0
  1307. m_PostExtrapolationMode: 0
  1308. m_PreExtrapolationMode: 0
  1309. m_PostExtrapolationTime: 0
  1310. m_PreExtrapolationTime: 0
  1311. m_DisplayName: Active
  1312. m_Markers:
  1313. m_Objects: []
  1314. m_PostPlaybackState: 3
  1315. --- !u!74 &-1092314777848640289
  1316. AnimationClip:
  1317. m_ObjectHideFlags: 0
  1318. m_CorrespondingSourceObject: {fileID: 0}
  1319. m_PrefabInstance: {fileID: 0}
  1320. m_PrefabAsset: {fileID: 0}
  1321. m_Name: Recorded (2)
  1322. serializedVersion: 7
  1323. m_Legacy: 0
  1324. m_Compressed: 0
  1325. m_UseHighQualityCurve: 1
  1326. m_RotationCurves: []
  1327. m_CompressedRotationCurves: []
  1328. m_EulerCurves: []
  1329. m_PositionCurves:
  1330. - curve:
  1331. serializedVersion: 2
  1332. m_Curve:
  1333. - serializedVersion: 3
  1334. time: 0
  1335. value: {x: 0, y: -0.000010001939, z: -0.00087597966}
  1336. inSlope: {x: 0, y: 0, z: 0}
  1337. outSlope: {x: 0, y: 0, z: 0}
  1338. tangentMode: 0
  1339. weightedMode: 0
  1340. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1341. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1342. - serializedVersion: 3
  1343. time: 1.5666656
  1344. value: {x: -0.024337908, y: -0.000010001939, z: -0.07817599}
  1345. inSlope: {x: -0.023271311, y: 0, z: 0}
  1346. outSlope: {x: -0.023271311, y: 0, z: 0}
  1347. tangentMode: 0
  1348. weightedMode: 0
  1349. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1350. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1351. - serializedVersion: 3
  1352. time: 4.1833324
  1353. value: {x: -0.1469379, y: -0.08551, z: 0.10522401}
  1354. inSlope: {x: -0.000043400894, y: -0.000021699485, z: 0}
  1355. outSlope: {x: -0.000043400894, y: -0.000021699485, z: 0}
  1356. tangentMode: 0
  1357. weightedMode: 0
  1358. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1359. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1360. - serializedVersion: 3
  1361. time: 20
  1362. value: {x: -0.14713791, y: -0.08561, z: 0.10522401}
  1363. inSlope: {x: 0, y: 0, z: 0}
  1364. outSlope: {x: 0, y: 0, z: 0}
  1365. tangentMode: 0
  1366. weightedMode: 0
  1367. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1368. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1369. - serializedVersion: 3
  1370. time: 21
  1371. value: {x: -0.0026379079, y: 0.001389998, z: -0.09577599}
  1372. inSlope: {x: 0, y: 0, z: 0}
  1373. outSlope: {x: 0, y: 0, z: 0}
  1374. tangentMode: 0
  1375. weightedMode: 0
  1376. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1377. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1378. - serializedVersion: 3
  1379. time: 21.666668
  1380. value: {x: -0.0026379079, y: 0.001389998, z: -0.020475984}
  1381. inSlope: {x: 0, y: 0, z: 0.024378931}
  1382. outSlope: {x: 0, y: 0, z: 0.024378931}
  1383. tangentMode: 0
  1384. weightedMode: 0
  1385. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1386. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1387. - serializedVersion: 3
  1388. time: 24.166668
  1389. value: {x: -0.0026379079, y: 0.001389998, z: -0.0011759847}
  1390. inSlope: {x: 0, y: 0, z: 0}
  1391. outSlope: {x: 0, y: 0, z: 0}
  1392. tangentMode: 0
  1393. weightedMode: 0
  1394. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1395. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1396. m_PreInfinity: 2
  1397. m_PostInfinity: 2
  1398. m_RotationOrder: 4
  1399. path:
  1400. - curve:
  1401. serializedVersion: 2
  1402. m_Curve:
  1403. - serializedVersion: 3
  1404. time: 4.5166664
  1405. value: {x: -0.0011906662, y: 0.0002293358, z: 0.028824404}
  1406. inSlope: {x: 0, y: 0, z: 0}
  1407. outSlope: {x: 0, y: 0, z: 0}
  1408. tangentMode: 0
  1409. weightedMode: 0
  1410. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1411. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1412. - serializedVersion: 3
  1413. time: 5.3166656
  1414. value: {x: -0.0011906662, y: 0.0002, z: 0.0473}
  1415. inSlope: {x: 0, y: 0, z: 0}
  1416. outSlope: {x: 0, y: 0, z: 0}
  1417. tangentMode: 0
  1418. weightedMode: 0
  1419. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1420. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1421. - serializedVersion: 3
  1422. time: 6.5666656
  1423. value: {x: -0.018, y: 0.231, z: 0.047}
  1424. inSlope: {x: 0, y: 0, z: 0}
  1425. outSlope: {x: 0, y: 0, z: 0}
  1426. tangentMode: 0
  1427. weightedMode: 0
  1428. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1429. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1430. - serializedVersion: 3
  1431. time: 19.150002
  1432. value: {x: -0.0178, y: 0.2303, z: 0.047}
  1433. inSlope: {x: 0.000059553244, y: -0.00020844022, z: 0}
  1434. outSlope: {x: 0.000059553244, y: -0.00020844022, z: 0}
  1435. tangentMode: 0
  1436. weightedMode: 0
  1437. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1438. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1439. - serializedVersion: 3
  1440. time: 20
  1441. value: {x: -0.0019, y: 0.0008, z: 0.029}
  1442. inSlope: {x: 0, y: 0, z: 0}
  1443. outSlope: {x: 0, y: 0, z: 0}
  1444. tangentMode: 0
  1445. weightedMode: 0
  1446. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1447. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  1448. m_PreInfinity: 2
  1449. m_PostInfinity: 2
  1450. m_RotationOrder: 4
  1451. path: Cylinder001
  1452. m_ScaleCurves: []
  1453. m_FloatCurves: []
  1454. m_PPtrCurves: []
  1455. m_SampleRate: 60
  1456. m_WrapMode: 0
  1457. m_Bounds:
  1458. m_Center: {x: 0, y: 0, z: 0}
  1459. m_Extent: {x: 0, y: 0, z: 0}
  1460. m_ClipBindingConstant:
  1461. genericBindings:
  1462. - serializedVersion: 2
  1463. path: 0
  1464. attribute: 1
  1465. script: {fileID: 0}
  1466. typeID: 4
  1467. customType: 0
  1468. isPPtrCurve: 0
  1469. - serializedVersion: 2
  1470. path: 695832823
  1471. attribute: 1
  1472. script: {fileID: 0}
  1473. typeID: 4
  1474. customType: 0
  1475. isPPtrCurve: 0
  1476. pptrCurveMapping: []
  1477. m_AnimationClipSettings:
  1478. serializedVersion: 2
  1479. m_AdditiveReferencePoseClip: {fileID: 0}
  1480. m_AdditiveReferencePoseTime: 0
  1481. m_StartTime: 0
  1482. m_StopTime: 24.166668
  1483. m_OrientationOffsetY: 0
  1484. m_Level: 0
  1485. m_CycleOffset: 0
  1486. m_HasAdditiveReferencePose: 0
  1487. m_LoopTime: 0
  1488. m_LoopBlend: 0
  1489. m_LoopBlendOrientation: 0
  1490. m_LoopBlendPositionY: 0
  1491. m_LoopBlendPositionXZ: 0
  1492. m_KeepOriginalOrientation: 0
  1493. m_KeepOriginalPositionY: 1
  1494. m_KeepOriginalPositionXZ: 0
  1495. m_HeightFromFeet: 0
  1496. m_Mirror: 0
  1497. m_EditorCurves:
  1498. - curve:
  1499. serializedVersion: 2
  1500. m_Curve:
  1501. - serializedVersion: 3
  1502. time: 0
  1503. value: 0
  1504. inSlope: 0
  1505. outSlope: 0
  1506. tangentMode: 136
  1507. weightedMode: 0
  1508. inWeight: 0.33333334
  1509. outWeight: 0.33333334
  1510. - serializedVersion: 3
  1511. time: 1.5666656
  1512. value: -0.024337908
  1513. inSlope: -0.023271311
  1514. outSlope: -0.023271311
  1515. tangentMode: 136
  1516. weightedMode: 0
  1517. inWeight: 0.33333334
  1518. outWeight: 0.33333334
  1519. - serializedVersion: 3
  1520. time: 4.1833324
  1521. value: -0.1469379
  1522. inSlope: -0.000043400894
  1523. outSlope: -0.000043400894
  1524. tangentMode: 136
  1525. weightedMode: 0
  1526. inWeight: 0.33333334
  1527. outWeight: 0.33333334
  1528. - serializedVersion: 3
  1529. time: 20
  1530. value: -0.14713791
  1531. inSlope: 0
  1532. outSlope: 0
  1533. tangentMode: 136
  1534. weightedMode: 0
  1535. inWeight: 0.33333334
  1536. outWeight: 0.33333334
  1537. - serializedVersion: 3
  1538. time: 21
  1539. value: -0.0026379079
  1540. inSlope: 0
  1541. outSlope: 0
  1542. tangentMode: 136
  1543. weightedMode: 0
  1544. inWeight: 0.33333334
  1545. outWeight: 0.33333334
  1546. - serializedVersion: 3
  1547. time: 21.666668
  1548. value: -0.0026379079
  1549. inSlope: 0
  1550. outSlope: 0
  1551. tangentMode: 136
  1552. weightedMode: 0
  1553. inWeight: 0.33333334
  1554. outWeight: 0.33333334
  1555. - serializedVersion: 3
  1556. time: 24.166668
  1557. value: -0.0026379079
  1558. inSlope: 0
  1559. outSlope: 0
  1560. tangentMode: 136
  1561. weightedMode: 0
  1562. inWeight: 0.33333334
  1563. outWeight: 0.33333334
  1564. m_PreInfinity: 2
  1565. m_PostInfinity: 2
  1566. m_RotationOrder: 4
  1567. attribute: m_LocalPosition.x
  1568. path:
  1569. classID: 4
  1570. script: {fileID: 0}
  1571. - curve:
  1572. serializedVersion: 2
  1573. m_Curve:
  1574. - serializedVersion: 3
  1575. time: 0
  1576. value: -0.000010001939
  1577. inSlope: 0
  1578. outSlope: 0
  1579. tangentMode: 136
  1580. weightedMode: 0
  1581. inWeight: 0.33333334
  1582. outWeight: 0.33333334
  1583. - serializedVersion: 3
  1584. time: 1.5666656
  1585. value: -0.000010001939
  1586. inSlope: 0
  1587. outSlope: 0
  1588. tangentMode: 136
  1589. weightedMode: 0
  1590. inWeight: 0.33333334
  1591. outWeight: 0.33333334
  1592. - serializedVersion: 3
  1593. time: 4.1833324
  1594. value: -0.08551
  1595. inSlope: -0.000021699485
  1596. outSlope: -0.000021699485
  1597. tangentMode: 136
  1598. weightedMode: 0
  1599. inWeight: 0.33333334
  1600. outWeight: 0.33333334
  1601. - serializedVersion: 3
  1602. time: 20
  1603. value: -0.08561
  1604. inSlope: 0
  1605. outSlope: 0
  1606. tangentMode: 136
  1607. weightedMode: 0
  1608. inWeight: 0.33333334
  1609. outWeight: 0.33333334
  1610. - serializedVersion: 3
  1611. time: 21
  1612. value: 0.001389998
  1613. inSlope: 0
  1614. outSlope: 0
  1615. tangentMode: 136
  1616. weightedMode: 0
  1617. inWeight: 0.33333334
  1618. outWeight: 0.33333334
  1619. - serializedVersion: 3
  1620. time: 21.666668
  1621. value: 0.001389998
  1622. inSlope: 0
  1623. outSlope: 0
  1624. tangentMode: 136
  1625. weightedMode: 0
  1626. inWeight: 0.33333334
  1627. outWeight: 0.33333334
  1628. - serializedVersion: 3
  1629. time: 24.166668
  1630. value: 0.001389998
  1631. inSlope: 0
  1632. outSlope: 0
  1633. tangentMode: 136
  1634. weightedMode: 0
  1635. inWeight: 0.33333334
  1636. outWeight: 0.33333334
  1637. m_PreInfinity: 2
  1638. m_PostInfinity: 2
  1639. m_RotationOrder: 4
  1640. attribute: m_LocalPosition.y
  1641. path:
  1642. classID: 4
  1643. script: {fileID: 0}
  1644. - curve:
  1645. serializedVersion: 2
  1646. m_Curve:
  1647. - serializedVersion: 3
  1648. time: 0
  1649. value: -0.00087597966
  1650. inSlope: 0
  1651. outSlope: 0
  1652. tangentMode: 136
  1653. weightedMode: 0
  1654. inWeight: 0.33333334
  1655. outWeight: 0.33333334
  1656. - serializedVersion: 3
  1657. time: 1.5666656
  1658. value: -0.07817599
  1659. inSlope: 0
  1660. outSlope: 0
  1661. tangentMode: 136
  1662. weightedMode: 0
  1663. inWeight: 0.33333334
  1664. outWeight: 0.33333334
  1665. - serializedVersion: 3
  1666. time: 4.1833324
  1667. value: 0.10522401
  1668. inSlope: 0
  1669. outSlope: 0
  1670. tangentMode: 136
  1671. weightedMode: 0
  1672. inWeight: 0.33333334
  1673. outWeight: 0.33333334
  1674. - serializedVersion: 3
  1675. time: 20
  1676. value: 0.10522401
  1677. inSlope: 0
  1678. outSlope: 0
  1679. tangentMode: 136
  1680. weightedMode: 0
  1681. inWeight: 0.33333334
  1682. outWeight: 0.33333334
  1683. - serializedVersion: 3
  1684. time: 21
  1685. value: -0.09577599
  1686. inSlope: 0
  1687. outSlope: 0
  1688. tangentMode: 136
  1689. weightedMode: 0
  1690. inWeight: 0.33333334
  1691. outWeight: 0.33333334
  1692. - serializedVersion: 3
  1693. time: 21.666668
  1694. value: -0.020475984
  1695. inSlope: 0.024378931
  1696. outSlope: 0.024378931
  1697. tangentMode: 136
  1698. weightedMode: 0
  1699. inWeight: 0.33333334
  1700. outWeight: 0.33333334
  1701. - serializedVersion: 3
  1702. time: 24.166668
  1703. value: -0.0011759847
  1704. inSlope: 0
  1705. outSlope: 0
  1706. tangentMode: 136
  1707. weightedMode: 0
  1708. inWeight: 0.33333334
  1709. outWeight: 0.33333334
  1710. m_PreInfinity: 2
  1711. m_PostInfinity: 2
  1712. m_RotationOrder: 4
  1713. attribute: m_LocalPosition.z
  1714. path:
  1715. classID: 4
  1716. script: {fileID: 0}
  1717. - curve:
  1718. serializedVersion: 2
  1719. m_Curve:
  1720. - serializedVersion: 3
  1721. time: 4.5166664
  1722. value: -0.0011906662
  1723. inSlope: 0
  1724. outSlope: 0
  1725. tangentMode: 136
  1726. weightedMode: 0
  1727. inWeight: 0.33333334
  1728. outWeight: 0.33333334
  1729. - serializedVersion: 3
  1730. time: 5.3166656
  1731. value: -0.0011906662
  1732. inSlope: 0
  1733. outSlope: 0
  1734. tangentMode: 136
  1735. weightedMode: 0
  1736. inWeight: 0.33333334
  1737. outWeight: 0.33333334
  1738. - serializedVersion: 3
  1739. time: 6.5666656
  1740. value: -0.018
  1741. inSlope: 0
  1742. outSlope: 0
  1743. tangentMode: 136
  1744. weightedMode: 0
  1745. inWeight: 0.33333334
  1746. outWeight: 0.33333334
  1747. - serializedVersion: 3
  1748. time: 19.150002
  1749. value: -0.0178
  1750. inSlope: 0.000059553244
  1751. outSlope: 0.000059553244
  1752. tangentMode: 136
  1753. weightedMode: 0
  1754. inWeight: 0.33333334
  1755. outWeight: 0.33333334
  1756. - serializedVersion: 3
  1757. time: 20
  1758. value: -0.0019
  1759. inSlope: 0
  1760. outSlope: 0
  1761. tangentMode: 136
  1762. weightedMode: 0
  1763. inWeight: 0.33333334
  1764. outWeight: 0.33333334
  1765. m_PreInfinity: 2
  1766. m_PostInfinity: 2
  1767. m_RotationOrder: 4
  1768. attribute: m_LocalPosition.x
  1769. path: Cylinder001
  1770. classID: 4
  1771. script: {fileID: 0}
  1772. - curve:
  1773. serializedVersion: 2
  1774. m_Curve:
  1775. - serializedVersion: 3
  1776. time: 4.5166664
  1777. value: 0.0002293358
  1778. inSlope: 0
  1779. outSlope: 0
  1780. tangentMode: 136
  1781. weightedMode: 0
  1782. inWeight: 0.33333334
  1783. outWeight: 0.33333334
  1784. - serializedVersion: 3
  1785. time: 5.3166656
  1786. value: 0.0002
  1787. inSlope: 0
  1788. outSlope: 0
  1789. tangentMode: 136
  1790. weightedMode: 0
  1791. inWeight: 0.33333334
  1792. outWeight: 0.33333334
  1793. - serializedVersion: 3
  1794. time: 6.5666656
  1795. value: 0.231
  1796. inSlope: 0
  1797. outSlope: 0
  1798. tangentMode: 136
  1799. weightedMode: 0
  1800. inWeight: 0.33333334
  1801. outWeight: 0.33333334
  1802. - serializedVersion: 3
  1803. time: 19.150002
  1804. value: 0.2303
  1805. inSlope: -0.00020844022
  1806. outSlope: -0.00020844022
  1807. tangentMode: 136
  1808. weightedMode: 0
  1809. inWeight: 0.33333334
  1810. outWeight: 0.33333334
  1811. - serializedVersion: 3
  1812. time: 20
  1813. value: 0.0008
  1814. inSlope: 0
  1815. outSlope: 0
  1816. tangentMode: 136
  1817. weightedMode: 0
  1818. inWeight: 0.33333334
  1819. outWeight: 0.33333334
  1820. m_PreInfinity: 2
  1821. m_PostInfinity: 2
  1822. m_RotationOrder: 4
  1823. attribute: m_LocalPosition.y
  1824. path: Cylinder001
  1825. classID: 4
  1826. script: {fileID: 0}
  1827. - curve:
  1828. serializedVersion: 2
  1829. m_Curve:
  1830. - serializedVersion: 3
  1831. time: 4.5166664
  1832. value: 0.028824404
  1833. inSlope: 0
  1834. outSlope: 0
  1835. tangentMode: 136
  1836. weightedMode: 0
  1837. inWeight: 0.33333334
  1838. outWeight: 0.33333334
  1839. - serializedVersion: 3
  1840. time: 5.3166656
  1841. value: 0.0473
  1842. inSlope: 0
  1843. outSlope: 0
  1844. tangentMode: 136
  1845. weightedMode: 0
  1846. inWeight: 0.33333334
  1847. outWeight: 0.33333334
  1848. - serializedVersion: 3
  1849. time: 6.5666656
  1850. value: 0.047
  1851. inSlope: 0
  1852. outSlope: 0
  1853. tangentMode: 136
  1854. weightedMode: 0
  1855. inWeight: 0.33333334
  1856. outWeight: 0.33333334
  1857. - serializedVersion: 3
  1858. time: 19.150002
  1859. value: 0.047
  1860. inSlope: 0
  1861. outSlope: 0
  1862. tangentMode: 136
  1863. weightedMode: 0
  1864. inWeight: 0.33333334
  1865. outWeight: 0.33333334
  1866. - serializedVersion: 3
  1867. time: 20
  1868. value: 0.029
  1869. inSlope: 0
  1870. outSlope: 0
  1871. tangentMode: 136
  1872. weightedMode: 0
  1873. inWeight: 0.33333334
  1874. outWeight: 0.33333334
  1875. m_PreInfinity: 2
  1876. m_PostInfinity: 2
  1877. m_RotationOrder: 4
  1878. attribute: m_LocalPosition.z
  1879. path: Cylinder001
  1880. classID: 4
  1881. script: {fileID: 0}
  1882. m_EulerEditorCurves: []
  1883. m_HasGenericRootTransform: 1
  1884. m_HasMotionFloatCurves: 0
  1885. m_Events: []
  1886. --- !u!114 &11400000
  1887. MonoBehaviour:
  1888. m_ObjectHideFlags: 0
  1889. m_CorrespondingSourceObject: {fileID: 0}
  1890. m_PrefabInstance: {fileID: 0}
  1891. m_PrefabAsset: {fileID: 0}
  1892. m_GameObject: {fileID: 0}
  1893. m_Enabled: 1
  1894. m_EditorHideFlags: 0
  1895. m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3}
  1896. m_Name: LQXT_5
  1897. m_EditorClassIdentifier:
  1898. m_Version: 0
  1899. m_Tracks:
  1900. - {fileID: -1464427187524067004}
  1901. - {fileID: 7881252869935293442}
  1902. - {fileID: -1399497614943326201}
  1903. - {fileID: 8078785036211587963}
  1904. - {fileID: 7932618405638870088}
  1905. - {fileID: 2297069836580575921}
  1906. - {fileID: -2029721919920298295}
  1907. - {fileID: -8405672331627114974}
  1908. - {fileID: 393304569402290558}
  1909. - {fileID: 9124058846587292333}
  1910. - {fileID: -5924563024296278929}
  1911. m_FixedDuration: 0
  1912. m_EditorSettings:
  1913. m_Framerate: 60
  1914. m_ScenePreview: 1
  1915. m_DurationMode: 0
  1916. m_MarkerTrack: {fileID: 0}
  1917. --- !u!114 &393304569402290558
  1918. MonoBehaviour:
  1919. m_ObjectHideFlags: 1
  1920. m_CorrespondingSourceObject: {fileID: 0}
  1921. m_PrefabInstance: {fileID: 0}
  1922. m_PrefabAsset: {fileID: 0}
  1923. m_GameObject: {fileID: 0}
  1924. m_Enabled: 1
  1925. m_EditorHideFlags: 0
  1926. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  1927. m_Name: Animation Track (3)
  1928. m_EditorClassIdentifier:
  1929. m_Version: 3
  1930. m_AnimClip: {fileID: 0}
  1931. m_Locked: 0
  1932. m_Muted: 0
  1933. m_CustomPlayableFullTypename:
  1934. m_Curves: {fileID: 0}
  1935. m_Parent: {fileID: 11400000}
  1936. m_Children: []
  1937. m_Clips:
  1938. - m_Version: 1
  1939. m_Start: 28.883333206176758
  1940. m_ClipIn: 0
  1941. m_Asset: {fileID: -3435655227629419296}
  1942. m_Duration: 3.1666666666666643
  1943. m_TimeScale: 0.6000000000000004
  1944. m_ParentTrack: {fileID: 393304569402290558}
  1945. m_EaseInDuration: 0
  1946. m_EaseOutDuration: 0
  1947. m_BlendInDuration: -1
  1948. m_BlendOutDuration: -1
  1949. m_MixInCurve:
  1950. serializedVersion: 2
  1951. m_Curve:
  1952. - serializedVersion: 3
  1953. time: 0
  1954. value: 0
  1955. inSlope: 0
  1956. outSlope: 0
  1957. tangentMode: 0
  1958. weightedMode: 0
  1959. inWeight: 0
  1960. outWeight: 0
  1961. - serializedVersion: 3
  1962. time: 1
  1963. value: 1
  1964. inSlope: 0
  1965. outSlope: 0
  1966. tangentMode: 0
  1967. weightedMode: 0
  1968. inWeight: 0
  1969. outWeight: 0
  1970. m_PreInfinity: 2
  1971. m_PostInfinity: 2
  1972. m_RotationOrder: 4
  1973. m_MixOutCurve:
  1974. serializedVersion: 2
  1975. m_Curve:
  1976. - serializedVersion: 3
  1977. time: 0
  1978. value: 1
  1979. inSlope: 0
  1980. outSlope: 0
  1981. tangentMode: 0
  1982. weightedMode: 0
  1983. inWeight: 0
  1984. outWeight: 0
  1985. - serializedVersion: 3
  1986. time: 1
  1987. value: 0
  1988. inSlope: 0
  1989. outSlope: 0
  1990. tangentMode: 0
  1991. weightedMode: 0
  1992. inWeight: 0
  1993. outWeight: 0
  1994. m_PreInfinity: 2
  1995. m_PostInfinity: 2
  1996. m_RotationOrder: 4
  1997. m_BlendInCurveMode: 0
  1998. m_BlendOutCurveMode: 0
  1999. m_ExposedParameterNames: []
  2000. m_AnimationCurves: {fileID: 0}
  2001. m_Recordable: 1
  2002. m_PostExtrapolationMode: 1
  2003. m_PreExtrapolationMode: 1
  2004. m_PostExtrapolationTime: Infinity
  2005. m_PreExtrapolationTime: 28.883333206176758
  2006. m_DisplayName: Recorded (4)
  2007. m_Markers:
  2008. m_Objects: []
  2009. m_InfiniteClipPreExtrapolation: 1
  2010. m_InfiniteClipPostExtrapolation: 1
  2011. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2012. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2013. m_InfiniteClipTimeOffset: 0
  2014. m_InfiniteClipRemoveOffset: 0
  2015. m_InfiniteClipApplyFootIK: 1
  2016. mInfiniteClipLoop: 0
  2017. m_MatchTargetFields: 63
  2018. m_Position: {x: 0, y: 0, z: 0}
  2019. m_EulerAngles: {x: 0, y: 0, z: 0}
  2020. m_AvatarMask: {fileID: 0}
  2021. m_ApplyAvatarMask: 1
  2022. m_TrackOffset: 0
  2023. m_InfiniteClip: {fileID: 0}
  2024. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2025. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2026. m_ApplyOffsets: 0
  2027. --- !u!114 &735119947339320985
  2028. MonoBehaviour:
  2029. m_ObjectHideFlags: 1
  2030. m_CorrespondingSourceObject: {fileID: 0}
  2031. m_PrefabInstance: {fileID: 0}
  2032. m_PrefabAsset: {fileID: 0}
  2033. m_GameObject: {fileID: 0}
  2034. m_Enabled: 1
  2035. m_EditorHideFlags: 0
  2036. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  2037. m_Name: ActivationPlayableAsset
  2038. m_EditorClassIdentifier:
  2039. --- !u!114 &773760726207964712
  2040. MonoBehaviour:
  2041. m_ObjectHideFlags: 1
  2042. m_CorrespondingSourceObject: {fileID: 0}
  2043. m_PrefabInstance: {fileID: 0}
  2044. m_PrefabAsset: {fileID: 0}
  2045. m_GameObject: {fileID: 0}
  2046. m_Enabled: 1
  2047. m_EditorHideFlags: 0
  2048. m_Script: {fileID: 11500000, guid: 4f10dd60657c6004587f237a7e90f8e4, type: 3}
  2049. m_Name: AudioPlayableAsset
  2050. m_EditorClassIdentifier:
  2051. m_Clip: {fileID: 8300000, guid: a1def7f6076b4cc4db264667073cd52b, type: 3}
  2052. m_Loop: 0
  2053. m_bufferingTime: 0.1
  2054. m_ClipProperties:
  2055. volume: 1
  2056. --- !u!114 &2297069836580575921
  2057. MonoBehaviour:
  2058. m_ObjectHideFlags: 1
  2059. m_CorrespondingSourceObject: {fileID: 0}
  2060. m_PrefabInstance: {fileID: 0}
  2061. m_PrefabAsset: {fileID: 0}
  2062. m_GameObject: {fileID: 0}
  2063. m_Enabled: 1
  2064. m_EditorHideFlags: 0
  2065. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2066. m_Name: Animation Track (2)
  2067. m_EditorClassIdentifier:
  2068. m_Version: 3
  2069. m_AnimClip: {fileID: 0}
  2070. m_Locked: 0
  2071. m_Muted: 0
  2072. m_CustomPlayableFullTypename:
  2073. m_Curves: {fileID: 0}
  2074. m_Parent: {fileID: 11400000}
  2075. m_Children: []
  2076. m_Clips:
  2077. - m_Version: 1
  2078. m_Start: 19.233333587646484
  2079. m_ClipIn: 0
  2080. m_Asset: {fileID: 7956737287664823275}
  2081. m_Duration: 24.166666666666668
  2082. m_TimeScale: 1
  2083. m_ParentTrack: {fileID: 2297069836580575921}
  2084. m_EaseInDuration: 0
  2085. m_EaseOutDuration: 0
  2086. m_BlendInDuration: -1
  2087. m_BlendOutDuration: -1
  2088. m_MixInCurve:
  2089. serializedVersion: 2
  2090. m_Curve:
  2091. - serializedVersion: 3
  2092. time: 0
  2093. value: 0
  2094. inSlope: 0
  2095. outSlope: 0
  2096. tangentMode: 0
  2097. weightedMode: 0
  2098. inWeight: 0
  2099. outWeight: 0
  2100. - serializedVersion: 3
  2101. time: 1
  2102. value: 1
  2103. inSlope: 0
  2104. outSlope: 0
  2105. tangentMode: 0
  2106. weightedMode: 0
  2107. inWeight: 0
  2108. outWeight: 0
  2109. m_PreInfinity: 2
  2110. m_PostInfinity: 2
  2111. m_RotationOrder: 4
  2112. m_MixOutCurve:
  2113. serializedVersion: 2
  2114. m_Curve:
  2115. - serializedVersion: 3
  2116. time: 0
  2117. value: 1
  2118. inSlope: 0
  2119. outSlope: 0
  2120. tangentMode: 0
  2121. weightedMode: 0
  2122. inWeight: 0
  2123. outWeight: 0
  2124. - serializedVersion: 3
  2125. time: 1
  2126. value: 0
  2127. inSlope: 0
  2128. outSlope: 0
  2129. tangentMode: 0
  2130. weightedMode: 0
  2131. inWeight: 0
  2132. outWeight: 0
  2133. m_PreInfinity: 2
  2134. m_PostInfinity: 2
  2135. m_RotationOrder: 4
  2136. m_BlendInCurveMode: 0
  2137. m_BlendOutCurveMode: 0
  2138. m_ExposedParameterNames: []
  2139. m_AnimationCurves: {fileID: 0}
  2140. m_Recordable: 1
  2141. m_PostExtrapolationMode: 1
  2142. m_PreExtrapolationMode: 1
  2143. m_PostExtrapolationTime: Infinity
  2144. m_PreExtrapolationTime: 19.233333587646484
  2145. m_DisplayName: Recorded (2)
  2146. m_Markers:
  2147. m_Objects: []
  2148. m_InfiniteClipPreExtrapolation: 1
  2149. m_InfiniteClipPostExtrapolation: 1
  2150. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2151. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2152. m_InfiniteClipTimeOffset: 0
  2153. m_InfiniteClipRemoveOffset: 0
  2154. m_InfiniteClipApplyFootIK: 1
  2155. mInfiniteClipLoop: 0
  2156. m_MatchTargetFields: 63
  2157. m_Position: {x: 0, y: 0, z: 0}
  2158. m_EulerAngles: {x: 0, y: 0, z: 0}
  2159. m_AvatarMask: {fileID: 0}
  2160. m_ApplyAvatarMask: 1
  2161. m_TrackOffset: 0
  2162. m_InfiniteClip: {fileID: 0}
  2163. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2164. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2165. m_ApplyOffsets: 0
  2166. --- !u!114 &3639599201954968543
  2167. MonoBehaviour:
  2168. m_ObjectHideFlags: 1
  2169. m_CorrespondingSourceObject: {fileID: 0}
  2170. m_PrefabInstance: {fileID: 0}
  2171. m_PrefabAsset: {fileID: 0}
  2172. m_GameObject: {fileID: 0}
  2173. m_Enabled: 1
  2174. m_EditorHideFlags: 0
  2175. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2176. m_Name: Recorded (3)
  2177. m_EditorClassIdentifier:
  2178. m_Clip: {fileID: -4017571347899113893}
  2179. m_Position: {x: -7.742, y: 0.651, z: -8.453}
  2180. m_EulerAngles: {x: -0, y: 0, z: 90}
  2181. m_UseTrackMatchFields: 1
  2182. m_MatchTargetFields: 63
  2183. m_RemoveStartOffset: 0
  2184. m_ApplyFootIK: 1
  2185. m_Loop: 0
  2186. m_Version: 1
  2187. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2188. --- !u!114 &6376862541099315805
  2189. MonoBehaviour:
  2190. m_ObjectHideFlags: 1
  2191. m_CorrespondingSourceObject: {fileID: 0}
  2192. m_PrefabInstance: {fileID: 0}
  2193. m_PrefabAsset: {fileID: 0}
  2194. m_GameObject: {fileID: 0}
  2195. m_Enabled: 1
  2196. m_EditorHideFlags: 0
  2197. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2198. m_Name: CinemachineShot
  2199. m_EditorClassIdentifier:
  2200. DisplayName:
  2201. VirtualCamera:
  2202. exposedName: 5a4dba2919f34164b8a5e34cecccae97
  2203. defaultValue: {fileID: 0}
  2204. --- !u!114 &6444523818151495914
  2205. MonoBehaviour:
  2206. m_ObjectHideFlags: 1
  2207. m_CorrespondingSourceObject: {fileID: 0}
  2208. m_PrefabInstance: {fileID: 0}
  2209. m_PrefabAsset: {fileID: 0}
  2210. m_GameObject: {fileID: 0}
  2211. m_Enabled: 1
  2212. m_EditorHideFlags: 0
  2213. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2214. m_Name: Recorded (1)
  2215. m_EditorClassIdentifier:
  2216. m_Clip: {fileID: -6323854268480312141}
  2217. m_Position: {x: -0.06971567, y: -0.0043930914, z: -0.11463521}
  2218. m_EulerAngles: {x: 270.01978, y: 180.00006, z: 0}
  2219. m_UseTrackMatchFields: 1
  2220. m_MatchTargetFields: 63
  2221. m_RemoveStartOffset: 0
  2222. m_ApplyFootIK: 1
  2223. m_Loop: 0
  2224. m_Version: 1
  2225. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2226. --- !u!114 &7360499279718930065
  2227. MonoBehaviour:
  2228. m_ObjectHideFlags: 1
  2229. m_CorrespondingSourceObject: {fileID: 0}
  2230. m_PrefabInstance: {fileID: 0}
  2231. m_PrefabAsset: {fileID: 0}
  2232. m_GameObject: {fileID: 0}
  2233. m_Enabled: 1
  2234. m_EditorHideFlags: 0
  2235. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2236. m_Name: CinemachineShot
  2237. m_EditorClassIdentifier:
  2238. DisplayName:
  2239. VirtualCamera:
  2240. exposedName: 8cc8f5f207a7b9642b52fc66a6d7db53
  2241. defaultValue: {fileID: 0}
  2242. --- !u!114 &7881252869935293442
  2243. MonoBehaviour:
  2244. m_ObjectHideFlags: 1
  2245. m_CorrespondingSourceObject: {fileID: 0}
  2246. m_PrefabInstance: {fileID: 0}
  2247. m_PrefabAsset: {fileID: 0}
  2248. m_GameObject: {fileID: 0}
  2249. m_Enabled: 1
  2250. m_EditorHideFlags: 0
  2251. m_Script: {fileID: 11500000, guid: 05acc715f855ced458d76ee6f8ac6c61, type: 3}
  2252. m_Name: Cinemachine Track
  2253. m_EditorClassIdentifier:
  2254. m_Version: 3
  2255. m_AnimClip: {fileID: 0}
  2256. m_Locked: 0
  2257. m_Muted: 0
  2258. m_CustomPlayableFullTypename:
  2259. m_Curves: {fileID: 0}
  2260. m_Parent: {fileID: 11400000}
  2261. m_Children: []
  2262. m_Clips:
  2263. - m_Version: 1
  2264. m_Start: 0
  2265. m_ClipIn: 0
  2266. m_Asset: {fileID: 7360499279718930065}
  2267. m_Duration: 3.85
  2268. m_TimeScale: 1
  2269. m_ParentTrack: {fileID: 7881252869935293442}
  2270. m_EaseInDuration: 0
  2271. m_EaseOutDuration: 0
  2272. m_BlendInDuration: -1
  2273. m_BlendOutDuration: -1
  2274. m_MixInCurve:
  2275. serializedVersion: 2
  2276. m_Curve:
  2277. - serializedVersion: 3
  2278. time: 0
  2279. value: 0
  2280. inSlope: 0
  2281. outSlope: 0
  2282. tangentMode: 0
  2283. weightedMode: 0
  2284. inWeight: 0
  2285. outWeight: 0
  2286. - serializedVersion: 3
  2287. time: 1
  2288. value: 1
  2289. inSlope: 0
  2290. outSlope: 0
  2291. tangentMode: 0
  2292. weightedMode: 0
  2293. inWeight: 0
  2294. outWeight: 0
  2295. m_PreInfinity: 2
  2296. m_PostInfinity: 2
  2297. m_RotationOrder: 4
  2298. m_MixOutCurve:
  2299. serializedVersion: 2
  2300. m_Curve: []
  2301. m_PreInfinity: 2
  2302. m_PostInfinity: 2
  2303. m_RotationOrder: 4
  2304. m_BlendInCurveMode: 0
  2305. m_BlendOutCurveMode: 0
  2306. m_ExposedParameterNames: []
  2307. m_AnimationCurves: {fileID: 0}
  2308. m_Recordable: 0
  2309. m_PostExtrapolationMode: 0
  2310. m_PreExtrapolationMode: 0
  2311. m_PostExtrapolationTime: 0
  2312. m_PreExtrapolationTime: 0
  2313. m_DisplayName: ' virtualcam9'
  2314. - m_Version: 1
  2315. m_Start: 3.85
  2316. m_ClipIn: 0
  2317. m_Asset: {fileID: 8750428718144868976}
  2318. m_Duration: 2.5333333333333337
  2319. m_TimeScale: 1
  2320. m_ParentTrack: {fileID: 7881252869935293442}
  2321. m_EaseInDuration: 0
  2322. m_EaseOutDuration: 0
  2323. m_BlendInDuration: -1
  2324. m_BlendOutDuration: -1
  2325. m_MixInCurve:
  2326. serializedVersion: 2
  2327. m_Curve:
  2328. - serializedVersion: 3
  2329. time: 0
  2330. value: 0
  2331. inSlope: 0
  2332. outSlope: 0
  2333. tangentMode: 0
  2334. weightedMode: 0
  2335. inWeight: 0
  2336. outWeight: 0
  2337. - serializedVersion: 3
  2338. time: 1
  2339. value: 1
  2340. inSlope: 0
  2341. outSlope: 0
  2342. tangentMode: 0
  2343. weightedMode: 0
  2344. inWeight: 0
  2345. outWeight: 0
  2346. m_PreInfinity: 2
  2347. m_PostInfinity: 2
  2348. m_RotationOrder: 4
  2349. m_MixOutCurve:
  2350. serializedVersion: 2
  2351. m_Curve:
  2352. - serializedVersion: 3
  2353. time: 0
  2354. value: 1
  2355. inSlope: 0
  2356. outSlope: 0
  2357. tangentMode: 0
  2358. weightedMode: 0
  2359. inWeight: 0
  2360. outWeight: 0
  2361. - serializedVersion: 3
  2362. time: 1
  2363. value: 0
  2364. inSlope: 0
  2365. outSlope: 0
  2366. tangentMode: 0
  2367. weightedMode: 0
  2368. inWeight: 0
  2369. outWeight: 0
  2370. m_PreInfinity: 2
  2371. m_PostInfinity: 2
  2372. m_RotationOrder: 4
  2373. m_BlendInCurveMode: 0
  2374. m_BlendOutCurveMode: 0
  2375. m_ExposedParameterNames: []
  2376. m_AnimationCurves: {fileID: 0}
  2377. m_Recordable: 0
  2378. m_PostExtrapolationMode: 0
  2379. m_PreExtrapolationMode: 0
  2380. m_PostExtrapolationTime: 0
  2381. m_PreExtrapolationTime: 0
  2382. m_DisplayName: ' virtualcam2'
  2383. - m_Version: 1
  2384. m_Start: 6.383333333333334
  2385. m_ClipIn: 0
  2386. m_Asset: {fileID: 6376862541099315805}
  2387. m_Duration: 53.03333333333333
  2388. m_TimeScale: 1
  2389. m_ParentTrack: {fileID: 7881252869935293442}
  2390. m_EaseInDuration: 0
  2391. m_EaseOutDuration: 0
  2392. m_BlendInDuration: -1
  2393. m_BlendOutDuration: -1
  2394. m_MixInCurve:
  2395. serializedVersion: 2
  2396. m_Curve:
  2397. - serializedVersion: 3
  2398. time: 0
  2399. value: 0
  2400. inSlope: 0
  2401. outSlope: 0
  2402. tangentMode: 0
  2403. weightedMode: 0
  2404. inWeight: 0
  2405. outWeight: 0
  2406. - serializedVersion: 3
  2407. time: 1
  2408. value: 1
  2409. inSlope: 0
  2410. outSlope: 0
  2411. tangentMode: 0
  2412. weightedMode: 0
  2413. inWeight: 0
  2414. outWeight: 0
  2415. m_PreInfinity: 2
  2416. m_PostInfinity: 2
  2417. m_RotationOrder: 4
  2418. m_MixOutCurve:
  2419. serializedVersion: 2
  2420. m_Curve:
  2421. - serializedVersion: 3
  2422. time: 0
  2423. value: 1
  2424. inSlope: 0
  2425. outSlope: 0
  2426. tangentMode: 0
  2427. weightedMode: 0
  2428. inWeight: 0
  2429. outWeight: 0
  2430. - serializedVersion: 3
  2431. time: 1
  2432. value: 0
  2433. inSlope: 0
  2434. outSlope: 0
  2435. tangentMode: 0
  2436. weightedMode: 0
  2437. inWeight: 0
  2438. outWeight: 0
  2439. m_PreInfinity: 2
  2440. m_PostInfinity: 2
  2441. m_RotationOrder: 4
  2442. m_BlendInCurveMode: 0
  2443. m_BlendOutCurveMode: 0
  2444. m_ExposedParameterNames: []
  2445. m_AnimationCurves: {fileID: 0}
  2446. m_Recordable: 0
  2447. m_PostExtrapolationMode: 0
  2448. m_PreExtrapolationMode: 0
  2449. m_PostExtrapolationTime: 0
  2450. m_PreExtrapolationTime: 0
  2451. m_DisplayName: ' virtualcam9'
  2452. m_Markers:
  2453. m_Objects: []
  2454. --- !u!114 &7932618405638870088
  2455. MonoBehaviour:
  2456. m_ObjectHideFlags: 1
  2457. m_CorrespondingSourceObject: {fileID: 0}
  2458. m_PrefabInstance: {fileID: 0}
  2459. m_PrefabAsset: {fileID: 0}
  2460. m_GameObject: {fileID: 0}
  2461. m_Enabled: 1
  2462. m_EditorHideFlags: 0
  2463. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2464. m_Name: Animation Track (1)
  2465. m_EditorClassIdentifier:
  2466. m_Version: 3
  2467. m_AnimClip: {fileID: 0}
  2468. m_Locked: 0
  2469. m_Muted: 0
  2470. m_CustomPlayableFullTypename:
  2471. m_Curves: {fileID: 0}
  2472. m_Parent: {fileID: 11400000}
  2473. m_Children: []
  2474. m_Clips:
  2475. - m_Version: 1
  2476. m_Start: 14.716666221618652
  2477. m_ClipIn: 0
  2478. m_Asset: {fileID: 6444523818151495914}
  2479. m_Duration: 33.86666666666667
  2480. m_TimeScale: 1
  2481. m_ParentTrack: {fileID: 7932618405638870088}
  2482. m_EaseInDuration: 0
  2483. m_EaseOutDuration: 0
  2484. m_BlendInDuration: -1
  2485. m_BlendOutDuration: -1
  2486. m_MixInCurve:
  2487. serializedVersion: 2
  2488. m_Curve:
  2489. - serializedVersion: 3
  2490. time: 0
  2491. value: 0
  2492. inSlope: 0
  2493. outSlope: 0
  2494. tangentMode: 0
  2495. weightedMode: 0
  2496. inWeight: 0
  2497. outWeight: 0
  2498. - serializedVersion: 3
  2499. time: 1
  2500. value: 1
  2501. inSlope: 0
  2502. outSlope: 0
  2503. tangentMode: 0
  2504. weightedMode: 0
  2505. inWeight: 0
  2506. outWeight: 0
  2507. m_PreInfinity: 2
  2508. m_PostInfinity: 2
  2509. m_RotationOrder: 4
  2510. m_MixOutCurve:
  2511. serializedVersion: 2
  2512. m_Curve:
  2513. - serializedVersion: 3
  2514. time: 0
  2515. value: 1
  2516. inSlope: 0
  2517. outSlope: 0
  2518. tangentMode: 0
  2519. weightedMode: 0
  2520. inWeight: 0
  2521. outWeight: 0
  2522. - serializedVersion: 3
  2523. time: 1
  2524. value: 0
  2525. inSlope: 0
  2526. outSlope: 0
  2527. tangentMode: 0
  2528. weightedMode: 0
  2529. inWeight: 0
  2530. outWeight: 0
  2531. m_PreInfinity: 2
  2532. m_PostInfinity: 2
  2533. m_RotationOrder: 4
  2534. m_BlendInCurveMode: 0
  2535. m_BlendOutCurveMode: 0
  2536. m_ExposedParameterNames: []
  2537. m_AnimationCurves: {fileID: 0}
  2538. m_Recordable: 1
  2539. m_PostExtrapolationMode: 1
  2540. m_PreExtrapolationMode: 1
  2541. m_PostExtrapolationTime: Infinity
  2542. m_PreExtrapolationTime: 14.716666221618652
  2543. m_DisplayName: Recorded (1)
  2544. m_Markers:
  2545. m_Objects: []
  2546. m_InfiniteClipPreExtrapolation: 1
  2547. m_InfiniteClipPostExtrapolation: 1
  2548. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2549. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2550. m_InfiniteClipTimeOffset: 0
  2551. m_InfiniteClipRemoveOffset: 0
  2552. m_InfiniteClipApplyFootIK: 1
  2553. mInfiniteClipLoop: 0
  2554. m_MatchTargetFields: 63
  2555. m_Position: {x: 0, y: 0, z: 0}
  2556. m_EulerAngles: {x: 0, y: 0, z: 0}
  2557. m_AvatarMask: {fileID: 0}
  2558. m_ApplyAvatarMask: 1
  2559. m_TrackOffset: 0
  2560. m_InfiniteClip: {fileID: 0}
  2561. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2562. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2563. m_ApplyOffsets: 0
  2564. --- !u!114 &7956737287664823275
  2565. MonoBehaviour:
  2566. m_ObjectHideFlags: 1
  2567. m_CorrespondingSourceObject: {fileID: 0}
  2568. m_PrefabInstance: {fileID: 0}
  2569. m_PrefabAsset: {fileID: 0}
  2570. m_GameObject: {fileID: 0}
  2571. m_Enabled: 1
  2572. m_EditorHideFlags: 0
  2573. m_Script: {fileID: 11500000, guid: 030f85c3f73729f4f976f66ffb23b875, type: 3}
  2574. m_Name: Recorded (2)
  2575. m_EditorClassIdentifier:
  2576. m_Clip: {fileID: -1092314777848640289}
  2577. m_Position: {x: -0.022162093, y: -0.004389998, z: -0.15022402}
  2578. m_EulerAngles: {x: 0, y: 0, z: 0}
  2579. m_UseTrackMatchFields: 1
  2580. m_MatchTargetFields: 63
  2581. m_RemoveStartOffset: 0
  2582. m_ApplyFootIK: 1
  2583. m_Loop: 0
  2584. m_Version: 1
  2585. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2586. --- !u!114 &7968978128150242165
  2587. MonoBehaviour:
  2588. m_ObjectHideFlags: 1
  2589. m_CorrespondingSourceObject: {fileID: 0}
  2590. m_PrefabInstance: {fileID: 0}
  2591. m_PrefabAsset: {fileID: 0}
  2592. m_GameObject: {fileID: 0}
  2593. m_Enabled: 1
  2594. m_EditorHideFlags: 0
  2595. m_Script: {fileID: 11500000, guid: fde0d25a170598d46a0b9dc16b4527a5, type: 3}
  2596. m_Name: ActivationPlayableAsset
  2597. m_EditorClassIdentifier:
  2598. --- !u!114 &8078785036211587963
  2599. MonoBehaviour:
  2600. m_ObjectHideFlags: 1
  2601. m_CorrespondingSourceObject: {fileID: 0}
  2602. m_PrefabInstance: {fileID: 0}
  2603. m_PrefabAsset: {fileID: 0}
  2604. m_GameObject: {fileID: 0}
  2605. m_Enabled: 1
  2606. m_EditorHideFlags: 0
  2607. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2608. m_Name: Animation Track
  2609. m_EditorClassIdentifier:
  2610. m_Version: 3
  2611. m_AnimClip: {fileID: 0}
  2612. m_Locked: 0
  2613. m_Muted: 0
  2614. m_CustomPlayableFullTypename:
  2615. m_Curves: {fileID: 0}
  2616. m_Parent: {fileID: 11400000}
  2617. m_Children: []
  2618. m_Clips: []
  2619. m_Markers:
  2620. m_Objects: []
  2621. m_InfiniteClipPreExtrapolation: 1
  2622. m_InfiniteClipPostExtrapolation: 1
  2623. m_InfiniteClipOffsetPosition: {x: -2.9150012, y: -0.4579841, z: 20.15327}
  2624. m_InfiniteClipOffsetEulerAngles: {x: 15.965883, y: 156.26428, z: -0.0000039961296}
  2625. m_InfiniteClipTimeOffset: 0
  2626. m_InfiniteClipRemoveOffset: 0
  2627. m_InfiniteClipApplyFootIK: 1
  2628. mInfiniteClipLoop: 0
  2629. m_MatchTargetFields: 63
  2630. m_Position: {x: 0, y: 0, z: 0}
  2631. m_EulerAngles: {x: 0, y: 0, z: 0}
  2632. m_AvatarMask: {fileID: 0}
  2633. m_ApplyAvatarMask: 1
  2634. m_TrackOffset: 0
  2635. m_InfiniteClip: {fileID: 8546945574662414013}
  2636. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  2637. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  2638. m_ApplyOffsets: 0
  2639. --- !u!74 &8546945574662414013
  2640. AnimationClip:
  2641. m_ObjectHideFlags: 0
  2642. m_CorrespondingSourceObject: {fileID: 0}
  2643. m_PrefabInstance: {fileID: 0}
  2644. m_PrefabAsset: {fileID: 0}
  2645. m_Name: Recorded
  2646. serializedVersion: 7
  2647. m_Legacy: 0
  2648. m_Compressed: 0
  2649. m_UseHighQualityCurve: 1
  2650. m_RotationCurves: []
  2651. m_CompressedRotationCurves: []
  2652. m_EulerCurves: []
  2653. m_PositionCurves:
  2654. - curve:
  2655. serializedVersion: 2
  2656. m_Curve:
  2657. - serializedVersion: 3
  2658. time: 0
  2659. value: {x: -0.00017786026, y: 0.00032663345, z: -0.031518936}
  2660. inSlope: {x: 0, y: 0, z: 0}
  2661. outSlope: {x: 0, y: 0, z: 0}
  2662. tangentMode: 0
  2663. weightedMode: 0
  2664. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2665. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2666. - serializedVersion: 3
  2667. time: 13.15
  2668. value: {x: -0.00063991547, y: 0.00039052963, z: 0.2231884}
  2669. inSlope: {x: 0, y: 0.0000051737793, z: 0.00007135186}
  2670. outSlope: {x: 0, y: 0.0000051737793, z: 0.00007135186}
  2671. tangentMode: 0
  2672. weightedMode: 0
  2673. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2674. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2675. - serializedVersion: 3
  2676. time: 49.4
  2677. value: {x: -0.00023651123, y: 0.0006427765, z: 0.2240696}
  2678. inSlope: {x: 0.00000004122499, y: 0.0000053180397, z: 0}
  2679. outSlope: {x: 0.00000004122499, y: 0.0000053180397, z: 0}
  2680. tangentMode: 0
  2681. weightedMode: 0
  2682. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2683. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2684. - serializedVersion: 3
  2685. time: 59.416668
  2686. value: {x: -0.0002360344, y: 0.0007042885, z: 0.09304237}
  2687. inSlope: {x: 0, y: 0, z: 0}
  2688. outSlope: {x: 0, y: 0, z: 0}
  2689. tangentMode: 0
  2690. weightedMode: 0
  2691. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2692. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  2693. m_PreInfinity: 2
  2694. m_PostInfinity: 2
  2695. m_RotationOrder: 4
  2696. path:
  2697. m_ScaleCurves: []
  2698. m_FloatCurves: []
  2699. m_PPtrCurves: []
  2700. m_SampleRate: 60
  2701. m_WrapMode: 0
  2702. m_Bounds:
  2703. m_Center: {x: 0, y: 0, z: 0}
  2704. m_Extent: {x: 0, y: 0, z: 0}
  2705. m_ClipBindingConstant:
  2706. genericBindings:
  2707. - serializedVersion: 2
  2708. path: 0
  2709. attribute: 1
  2710. script: {fileID: 0}
  2711. typeID: 4
  2712. customType: 0
  2713. isPPtrCurve: 0
  2714. pptrCurveMapping: []
  2715. m_AnimationClipSettings:
  2716. serializedVersion: 2
  2717. m_AdditiveReferencePoseClip: {fileID: 0}
  2718. m_AdditiveReferencePoseTime: 0
  2719. m_StartTime: 0
  2720. m_StopTime: 59.416668
  2721. m_OrientationOffsetY: 0
  2722. m_Level: 0
  2723. m_CycleOffset: 0
  2724. m_HasAdditiveReferencePose: 0
  2725. m_LoopTime: 0
  2726. m_LoopBlend: 0
  2727. m_LoopBlendOrientation: 0
  2728. m_LoopBlendPositionY: 0
  2729. m_LoopBlendPositionXZ: 0
  2730. m_KeepOriginalOrientation: 0
  2731. m_KeepOriginalPositionY: 1
  2732. m_KeepOriginalPositionXZ: 0
  2733. m_HeightFromFeet: 0
  2734. m_Mirror: 0
  2735. m_EditorCurves:
  2736. - curve:
  2737. serializedVersion: 2
  2738. m_Curve:
  2739. - serializedVersion: 3
  2740. time: 0
  2741. value: -0.00017786026
  2742. inSlope: 0
  2743. outSlope: 0
  2744. tangentMode: 136
  2745. weightedMode: 0
  2746. inWeight: 0.33333334
  2747. outWeight: 0.33333334
  2748. - serializedVersion: 3
  2749. time: 13.15
  2750. value: -0.00063991547
  2751. inSlope: 0
  2752. outSlope: 0
  2753. tangentMode: 136
  2754. weightedMode: 0
  2755. inWeight: 0.33333334
  2756. outWeight: 0.33333334
  2757. - serializedVersion: 3
  2758. time: 49.4
  2759. value: -0.00023651123
  2760. inSlope: 0.00000004122499
  2761. outSlope: 0.00000004122499
  2762. tangentMode: 136
  2763. weightedMode: 0
  2764. inWeight: 0.33333334
  2765. outWeight: 0.33333334
  2766. - serializedVersion: 3
  2767. time: 59.416668
  2768. value: -0.0002360344
  2769. inSlope: 0
  2770. outSlope: 0
  2771. tangentMode: 136
  2772. weightedMode: 0
  2773. inWeight: 0.33333334
  2774. outWeight: 0.33333334
  2775. m_PreInfinity: 2
  2776. m_PostInfinity: 2
  2777. m_RotationOrder: 4
  2778. attribute: m_LocalPosition.x
  2779. path:
  2780. classID: 4
  2781. script: {fileID: 0}
  2782. - curve:
  2783. serializedVersion: 2
  2784. m_Curve:
  2785. - serializedVersion: 3
  2786. time: 0
  2787. value: 0.00032663345
  2788. inSlope: 0
  2789. outSlope: 0
  2790. tangentMode: 136
  2791. weightedMode: 0
  2792. inWeight: 0.33333334
  2793. outWeight: 0.33333334
  2794. - serializedVersion: 3
  2795. time: 13.15
  2796. value: 0.00039052963
  2797. inSlope: 0.0000051737793
  2798. outSlope: 0.0000051737793
  2799. tangentMode: 136
  2800. weightedMode: 0
  2801. inWeight: 0.33333334
  2802. outWeight: 0.33333334
  2803. - serializedVersion: 3
  2804. time: 49.4
  2805. value: 0.0006427765
  2806. inSlope: 0.0000053180397
  2807. outSlope: 0.0000053180397
  2808. tangentMode: 136
  2809. weightedMode: 0
  2810. inWeight: 0.33333334
  2811. outWeight: 0.33333334
  2812. - serializedVersion: 3
  2813. time: 59.416668
  2814. value: 0.0007042885
  2815. inSlope: 0
  2816. outSlope: 0
  2817. tangentMode: 136
  2818. weightedMode: 0
  2819. inWeight: 0.33333334
  2820. outWeight: 0.33333334
  2821. m_PreInfinity: 2
  2822. m_PostInfinity: 2
  2823. m_RotationOrder: 4
  2824. attribute: m_LocalPosition.y
  2825. path:
  2826. classID: 4
  2827. script: {fileID: 0}
  2828. - curve:
  2829. serializedVersion: 2
  2830. m_Curve:
  2831. - serializedVersion: 3
  2832. time: 0
  2833. value: -0.031518936
  2834. inSlope: 0
  2835. outSlope: 0
  2836. tangentMode: 136
  2837. weightedMode: 0
  2838. inWeight: 0.33333334
  2839. outWeight: 0.33333334
  2840. - serializedVersion: 3
  2841. time: 13.15
  2842. value: 0.2231884
  2843. inSlope: 0.00007135186
  2844. outSlope: 0.00007135186
  2845. tangentMode: 136
  2846. weightedMode: 0
  2847. inWeight: 0.33333334
  2848. outWeight: 0.33333334
  2849. - serializedVersion: 3
  2850. time: 49.4
  2851. value: 0.2240696
  2852. inSlope: 0
  2853. outSlope: 0
  2854. tangentMode: 136
  2855. weightedMode: 0
  2856. inWeight: 0.33333334
  2857. outWeight: 0.33333334
  2858. - serializedVersion: 3
  2859. time: 59.416668
  2860. value: 0.09304237
  2861. inSlope: 0
  2862. outSlope: 0
  2863. tangentMode: 136
  2864. weightedMode: 0
  2865. inWeight: 0.33333334
  2866. outWeight: 0.33333334
  2867. m_PreInfinity: 2
  2868. m_PostInfinity: 2
  2869. m_RotationOrder: 4
  2870. attribute: m_LocalPosition.z
  2871. path:
  2872. classID: 4
  2873. script: {fileID: 0}
  2874. m_EulerEditorCurves: []
  2875. m_HasGenericRootTransform: 1
  2876. m_HasMotionFloatCurves: 0
  2877. m_Events: []
  2878. --- !u!114 &8750428718144868976
  2879. MonoBehaviour:
  2880. m_ObjectHideFlags: 1
  2881. m_CorrespondingSourceObject: {fileID: 0}
  2882. m_PrefabInstance: {fileID: 0}
  2883. m_PrefabAsset: {fileID: 0}
  2884. m_GameObject: {fileID: 0}
  2885. m_Enabled: 1
  2886. m_EditorHideFlags: 0
  2887. m_Script: {fileID: 11500000, guid: 90fb794a295e73545af71bcdb7375791, type: 3}
  2888. m_Name: CinemachineShot
  2889. m_EditorClassIdentifier:
  2890. DisplayName:
  2891. VirtualCamera:
  2892. exposedName: ad5b4e0836541844596f8f4f0b2d1657
  2893. defaultValue: {fileID: 0}
  2894. --- !u!114 &9124058846587292333
  2895. MonoBehaviour:
  2896. m_ObjectHideFlags: 1
  2897. m_CorrespondingSourceObject: {fileID: 0}
  2898. m_PrefabInstance: {fileID: 0}
  2899. m_PrefabAsset: {fileID: 0}
  2900. m_GameObject: {fileID: 0}
  2901. m_Enabled: 1
  2902. m_EditorHideFlags: 0
  2903. m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3}
  2904. m_Name: Animation Track (4)
  2905. m_EditorClassIdentifier:
  2906. m_Version: 3
  2907. m_AnimClip: {fileID: 0}
  2908. m_Locked: 0
  2909. m_Muted: 0
  2910. m_CustomPlayableFullTypename:
  2911. m_Curves: {fileID: 0}
  2912. m_Parent: {fileID: 11400000}
  2913. m_Children: []
  2914. m_Clips:
  2915. - m_Version: 1
  2916. m_Start: 34.31666666666667
  2917. m_ClipIn: 0
  2918. m_Asset: {fileID: 3639599201954968543}
  2919. m_Duration: 2.7142857142857153
  2920. m_TimeScale: 0.6999999999999997
  2921. m_ParentTrack: {fileID: 9124058846587292333}
  2922. m_EaseInDuration: 0
  2923. m_EaseOutDuration: 0
  2924. m_BlendInDuration: -1
  2925. m_BlendOutDuration: -1
  2926. m_MixInCurve:
  2927. serializedVersion: 2
  2928. m_Curve:
  2929. - serializedVersion: 3
  2930. time: 0
  2931. value: 0
  2932. inSlope: 0
  2933. outSlope: 0
  2934. tangentMode: 0
  2935. weightedMode: 0
  2936. inWeight: 0
  2937. outWeight: 0
  2938. - serializedVersion: 3
  2939. time: 1
  2940. value: 1
  2941. inSlope: 0
  2942. outSlope: 0
  2943. tangentMode: 0
  2944. weightedMode: 0
  2945. inWeight: 0
  2946. outWeight: 0
  2947. m_PreInfinity: 2
  2948. m_PostInfinity: 2
  2949. m_RotationOrder: 4
  2950. m_MixOutCurve:
  2951. serializedVersion: 2
  2952. m_Curve:
  2953. - serializedVersion: 3
  2954. time: 0
  2955. value: 1
  2956. inSlope: 0
  2957. outSlope: 0
  2958. tangentMode: 0
  2959. weightedMode: 0
  2960. inWeight: 0
  2961. outWeight: 0
  2962. - serializedVersion: 3
  2963. time: 1
  2964. value: 0
  2965. inSlope: 0
  2966. outSlope: 0
  2967. tangentMode: 0
  2968. weightedMode: 0
  2969. inWeight: 0
  2970. outWeight: 0
  2971. m_PreInfinity: 2
  2972. m_PostInfinity: 2
  2973. m_RotationOrder: 4
  2974. m_BlendInCurveMode: 0
  2975. m_BlendOutCurveMode: 0
  2976. m_ExposedParameterNames: []
  2977. m_AnimationCurves: {fileID: 0}
  2978. m_Recordable: 1
  2979. m_PostExtrapolationMode: 1
  2980. m_PreExtrapolationMode: 1
  2981. m_PostExtrapolationTime: Infinity
  2982. m_PreExtrapolationTime: 34.31666666666667
  2983. m_DisplayName: Recorded (3)
  2984. m_Markers:
  2985. m_Objects: []
  2986. m_InfiniteClipPreExtrapolation: 1
  2987. m_InfiniteClipPostExtrapolation: 1
  2988. m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0}
  2989. m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0}
  2990. m_InfiniteClipTimeOffset: 0
  2991. m_InfiniteClipRemoveOffset: 0
  2992. m_InfiniteClipApplyFootIK: 1
  2993. mInfiniteClipLoop: 0
  2994. m_MatchTargetFields: 63
  2995. m_Position: {x: 0, y: 0, z: 0}
  2996. m_EulerAngles: {x: 0, y: 0, z: 0}
  2997. m_AvatarMask: {fileID: 0}
  2998. m_ApplyAvatarMask: 1
  2999. m_TrackOffset: 0
  3000. m_InfiniteClip: {fileID: 0}
  3001. m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1}
  3002. m_Rotation: {x: 0, y: 0, z: 0, w: 1}
  3003. m_ApplyOffsets: 0