法宝Timeline.playable 80 KB

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