AutoIn.anim 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!74 &7400000
  4. AnimationClip:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_Name: AutoIn
  10. serializedVersion: 6
  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, y: 0, z: 45}
  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.33333334
  31. value: {x: 0, y: 0, z: 10}
  32. inSlope: {x: 0, y: 0, z: 0}
  33. outSlope: {x: 0, y: 0, z: 0}
  34. tangentMode: 0
  35. weightedMode: 0
  36. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  37. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  38. - serializedVersion: 3
  39. time: 0.41666666
  40. value: {x: 0, y: 0, z: 50}
  41. inSlope: {x: 0, y: 0, z: 0}
  42. outSlope: {x: 0, y: 0, z: 0}
  43. tangentMode: 0
  44. weightedMode: 0
  45. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  46. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  47. - serializedVersion: 3
  48. time: 0.5
  49. value: {x: 0, y: 0, z: 45}
  50. inSlope: {x: 0, y: 0, z: 0}
  51. outSlope: {x: 0, y: 0, z: 0}
  52. tangentMode: 0
  53. weightedMode: 0
  54. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  55. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  56. m_PreInfinity: 2
  57. m_PostInfinity: 2
  58. m_RotationOrder: 4
  59. path: Root/right
  60. - curve:
  61. serializedVersion: 2
  62. m_Curve:
  63. - serializedVersion: 3
  64. time: 0
  65. value: {x: 0, y: 0, z: -45}
  66. inSlope: {x: 0, y: 0, z: 0}
  67. outSlope: {x: 0, y: 0, z: 0}
  68. tangentMode: 0
  69. weightedMode: 0
  70. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  71. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  72. - serializedVersion: 3
  73. time: 0.33333334
  74. value: {x: 0, y: 0, z: -10}
  75. inSlope: {x: 0, y: 0, z: 0}
  76. outSlope: {x: 0, y: 0, z: 0}
  77. tangentMode: 0
  78. weightedMode: 0
  79. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  80. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  81. - serializedVersion: 3
  82. time: 0.41666666
  83. value: {x: 0, y: 0, z: -50}
  84. inSlope: {x: 0, y: 0, z: 0}
  85. outSlope: {x: 0, y: 0, z: 0}
  86. tangentMode: 0
  87. weightedMode: 0
  88. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  89. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  90. - serializedVersion: 3
  91. time: 0.5
  92. value: {x: 0, y: 0, z: -45}
  93. inSlope: {x: 0, y: 0, z: 0}
  94. outSlope: {x: 0, y: 0, z: 0}
  95. tangentMode: 0
  96. weightedMode: 0
  97. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  98. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  99. m_PreInfinity: 2
  100. m_PostInfinity: 2
  101. m_RotationOrder: 4
  102. path: Root/left
  103. - curve:
  104. serializedVersion: 2
  105. m_Curve:
  106. - serializedVersion: 3
  107. time: 0
  108. value: {x: 0, y: 0, z: 0}
  109. inSlope: {x: 0, y: 0, z: 0}
  110. outSlope: {x: 0, y: 0, z: 0}
  111. tangentMode: 0
  112. weightedMode: 0
  113. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  114. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  115. - serializedVersion: 3
  116. time: 0.41666666
  117. value: {x: 0, y: 0, z: 10}
  118. inSlope: {x: 0, y: 0, z: 40.000004}
  119. outSlope: {x: 0, y: 0, z: 40.000004}
  120. tangentMode: 0
  121. weightedMode: 0
  122. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  123. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  124. - serializedVersion: 3
  125. time: 1
  126. value: {x: 0, y: 0, z: 300}
  127. inSlope: {x: 0, y: 0, z: 0}
  128. outSlope: {x: 0, y: 0, z: 0}
  129. tangentMode: 0
  130. weightedMode: 0
  131. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  132. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  133. m_PreInfinity: 2
  134. m_PostInfinity: 2
  135. m_RotationOrder: 4
  136. path: Root/auto/s1
  137. - curve:
  138. serializedVersion: 2
  139. m_Curve:
  140. - serializedVersion: 3
  141. time: 0
  142. value: {x: 0, y: 0, z: 0}
  143. inSlope: {x: 0, y: 0, z: 0}
  144. outSlope: {x: 0, y: 0, z: 0}
  145. tangentMode: 0
  146. weightedMode: 0
  147. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  148. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  149. - serializedVersion: 3
  150. time: 0.41666666
  151. value: {x: 0, y: 0, z: -30}
  152. inSlope: {x: 0, y: 0, z: -120.00001}
  153. outSlope: {x: 0, y: 0, z: -120.00001}
  154. tangentMode: 0
  155. weightedMode: 0
  156. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  157. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  158. - serializedVersion: 3
  159. time: 1
  160. value: {x: 0, y: 0, z: -200}
  161. inSlope: {x: 0, y: 0, z: 0}
  162. outSlope: {x: 0, y: 0, z: 0}
  163. tangentMode: 0
  164. weightedMode: 0
  165. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  166. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  167. m_PreInfinity: 2
  168. m_PostInfinity: 2
  169. m_RotationOrder: 4
  170. path: Root/auto/s2
  171. - curve:
  172. serializedVersion: 2
  173. m_Curve:
  174. - serializedVersion: 3
  175. time: 0
  176. value: {x: 0, y: 0, z: 0}
  177. inSlope: {x: 0, y: 0, z: 0}
  178. outSlope: {x: 0, y: 0, z: 0}
  179. tangentMode: 0
  180. weightedMode: 0
  181. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  182. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  183. - serializedVersion: 3
  184. time: 0.41666666
  185. value: {x: 0, y: 0, z: 20}
  186. inSlope: {x: 0, y: 0, z: 80}
  187. outSlope: {x: 0, y: 0, z: 80}
  188. tangentMode: 0
  189. weightedMode: 0
  190. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  191. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  192. - serializedVersion: 3
  193. time: 1
  194. value: {x: 0, y: 0, z: 520}
  195. inSlope: {x: 0, y: 0, z: 0}
  196. outSlope: {x: 0, y: 0, z: 0}
  197. tangentMode: 0
  198. weightedMode: 0
  199. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  200. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  201. m_PreInfinity: 2
  202. m_PostInfinity: 2
  203. m_RotationOrder: 4
  204. path: Root/auto/s3
  205. - curve:
  206. serializedVersion: 2
  207. m_Curve:
  208. - serializedVersion: 3
  209. time: 0
  210. value: {x: 0, y: 0, z: 0}
  211. inSlope: {x: 0, y: 0, z: 0}
  212. outSlope: {x: 0, y: 0, z: 0}
  213. tangentMode: 0
  214. weightedMode: 0
  215. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  216. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  217. - serializedVersion: 3
  218. time: 0.41666666
  219. value: {x: 0, y: 0, z: 0}
  220. inSlope: {x: 0, y: 0, z: 0}
  221. outSlope: {x: 0, y: 0, z: 0}
  222. tangentMode: 0
  223. weightedMode: 0
  224. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  225. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  226. - serializedVersion: 3
  227. time: 1
  228. value: {x: 0, y: 0, z: -400}
  229. inSlope: {x: 0, y: 0, z: 0}
  230. outSlope: {x: 0, y: 0, z: 0}
  231. tangentMode: 0
  232. weightedMode: 0
  233. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  234. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  235. m_PreInfinity: 2
  236. m_PostInfinity: 2
  237. m_RotationOrder: 4
  238. path: Root/auto/s4
  239. m_PositionCurves: []
  240. m_ScaleCurves:
  241. - curve:
  242. serializedVersion: 2
  243. m_Curve:
  244. - serializedVersion: 3
  245. time: 0
  246. value: {x: 0, y: 0, z: 1}
  247. inSlope: {x: 0, y: 0, z: 0}
  248. outSlope: {x: 0, y: 0, z: 0}
  249. tangentMode: 0
  250. weightedMode: 0
  251. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  252. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  253. - serializedVersion: 3
  254. time: 0.33333334
  255. value: {x: 0, y: 0, z: 1}
  256. inSlope: {x: 0, y: 0, z: 0}
  257. outSlope: {x: 0, y: 0, z: 0}
  258. tangentMode: 0
  259. weightedMode: 0
  260. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  261. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  262. - serializedVersion: 3
  263. time: 0.41666666
  264. value: {x: 0.5, y: 0.5, z: 1}
  265. inSlope: {x: 2.25, y: 2.25, z: 0}
  266. outSlope: {x: 2.25, y: 2.25, z: 0}
  267. tangentMode: 0
  268. weightedMode: 0
  269. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  270. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  271. - serializedVersion: 3
  272. time: 1
  273. value: {x: 1.5, y: 1.5, z: 1}
  274. inSlope: {x: 0, y: 0, z: 0}
  275. outSlope: {x: 0, y: 0, z: 0}
  276. tangentMode: 0
  277. weightedMode: 0
  278. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  279. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  280. m_PreInfinity: 2
  281. m_PostInfinity: 2
  282. m_RotationOrder: 4
  283. path: Root/auto/ball
  284. - curve:
  285. serializedVersion: 2
  286. m_Curve:
  287. - serializedVersion: 3
  288. time: 0
  289. value: {x: 1, y: 1, z: 1}
  290. inSlope: {x: 0, y: 0, z: 0}
  291. outSlope: {x: 0, y: 0, z: 0}
  292. tangentMode: 0
  293. weightedMode: 0
  294. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  295. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  296. - serializedVersion: 3
  297. time: 0.33333334
  298. value: {x: 1.2, y: 1.2, z: 1}
  299. inSlope: {x: 0, y: 0, z: 0}
  300. outSlope: {x: 0, y: 0, z: 0}
  301. tangentMode: 0
  302. weightedMode: 0
  303. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  304. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  305. - serializedVersion: 3
  306. time: 0.41666666
  307. value: {x: 0.9, y: 0.9, z: 1}
  308. inSlope: {x: 0, y: 0, z: 0}
  309. outSlope: {x: 0, y: 0, z: 0}
  310. tangentMode: 0
  311. weightedMode: 0
  312. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  313. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  314. - serializedVersion: 3
  315. time: 0.5
  316. value: {x: 1, y: 1, z: 1}
  317. inSlope: {x: 0, y: 0, z: 0}
  318. outSlope: {x: 0, y: 0, z: 0}
  319. tangentMode: 0
  320. weightedMode: 0
  321. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  322. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  323. m_PreInfinity: 2
  324. m_PostInfinity: 2
  325. m_RotationOrder: 4
  326. path: Root
  327. - curve:
  328. serializedVersion: 2
  329. m_Curve:
  330. - serializedVersion: 3
  331. time: 0
  332. value: {x: 1, y: 1, z: 1}
  333. inSlope: {x: 0, y: 0, z: 0}
  334. outSlope: {x: 0, y: 0, z: 0}
  335. tangentMode: 0
  336. weightedMode: 0
  337. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  338. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  339. - serializedVersion: 3
  340. time: 0.41666666
  341. value: {x: 0.5, y: 0.5, z: 1}
  342. inSlope: {x: 0, y: 0, z: 0}
  343. outSlope: {x: 0, y: 0, z: 0}
  344. tangentMode: 0
  345. weightedMode: 0
  346. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  347. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  348. - serializedVersion: 3
  349. time: 1
  350. value: {x: 1.5, y: 1.5, z: 1}
  351. inSlope: {x: 0, y: 0, z: 0}
  352. outSlope: {x: 0, y: 0, z: 0}
  353. tangentMode: 0
  354. weightedMode: 0
  355. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  356. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  357. m_PreInfinity: 2
  358. m_PostInfinity: 2
  359. m_RotationOrder: 4
  360. path: Root/auto/s1
  361. - curve:
  362. serializedVersion: 2
  363. m_Curve:
  364. - serializedVersion: 3
  365. time: 0
  366. value: {x: 1, y: 1, z: 1}
  367. inSlope: {x: 0, y: 0, z: 0}
  368. outSlope: {x: 0, y: 0, z: 0}
  369. tangentMode: 0
  370. weightedMode: 0
  371. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  372. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  373. - serializedVersion: 3
  374. time: 0.41666666
  375. value: {x: 0.2, y: 0.2, z: 1}
  376. inSlope: {x: 0, y: 0, z: 0}
  377. outSlope: {x: 0, y: 0, z: 0}
  378. tangentMode: 0
  379. weightedMode: 0
  380. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  381. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  382. - serializedVersion: 3
  383. time: 1
  384. value: {x: 1.5, y: 1.5, z: 1}
  385. inSlope: {x: 0, y: 0, z: 0}
  386. outSlope: {x: 0, y: 0, z: 0}
  387. tangentMode: 0
  388. weightedMode: 0
  389. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  390. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  391. m_PreInfinity: 2
  392. m_PostInfinity: 2
  393. m_RotationOrder: 4
  394. path: Root/auto/s2
  395. - curve:
  396. serializedVersion: 2
  397. m_Curve:
  398. - serializedVersion: 3
  399. time: 0
  400. value: {x: 1, y: 1, z: 1}
  401. inSlope: {x: 0, y: 0, z: 0}
  402. outSlope: {x: 0, y: 0, z: 0}
  403. tangentMode: 0
  404. weightedMode: 0
  405. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  406. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  407. - serializedVersion: 3
  408. time: 0.41666666
  409. value: {x: 0.2, y: 0.2, z: 1}
  410. inSlope: {x: 0, y: 0, z: 0}
  411. outSlope: {x: 0, y: 0, z: 0}
  412. tangentMode: 0
  413. weightedMode: 0
  414. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  415. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  416. - serializedVersion: 3
  417. time: 1
  418. value: {x: 0.8, y: 0.8, z: 1}
  419. inSlope: {x: 0, y: 0, z: 0}
  420. outSlope: {x: 0, y: 0, z: 0}
  421. tangentMode: 0
  422. weightedMode: 0
  423. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  424. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  425. m_PreInfinity: 2
  426. m_PostInfinity: 2
  427. m_RotationOrder: 4
  428. path: Root/auto/s4
  429. m_FloatCurves:
  430. - curve:
  431. serializedVersion: 2
  432. m_Curve:
  433. - serializedVersion: 3
  434. time: 0
  435. value: 1
  436. inSlope: Infinity
  437. outSlope: Infinity
  438. tangentMode: 103
  439. weightedMode: 0
  440. inWeight: 0
  441. outWeight: 0
  442. m_PreInfinity: 2
  443. m_PostInfinity: 2
  444. m_RotationOrder: 4
  445. attribute: m_IsActive
  446. path: TextAutoIn
  447. classID: 1
  448. script: {fileID: 0}
  449. - curve:
  450. serializedVersion: 2
  451. m_Curve:
  452. - serializedVersion: 3
  453. time: 0
  454. value: 0
  455. inSlope: Infinity
  456. outSlope: Infinity
  457. tangentMode: 103
  458. weightedMode: 0
  459. inWeight: 0
  460. outWeight: 0
  461. m_PreInfinity: 2
  462. m_PostInfinity: 2
  463. m_RotationOrder: 4
  464. attribute: m_IsActive
  465. path: TextAuto
  466. classID: 1
  467. script: {fileID: 0}
  468. - curve:
  469. serializedVersion: 2
  470. m_Curve:
  471. - serializedVersion: 3
  472. time: 0
  473. value: 1
  474. inSlope: Infinity
  475. outSlope: Infinity
  476. tangentMode: 103
  477. weightedMode: 0
  478. inWeight: 0
  479. outWeight: 0
  480. m_PreInfinity: 2
  481. m_PostInfinity: 2
  482. m_RotationOrder: 4
  483. attribute: m_IsActive
  484. path: Root/auto
  485. classID: 1
  486. script: {fileID: 0}
  487. - curve:
  488. serializedVersion: 2
  489. m_Curve:
  490. - serializedVersion: 3
  491. time: 0
  492. value: 0
  493. inSlope: 0
  494. outSlope: 0
  495. tangentMode: 136
  496. weightedMode: 0
  497. inWeight: 0.33333334
  498. outWeight: 0.33333334
  499. - serializedVersion: 3
  500. time: 0.33333334
  501. value: 0
  502. inSlope: 0
  503. outSlope: 0
  504. tangentMode: 136
  505. weightedMode: 0
  506. inWeight: 0.33333334
  507. outWeight: 0.33333334
  508. - serializedVersion: 3
  509. time: 0.41666666
  510. value: 1
  511. inSlope: 0
  512. outSlope: 0
  513. tangentMode: 136
  514. weightedMode: 0
  515. inWeight: 0.33333334
  516. outWeight: 0.33333334
  517. - serializedVersion: 3
  518. time: 1
  519. value: 0
  520. inSlope: 0
  521. outSlope: 0
  522. tangentMode: 136
  523. weightedMode: 0
  524. inWeight: 0.33333334
  525. outWeight: 0.33333334
  526. m_PreInfinity: 2
  527. m_PostInfinity: 2
  528. m_RotationOrder: 4
  529. attribute: m_Color.a
  530. path: Root/auto/ball
  531. classID: 114
  532. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  533. - curve:
  534. serializedVersion: 2
  535. m_Curve:
  536. - serializedVersion: 3
  537. time: 0
  538. value: 0
  539. inSlope: 0
  540. outSlope: 0
  541. tangentMode: 136
  542. weightedMode: 0
  543. inWeight: 0.33333334
  544. outWeight: 0.33333334
  545. - serializedVersion: 3
  546. time: 0.33333334
  547. value: 0
  548. inSlope: 0
  549. outSlope: 0
  550. tangentMode: 136
  551. weightedMode: 0
  552. inWeight: 0.33333334
  553. outWeight: 0.33333334
  554. - serializedVersion: 3
  555. time: 0.41666666
  556. value: 1
  557. inSlope: 0
  558. outSlope: 0
  559. tangentMode: 136
  560. weightedMode: 0
  561. inWeight: 0.33333334
  562. outWeight: 0.33333334
  563. - serializedVersion: 3
  564. time: 1
  565. value: 0
  566. inSlope: 0
  567. outSlope: 0
  568. tangentMode: 136
  569. weightedMode: 0
  570. inWeight: 0.33333334
  571. outWeight: 0.33333334
  572. m_PreInfinity: 2
  573. m_PostInfinity: 2
  574. m_RotationOrder: 4
  575. attribute: m_Color.a
  576. path: Root/auto/s1
  577. classID: 114
  578. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  579. - curve:
  580. serializedVersion: 2
  581. m_Curve:
  582. - serializedVersion: 3
  583. time: 0
  584. value: 0
  585. inSlope: 0
  586. outSlope: 0
  587. tangentMode: 136
  588. weightedMode: 0
  589. inWeight: 0.33333334
  590. outWeight: 0.33333334
  591. - serializedVersion: 3
  592. time: 0.33333334
  593. value: 0
  594. inSlope: 0
  595. outSlope: 0
  596. tangentMode: 136
  597. weightedMode: 0
  598. inWeight: 0.33333334
  599. outWeight: 0.33333334
  600. - serializedVersion: 3
  601. time: 0.41666666
  602. value: 1
  603. inSlope: 0
  604. outSlope: 0
  605. tangentMode: 136
  606. weightedMode: 0
  607. inWeight: 0.33333334
  608. outWeight: 0.33333334
  609. - serializedVersion: 3
  610. time: 1
  611. value: 0
  612. inSlope: 0
  613. outSlope: 0
  614. tangentMode: 136
  615. weightedMode: 0
  616. inWeight: 0.33333334
  617. outWeight: 0.33333334
  618. m_PreInfinity: 2
  619. m_PostInfinity: 2
  620. m_RotationOrder: 4
  621. attribute: m_Color.a
  622. path: Root/auto/s2
  623. classID: 114
  624. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  625. - curve:
  626. serializedVersion: 2
  627. m_Curve:
  628. - serializedVersion: 3
  629. time: 0
  630. value: 0
  631. inSlope: 0
  632. outSlope: 0
  633. tangentMode: 136
  634. weightedMode: 0
  635. inWeight: 0.33333334
  636. outWeight: 0.33333334
  637. - serializedVersion: 3
  638. time: 0.33333334
  639. value: 0
  640. inSlope: 0
  641. outSlope: 0
  642. tangentMode: 136
  643. weightedMode: 0
  644. inWeight: 0.33333334
  645. outWeight: 0.33333334
  646. - serializedVersion: 3
  647. time: 0.41666666
  648. value: 1
  649. inSlope: 0
  650. outSlope: 0
  651. tangentMode: 136
  652. weightedMode: 0
  653. inWeight: 0.33333334
  654. outWeight: 0.33333334
  655. - serializedVersion: 3
  656. time: 1
  657. value: 0
  658. inSlope: 0
  659. outSlope: 0
  660. tangentMode: 136
  661. weightedMode: 0
  662. inWeight: 0.33333334
  663. outWeight: 0.33333334
  664. m_PreInfinity: 2
  665. m_PostInfinity: 2
  666. m_RotationOrder: 4
  667. attribute: m_Color.a
  668. path: Root/auto/s3
  669. classID: 114
  670. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  671. - curve:
  672. serializedVersion: 2
  673. m_Curve:
  674. - serializedVersion: 3
  675. time: 0
  676. value: 0
  677. inSlope: 0
  678. outSlope: 0
  679. tangentMode: 136
  680. weightedMode: 0
  681. inWeight: 0.33333334
  682. outWeight: 0.33333334
  683. - serializedVersion: 3
  684. time: 0.33333334
  685. value: 0
  686. inSlope: 0
  687. outSlope: 0
  688. tangentMode: 136
  689. weightedMode: 0
  690. inWeight: 0.33333334
  691. outWeight: 0.33333334
  692. - serializedVersion: 3
  693. time: 0.41666666
  694. value: 1
  695. inSlope: 0
  696. outSlope: 0
  697. tangentMode: 136
  698. weightedMode: 0
  699. inWeight: 0.33333334
  700. outWeight: 0.33333334
  701. - serializedVersion: 3
  702. time: 1
  703. value: 0
  704. inSlope: 0
  705. outSlope: 0
  706. tangentMode: 136
  707. weightedMode: 0
  708. inWeight: 0.33333334
  709. outWeight: 0.33333334
  710. m_PreInfinity: 2
  711. m_PostInfinity: 2
  712. m_RotationOrder: 4
  713. attribute: m_Color.a
  714. path: Root/auto/s4
  715. classID: 114
  716. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  717. - curve:
  718. serializedVersion: 2
  719. m_Curve:
  720. - serializedVersion: 3
  721. time: 0
  722. value: -8
  723. inSlope: 0
  724. outSlope: 0
  725. tangentMode: 136
  726. weightedMode: 0
  727. inWeight: 0.33333334
  728. outWeight: 0.33333334
  729. - serializedVersion: 3
  730. time: 0.33333334
  731. value: -20
  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: 0.41666666
  740. value: -8
  741. inSlope: 0
  742. outSlope: 0
  743. tangentMode: 136
  744. weightedMode: 0
  745. inWeight: 0.33333334
  746. outWeight: 0.33333334
  747. m_PreInfinity: 2
  748. m_PostInfinity: 2
  749. m_RotationOrder: 4
  750. attribute: m_AnchoredPosition.x
  751. path: Root/left
  752. classID: 224
  753. script: {fileID: 0}
  754. - curve:
  755. serializedVersion: 2
  756. m_Curve:
  757. - serializedVersion: 3
  758. time: 0
  759. value: 8
  760. inSlope: 0
  761. outSlope: 0
  762. tangentMode: 136
  763. weightedMode: 0
  764. inWeight: 0.33333334
  765. outWeight: 0.33333334
  766. - serializedVersion: 3
  767. time: 0.33333334
  768. value: 20
  769. inSlope: 0
  770. outSlope: 0
  771. tangentMode: 136
  772. weightedMode: 0
  773. inWeight: 0.33333334
  774. outWeight: 0.33333334
  775. - serializedVersion: 3
  776. time: 0.41666666
  777. value: 8
  778. inSlope: 0
  779. outSlope: 0
  780. tangentMode: 136
  781. weightedMode: 0
  782. inWeight: 0.33333334
  783. outWeight: 0.33333334
  784. m_PreInfinity: 2
  785. m_PostInfinity: 2
  786. m_RotationOrder: 4
  787. attribute: m_AnchoredPosition.x
  788. path: Root/right
  789. classID: 224
  790. script: {fileID: 0}
  791. - curve:
  792. serializedVersion: 2
  793. m_Curve:
  794. - serializedVersion: 3
  795. time: 0
  796. value: 0
  797. inSlope: Infinity
  798. outSlope: Infinity
  799. tangentMode: 103
  800. weightedMode: 0
  801. inWeight: 0
  802. outWeight: 0
  803. - serializedVersion: 3
  804. time: 0.5
  805. value: 1
  806. inSlope: Infinity
  807. outSlope: Infinity
  808. tangentMode: 103
  809. weightedMode: 0
  810. inWeight: 0
  811. outWeight: 0
  812. m_PreInfinity: 2
  813. m_PostInfinity: 2
  814. m_RotationOrder: 4
  815. attribute: m_IsActive
  816. path: TextAutoIn/p3
  817. classID: 1
  818. script: {fileID: 0}
  819. - curve:
  820. serializedVersion: 2
  821. m_Curve:
  822. - serializedVersion: 3
  823. time: 0
  824. value: 0
  825. inSlope: Infinity
  826. outSlope: Infinity
  827. tangentMode: 103
  828. weightedMode: 0
  829. inWeight: 0
  830. outWeight: 0
  831. - serializedVersion: 3
  832. time: 0.33333334
  833. value: 1
  834. inSlope: Infinity
  835. outSlope: Infinity
  836. tangentMode: 103
  837. weightedMode: 0
  838. inWeight: 0
  839. outWeight: 0
  840. - serializedVersion: 3
  841. time: 0.5
  842. value: 1
  843. inSlope: Infinity
  844. outSlope: Infinity
  845. tangentMode: 103
  846. weightedMode: 0
  847. inWeight: 0
  848. outWeight: 0
  849. m_PreInfinity: 2
  850. m_PostInfinity: 2
  851. m_RotationOrder: 4
  852. attribute: m_IsActive
  853. path: TextAutoIn/p2
  854. classID: 1
  855. script: {fileID: 0}
  856. - curve:
  857. serializedVersion: 2
  858. m_Curve:
  859. - serializedVersion: 3
  860. time: 0
  861. value: 0
  862. inSlope: Infinity
  863. outSlope: Infinity
  864. tangentMode: 103
  865. weightedMode: 0
  866. inWeight: 0
  867. outWeight: 0
  868. - serializedVersion: 3
  869. time: 0.16666667
  870. value: 1
  871. inSlope: Infinity
  872. outSlope: Infinity
  873. tangentMode: 103
  874. weightedMode: 0
  875. inWeight: 0
  876. outWeight: 0
  877. - serializedVersion: 3
  878. time: 0.33333334
  879. value: 1
  880. inSlope: Infinity
  881. outSlope: Infinity
  882. tangentMode: 103
  883. weightedMode: 0
  884. inWeight: 0
  885. outWeight: 0
  886. m_PreInfinity: 2
  887. m_PostInfinity: 2
  888. m_RotationOrder: 4
  889. attribute: m_IsActive
  890. path: TextAutoIn/p1
  891. classID: 1
  892. script: {fileID: 0}
  893. - curve:
  894. serializedVersion: 2
  895. m_Curve:
  896. - serializedVersion: 3
  897. time: 0
  898. value: 0
  899. inSlope: 0
  900. outSlope: 0
  901. tangentMode: 136
  902. weightedMode: 0
  903. inWeight: 0.33333334
  904. outWeight: 0.33333334
  905. - serializedVersion: 3
  906. time: 0.41666666
  907. value: 0
  908. inSlope: 0
  909. outSlope: 0
  910. tangentMode: 136
  911. weightedMode: 0
  912. inWeight: 0.33333334
  913. outWeight: 0.33333334
  914. - serializedVersion: 3
  915. time: 1
  916. value: -74
  917. inSlope: 0
  918. outSlope: 0
  919. tangentMode: 136
  920. weightedMode: 0
  921. inWeight: 0.33333334
  922. outWeight: 0.33333334
  923. m_PreInfinity: 2
  924. m_PostInfinity: 2
  925. m_RotationOrder: 4
  926. attribute: m_AnchoredPosition.x
  927. path: Root/auto/s1
  928. classID: 224
  929. script: {fileID: 0}
  930. - curve:
  931. serializedVersion: 2
  932. m_Curve:
  933. - serializedVersion: 3
  934. time: 0
  935. value: 0
  936. inSlope: 0
  937. outSlope: 0
  938. tangentMode: 136
  939. weightedMode: 0
  940. inWeight: 0.33333334
  941. outWeight: 0.33333334
  942. - serializedVersion: 3
  943. time: 0.41666666
  944. value: 0
  945. inSlope: 0
  946. outSlope: 0
  947. tangentMode: 136
  948. weightedMode: 0
  949. inWeight: 0.33333334
  950. outWeight: 0.33333334
  951. - serializedVersion: 3
  952. time: 1
  953. value: 46
  954. inSlope: 0
  955. outSlope: 0
  956. tangentMode: 136
  957. weightedMode: 0
  958. inWeight: 0.33333334
  959. outWeight: 0.33333334
  960. m_PreInfinity: 2
  961. m_PostInfinity: 2
  962. m_RotationOrder: 4
  963. attribute: m_AnchoredPosition.y
  964. path: Root/auto/s1
  965. classID: 224
  966. script: {fileID: 0}
  967. - curve:
  968. serializedVersion: 2
  969. m_Curve:
  970. - serializedVersion: 3
  971. time: 0
  972. value: 19.6
  973. inSlope: 0
  974. outSlope: 0
  975. tangentMode: 136
  976. weightedMode: 0
  977. inWeight: 0.33333334
  978. outWeight: 0.33333334
  979. - serializedVersion: 3
  980. time: 0.41666666
  981. value: 0
  982. inSlope: 0
  983. outSlope: 0
  984. tangentMode: 136
  985. weightedMode: 0
  986. inWeight: 0.33333334
  987. outWeight: 0.33333334
  988. - serializedVersion: 3
  989. time: 1
  990. value: 25
  991. inSlope: 0
  992. outSlope: 0
  993. tangentMode: 136
  994. weightedMode: 0
  995. inWeight: 0.33333334
  996. outWeight: 0.33333334
  997. m_PreInfinity: 2
  998. m_PostInfinity: 2
  999. m_RotationOrder: 4
  1000. attribute: m_AnchoredPosition.x
  1001. path: Root/auto/s2
  1002. classID: 224
  1003. script: {fileID: 0}
  1004. - curve:
  1005. serializedVersion: 2
  1006. m_Curve:
  1007. - serializedVersion: 3
  1008. time: 0
  1009. value: 22.8
  1010. inSlope: 0
  1011. outSlope: 0
  1012. tangentMode: 136
  1013. weightedMode: 0
  1014. inWeight: 0.33333334
  1015. outWeight: 0.33333334
  1016. - serializedVersion: 3
  1017. time: 0.41666666
  1018. value: 0
  1019. inSlope: 0
  1020. outSlope: 0
  1021. tangentMode: 136
  1022. weightedMode: 0
  1023. inWeight: 0.33333334
  1024. outWeight: 0.33333334
  1025. - serializedVersion: 3
  1026. time: 1
  1027. value: 35
  1028. inSlope: 0
  1029. outSlope: 0
  1030. tangentMode: 136
  1031. weightedMode: 0
  1032. inWeight: 0.33333334
  1033. outWeight: 0.33333334
  1034. m_PreInfinity: 2
  1035. m_PostInfinity: 2
  1036. m_RotationOrder: 4
  1037. attribute: m_AnchoredPosition.y
  1038. path: Root/auto/s2
  1039. classID: 224
  1040. script: {fileID: 0}
  1041. - curve:
  1042. serializedVersion: 2
  1043. m_Curve:
  1044. - serializedVersion: 3
  1045. time: 0
  1046. value: -7.6
  1047. inSlope: 0
  1048. outSlope: 0
  1049. tangentMode: 136
  1050. weightedMode: 0
  1051. inWeight: 0.33333334
  1052. outWeight: 0.33333334
  1053. - serializedVersion: 3
  1054. time: 0.41666666
  1055. value: 4
  1056. inSlope: 0
  1057. outSlope: 0
  1058. tangentMode: 136
  1059. weightedMode: 0
  1060. inWeight: 0.33333334
  1061. outWeight: 0.33333334
  1062. - serializedVersion: 3
  1063. time: 1
  1064. value: -20
  1065. inSlope: 0
  1066. outSlope: 0
  1067. tangentMode: 136
  1068. weightedMode: 0
  1069. inWeight: 0.33333334
  1070. outWeight: 0.33333334
  1071. m_PreInfinity: 2
  1072. m_PostInfinity: 2
  1073. m_RotationOrder: 4
  1074. attribute: m_AnchoredPosition.y
  1075. path: Root/auto/s3
  1076. classID: 224
  1077. script: {fileID: 0}
  1078. - curve:
  1079. serializedVersion: 2
  1080. m_Curve:
  1081. - serializedVersion: 3
  1082. time: 0
  1083. value: 2
  1084. inSlope: 0
  1085. outSlope: 0
  1086. tangentMode: 136
  1087. weightedMode: 0
  1088. inWeight: 0.33333334
  1089. outWeight: 0.33333334
  1090. - serializedVersion: 3
  1091. time: 0.41666666
  1092. value: 0
  1093. inSlope: -8
  1094. outSlope: -8
  1095. tangentMode: 136
  1096. weightedMode: 0
  1097. inWeight: 0.33333334
  1098. outWeight: 0.33333334
  1099. - serializedVersion: 3
  1100. time: 1
  1101. value: -60
  1102. inSlope: 0
  1103. outSlope: 0
  1104. tangentMode: 136
  1105. weightedMode: 0
  1106. inWeight: 0.33333334
  1107. outWeight: 0.33333334
  1108. m_PreInfinity: 2
  1109. m_PostInfinity: 2
  1110. m_RotationOrder: 4
  1111. attribute: m_AnchoredPosition.x
  1112. path: Root/auto/s3
  1113. classID: 224
  1114. script: {fileID: 0}
  1115. - curve:
  1116. serializedVersion: 2
  1117. m_Curve:
  1118. - serializedVersion: 3
  1119. time: 0
  1120. value: 4.4
  1121. inSlope: 0
  1122. outSlope: 0
  1123. tangentMode: 136
  1124. weightedMode: 0
  1125. inWeight: 0.33333334
  1126. outWeight: 0.33333334
  1127. - serializedVersion: 3
  1128. time: 0.41666666
  1129. value: 2
  1130. inSlope: 0
  1131. outSlope: 0
  1132. tangentMode: 136
  1133. weightedMode: 0
  1134. inWeight: 0.33333334
  1135. outWeight: 0.33333334
  1136. - serializedVersion: 3
  1137. time: 1
  1138. value: 52
  1139. inSlope: 0
  1140. outSlope: 0
  1141. tangentMode: 136
  1142. weightedMode: 0
  1143. inWeight: 0.33333334
  1144. outWeight: 0.33333334
  1145. m_PreInfinity: 2
  1146. m_PostInfinity: 2
  1147. m_RotationOrder: 4
  1148. attribute: m_AnchoredPosition.x
  1149. path: Root/auto/s4
  1150. classID: 224
  1151. script: {fileID: 0}
  1152. - curve:
  1153. serializedVersion: 2
  1154. m_Curve:
  1155. - serializedVersion: 3
  1156. time: 0
  1157. value: 6.6
  1158. inSlope: 0
  1159. outSlope: 0
  1160. tangentMode: 136
  1161. weightedMode: 0
  1162. inWeight: 0.33333334
  1163. outWeight: 0.33333334
  1164. - serializedVersion: 3
  1165. time: 0.41666666
  1166. value: -5
  1167. inSlope: -16.6
  1168. outSlope: -16.6
  1169. tangentMode: 136
  1170. weightedMode: 0
  1171. inWeight: 0.33333334
  1172. outWeight: 0.33333334
  1173. - serializedVersion: 3
  1174. time: 1
  1175. value: -10
  1176. inSlope: 0
  1177. outSlope: 0
  1178. tangentMode: 136
  1179. weightedMode: 0
  1180. inWeight: 0.33333334
  1181. outWeight: 0.33333334
  1182. m_PreInfinity: 2
  1183. m_PostInfinity: 2
  1184. m_RotationOrder: 4
  1185. attribute: m_AnchoredPosition.y
  1186. path: Root/auto/s4
  1187. classID: 224
  1188. script: {fileID: 0}
  1189. - curve:
  1190. serializedVersion: 2
  1191. m_Curve:
  1192. - serializedVersion: 3
  1193. time: 0
  1194. value: 1
  1195. inSlope: Infinity
  1196. outSlope: Infinity
  1197. tangentMode: 103
  1198. weightedMode: 0
  1199. inWeight: 0
  1200. outWeight: 0
  1201. m_PreInfinity: 2
  1202. m_PostInfinity: 2
  1203. m_RotationOrder: 4
  1204. attribute: m_IsActive
  1205. path: Root/blue
  1206. classID: 1
  1207. script: {fileID: 0}
  1208. m_PPtrCurves: []
  1209. m_SampleRate: 60
  1210. m_WrapMode: 0
  1211. m_Bounds:
  1212. m_Center: {x: 0, y: 0, z: 0}
  1213. m_Extent: {x: 0, y: 0, z: 0}
  1214. m_ClipBindingConstant:
  1215. genericBindings:
  1216. - serializedVersion: 2
  1217. path: 1213137843
  1218. attribute: 4
  1219. script: {fileID: 0}
  1220. typeID: 4
  1221. customType: 4
  1222. isPPtrCurve: 0
  1223. - serializedVersion: 2
  1224. path: 1184447539
  1225. attribute: 4
  1226. script: {fileID: 0}
  1227. typeID: 4
  1228. customType: 4
  1229. isPPtrCurve: 0
  1230. - serializedVersion: 2
  1231. path: 3131608183
  1232. attribute: 4
  1233. script: {fileID: 0}
  1234. typeID: 4
  1235. customType: 4
  1236. isPPtrCurve: 0
  1237. - serializedVersion: 2
  1238. path: 597810637
  1239. attribute: 4
  1240. script: {fileID: 0}
  1241. typeID: 4
  1242. customType: 4
  1243. isPPtrCurve: 0
  1244. - serializedVersion: 2
  1245. path: 1420225883
  1246. attribute: 4
  1247. script: {fileID: 0}
  1248. typeID: 4
  1249. customType: 4
  1250. isPPtrCurve: 0
  1251. - serializedVersion: 2
  1252. path: 3401742584
  1253. attribute: 4
  1254. script: {fileID: 0}
  1255. typeID: 4
  1256. customType: 4
  1257. isPPtrCurve: 0
  1258. - serializedVersion: 2
  1259. path: 3439108095
  1260. attribute: 3
  1261. script: {fileID: 0}
  1262. typeID: 4
  1263. customType: 0
  1264. isPPtrCurve: 0
  1265. - serializedVersion: 2
  1266. path: 3066451557
  1267. attribute: 3
  1268. script: {fileID: 0}
  1269. typeID: 4
  1270. customType: 0
  1271. isPPtrCurve: 0
  1272. - serializedVersion: 2
  1273. path: 3131608183
  1274. attribute: 3
  1275. script: {fileID: 0}
  1276. typeID: 4
  1277. customType: 0
  1278. isPPtrCurve: 0
  1279. - serializedVersion: 2
  1280. path: 597810637
  1281. attribute: 3
  1282. script: {fileID: 0}
  1283. typeID: 4
  1284. customType: 0
  1285. isPPtrCurve: 0
  1286. - serializedVersion: 2
  1287. path: 3401742584
  1288. attribute: 3
  1289. script: {fileID: 0}
  1290. typeID: 4
  1291. customType: 0
  1292. isPPtrCurve: 0
  1293. - serializedVersion: 2
  1294. path: 4215423233
  1295. attribute: 2086281974
  1296. script: {fileID: 0}
  1297. typeID: 1
  1298. customType: 0
  1299. isPPtrCurve: 0
  1300. - serializedVersion: 2
  1301. path: 1630526828
  1302. attribute: 2086281974
  1303. script: {fileID: 0}
  1304. typeID: 1
  1305. customType: 0
  1306. isPPtrCurve: 0
  1307. - serializedVersion: 2
  1308. path: 1514471073
  1309. attribute: 2086281974
  1310. script: {fileID: 0}
  1311. typeID: 1
  1312. customType: 0
  1313. isPPtrCurve: 0
  1314. - serializedVersion: 2
  1315. path: 3439108095
  1316. attribute: 304273561
  1317. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1318. typeID: 114
  1319. customType: 0
  1320. isPPtrCurve: 0
  1321. - serializedVersion: 2
  1322. path: 3131608183
  1323. attribute: 304273561
  1324. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1325. typeID: 114
  1326. customType: 0
  1327. isPPtrCurve: 0
  1328. - serializedVersion: 2
  1329. path: 597810637
  1330. attribute: 304273561
  1331. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1332. typeID: 114
  1333. customType: 0
  1334. isPPtrCurve: 0
  1335. - serializedVersion: 2
  1336. path: 1420225883
  1337. attribute: 304273561
  1338. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1339. typeID: 114
  1340. customType: 0
  1341. isPPtrCurve: 0
  1342. - serializedVersion: 2
  1343. path: 3401742584
  1344. attribute: 304273561
  1345. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1346. typeID: 114
  1347. customType: 0
  1348. isPPtrCurve: 0
  1349. - serializedVersion: 2
  1350. path: 1184447539
  1351. attribute: 1460864421
  1352. script: {fileID: 0}
  1353. typeID: 224
  1354. customType: 28
  1355. isPPtrCurve: 0
  1356. - serializedVersion: 2
  1357. path: 1213137843
  1358. attribute: 1460864421
  1359. script: {fileID: 0}
  1360. typeID: 224
  1361. customType: 28
  1362. isPPtrCurve: 0
  1363. - serializedVersion: 2
  1364. path: 751694875
  1365. attribute: 2086281974
  1366. script: {fileID: 0}
  1367. typeID: 1
  1368. customType: 0
  1369. isPPtrCurve: 0
  1370. - serializedVersion: 2
  1371. path: 1540015245
  1372. attribute: 2086281974
  1373. script: {fileID: 0}
  1374. typeID: 1
  1375. customType: 0
  1376. isPPtrCurve: 0
  1377. - serializedVersion: 2
  1378. path: 3267597623
  1379. attribute: 2086281974
  1380. script: {fileID: 0}
  1381. typeID: 1
  1382. customType: 0
  1383. isPPtrCurve: 0
  1384. - serializedVersion: 2
  1385. path: 3131608183
  1386. attribute: 1460864421
  1387. script: {fileID: 0}
  1388. typeID: 224
  1389. customType: 28
  1390. isPPtrCurve: 0
  1391. - serializedVersion: 2
  1392. path: 3131608183
  1393. attribute: 538195251
  1394. script: {fileID: 0}
  1395. typeID: 224
  1396. customType: 28
  1397. isPPtrCurve: 0
  1398. - serializedVersion: 2
  1399. path: 597810637
  1400. attribute: 1460864421
  1401. script: {fileID: 0}
  1402. typeID: 224
  1403. customType: 28
  1404. isPPtrCurve: 0
  1405. - serializedVersion: 2
  1406. path: 597810637
  1407. attribute: 538195251
  1408. script: {fileID: 0}
  1409. typeID: 224
  1410. customType: 28
  1411. isPPtrCurve: 0
  1412. - serializedVersion: 2
  1413. path: 1420225883
  1414. attribute: 538195251
  1415. script: {fileID: 0}
  1416. typeID: 224
  1417. customType: 28
  1418. isPPtrCurve: 0
  1419. - serializedVersion: 2
  1420. path: 1420225883
  1421. attribute: 1460864421
  1422. script: {fileID: 0}
  1423. typeID: 224
  1424. customType: 28
  1425. isPPtrCurve: 0
  1426. - serializedVersion: 2
  1427. path: 3401742584
  1428. attribute: 1460864421
  1429. script: {fileID: 0}
  1430. typeID: 224
  1431. customType: 28
  1432. isPPtrCurve: 0
  1433. - serializedVersion: 2
  1434. path: 3401742584
  1435. attribute: 538195251
  1436. script: {fileID: 0}
  1437. typeID: 224
  1438. customType: 28
  1439. isPPtrCurve: 0
  1440. - serializedVersion: 2
  1441. path: 2731020783
  1442. attribute: 2086281974
  1443. script: {fileID: 0}
  1444. typeID: 1
  1445. customType: 0
  1446. isPPtrCurve: 0
  1447. pptrCurveMapping: []
  1448. m_AnimationClipSettings:
  1449. serializedVersion: 2
  1450. m_AdditiveReferencePoseClip: {fileID: 0}
  1451. m_AdditiveReferencePoseTime: 0
  1452. m_StartTime: 0
  1453. m_StopTime: 1
  1454. m_OrientationOffsetY: 0
  1455. m_Level: 0
  1456. m_CycleOffset: 0
  1457. m_HasAdditiveReferencePose: 0
  1458. m_LoopTime: 1
  1459. m_LoopBlend: 0
  1460. m_LoopBlendOrientation: 0
  1461. m_LoopBlendPositionY: 0
  1462. m_LoopBlendPositionXZ: 0
  1463. m_KeepOriginalOrientation: 0
  1464. m_KeepOriginalPositionY: 1
  1465. m_KeepOriginalPositionXZ: 0
  1466. m_HeightFromFeet: 0
  1467. m_Mirror: 0
  1468. m_EditorCurves:
  1469. - curve:
  1470. serializedVersion: 2
  1471. m_Curve:
  1472. - serializedVersion: 3
  1473. time: 0
  1474. value: 1
  1475. inSlope: Infinity
  1476. outSlope: Infinity
  1477. tangentMode: 103
  1478. weightedMode: 0
  1479. inWeight: 0
  1480. outWeight: 0
  1481. m_PreInfinity: 2
  1482. m_PostInfinity: 2
  1483. m_RotationOrder: 4
  1484. attribute: m_IsActive
  1485. path: TextAutoIn
  1486. classID: 1
  1487. script: {fileID: 0}
  1488. - curve:
  1489. serializedVersion: 2
  1490. m_Curve:
  1491. - serializedVersion: 3
  1492. time: 0
  1493. value: 0
  1494. inSlope: Infinity
  1495. outSlope: Infinity
  1496. tangentMode: 103
  1497. weightedMode: 0
  1498. inWeight: 0
  1499. outWeight: 0
  1500. m_PreInfinity: 2
  1501. m_PostInfinity: 2
  1502. m_RotationOrder: 4
  1503. attribute: m_IsActive
  1504. path: TextAuto
  1505. classID: 1
  1506. script: {fileID: 0}
  1507. - curve:
  1508. serializedVersion: 2
  1509. m_Curve:
  1510. - serializedVersion: 3
  1511. time: 0
  1512. value: 1
  1513. inSlope: Infinity
  1514. outSlope: Infinity
  1515. tangentMode: 103
  1516. weightedMode: 0
  1517. inWeight: 0
  1518. outWeight: 0
  1519. m_PreInfinity: 2
  1520. m_PostInfinity: 2
  1521. m_RotationOrder: 4
  1522. attribute: m_IsActive
  1523. path: Root/auto
  1524. classID: 1
  1525. script: {fileID: 0}
  1526. - curve:
  1527. serializedVersion: 2
  1528. m_Curve:
  1529. - serializedVersion: 3
  1530. time: 0
  1531. value: 0
  1532. inSlope: 0
  1533. outSlope: 0
  1534. tangentMode: 136
  1535. weightedMode: 0
  1536. inWeight: 0.33333334
  1537. outWeight: 0.33333334
  1538. - serializedVersion: 3
  1539. time: 0.33333334
  1540. value: 0
  1541. inSlope: 0
  1542. outSlope: 0
  1543. tangentMode: 136
  1544. weightedMode: 0
  1545. inWeight: 0.33333334
  1546. outWeight: 0.33333334
  1547. - serializedVersion: 3
  1548. time: 0.41666666
  1549. value: 0
  1550. inSlope: 0
  1551. outSlope: 0
  1552. tangentMode: 136
  1553. weightedMode: 0
  1554. inWeight: 0.33333334
  1555. outWeight: 0.33333334
  1556. - serializedVersion: 3
  1557. time: 0.5
  1558. value: 0
  1559. inSlope: 0
  1560. outSlope: 0
  1561. tangentMode: 136
  1562. weightedMode: 0
  1563. inWeight: 0.33333334
  1564. outWeight: 0.33333334
  1565. m_PreInfinity: 2
  1566. m_PostInfinity: 2
  1567. m_RotationOrder: 4
  1568. attribute: localEulerAnglesRaw.x
  1569. path: Root/right
  1570. classID: 224
  1571. script: {fileID: 0}
  1572. - curve:
  1573. serializedVersion: 2
  1574. m_Curve:
  1575. - serializedVersion: 3
  1576. time: 0
  1577. value: 0
  1578. inSlope: 0
  1579. outSlope: 0
  1580. tangentMode: 136
  1581. weightedMode: 0
  1582. inWeight: 0.33333334
  1583. outWeight: 0.33333334
  1584. - serializedVersion: 3
  1585. time: 0.33333334
  1586. value: 0
  1587. inSlope: 0
  1588. outSlope: 0
  1589. tangentMode: 136
  1590. weightedMode: 0
  1591. inWeight: 0.33333334
  1592. outWeight: 0.33333334
  1593. - serializedVersion: 3
  1594. time: 0.41666666
  1595. value: 0
  1596. inSlope: 0
  1597. outSlope: 0
  1598. tangentMode: 136
  1599. weightedMode: 0
  1600. inWeight: 0.33333334
  1601. outWeight: 0.33333334
  1602. - serializedVersion: 3
  1603. time: 0.5
  1604. value: 0
  1605. inSlope: 0
  1606. outSlope: 0
  1607. tangentMode: 136
  1608. weightedMode: 0
  1609. inWeight: 0.33333334
  1610. outWeight: 0.33333334
  1611. m_PreInfinity: 2
  1612. m_PostInfinity: 2
  1613. m_RotationOrder: 4
  1614. attribute: localEulerAnglesRaw.y
  1615. path: Root/right
  1616. classID: 224
  1617. script: {fileID: 0}
  1618. - curve:
  1619. serializedVersion: 2
  1620. m_Curve:
  1621. - serializedVersion: 3
  1622. time: 0
  1623. value: 45
  1624. inSlope: 0
  1625. outSlope: 0
  1626. tangentMode: 136
  1627. weightedMode: 0
  1628. inWeight: 0.33333334
  1629. outWeight: 0.33333334
  1630. - serializedVersion: 3
  1631. time: 0.33333334
  1632. value: 10
  1633. inSlope: 0
  1634. outSlope: 0
  1635. tangentMode: 136
  1636. weightedMode: 0
  1637. inWeight: 0.33333334
  1638. outWeight: 0.33333334
  1639. - serializedVersion: 3
  1640. time: 0.41666666
  1641. value: 50
  1642. inSlope: 0
  1643. outSlope: 0
  1644. tangentMode: 136
  1645. weightedMode: 0
  1646. inWeight: 0.33333334
  1647. outWeight: 0.33333334
  1648. - serializedVersion: 3
  1649. time: 0.5
  1650. value: 45
  1651. inSlope: 0
  1652. outSlope: 0
  1653. tangentMode: 136
  1654. weightedMode: 0
  1655. inWeight: 0.33333334
  1656. outWeight: 0.33333334
  1657. m_PreInfinity: 2
  1658. m_PostInfinity: 2
  1659. m_RotationOrder: 4
  1660. attribute: localEulerAnglesRaw.z
  1661. path: Root/right
  1662. classID: 224
  1663. script: {fileID: 0}
  1664. - curve:
  1665. serializedVersion: 2
  1666. m_Curve:
  1667. - serializedVersion: 3
  1668. time: 0
  1669. value: 0
  1670. inSlope: 0
  1671. outSlope: 0
  1672. tangentMode: 136
  1673. weightedMode: 0
  1674. inWeight: 0.33333334
  1675. outWeight: 0.33333334
  1676. - serializedVersion: 3
  1677. time: 0.33333334
  1678. value: 0
  1679. inSlope: 0
  1680. outSlope: 0
  1681. tangentMode: 136
  1682. weightedMode: 0
  1683. inWeight: 0.33333334
  1684. outWeight: 0.33333334
  1685. - serializedVersion: 3
  1686. time: 0.41666666
  1687. value: 0
  1688. inSlope: 0
  1689. outSlope: 0
  1690. tangentMode: 136
  1691. weightedMode: 0
  1692. inWeight: 0.33333334
  1693. outWeight: 0.33333334
  1694. - serializedVersion: 3
  1695. time: 0.5
  1696. value: 0
  1697. inSlope: 0
  1698. outSlope: 0
  1699. tangentMode: 136
  1700. weightedMode: 0
  1701. inWeight: 0.33333334
  1702. outWeight: 0.33333334
  1703. m_PreInfinity: 2
  1704. m_PostInfinity: 2
  1705. m_RotationOrder: 4
  1706. attribute: localEulerAnglesRaw.x
  1707. path: Root/left
  1708. classID: 224
  1709. script: {fileID: 0}
  1710. - curve:
  1711. serializedVersion: 2
  1712. m_Curve:
  1713. - serializedVersion: 3
  1714. time: 0
  1715. value: 0
  1716. inSlope: 0
  1717. outSlope: 0
  1718. tangentMode: 136
  1719. weightedMode: 0
  1720. inWeight: 0.33333334
  1721. outWeight: 0.33333334
  1722. - serializedVersion: 3
  1723. time: 0.33333334
  1724. value: 0
  1725. inSlope: 0
  1726. outSlope: 0
  1727. tangentMode: 136
  1728. weightedMode: 0
  1729. inWeight: 0.33333334
  1730. outWeight: 0.33333334
  1731. - serializedVersion: 3
  1732. time: 0.41666666
  1733. value: 0
  1734. inSlope: 0
  1735. outSlope: 0
  1736. tangentMode: 136
  1737. weightedMode: 0
  1738. inWeight: 0.33333334
  1739. outWeight: 0.33333334
  1740. - serializedVersion: 3
  1741. time: 0.5
  1742. value: 0
  1743. inSlope: 0
  1744. outSlope: 0
  1745. tangentMode: 136
  1746. weightedMode: 0
  1747. inWeight: 0.33333334
  1748. outWeight: 0.33333334
  1749. m_PreInfinity: 2
  1750. m_PostInfinity: 2
  1751. m_RotationOrder: 4
  1752. attribute: localEulerAnglesRaw.y
  1753. path: Root/left
  1754. classID: 224
  1755. script: {fileID: 0}
  1756. - curve:
  1757. serializedVersion: 2
  1758. m_Curve:
  1759. - serializedVersion: 3
  1760. time: 0
  1761. value: -45
  1762. inSlope: 0
  1763. outSlope: 0
  1764. tangentMode: 136
  1765. weightedMode: 0
  1766. inWeight: 0.33333334
  1767. outWeight: 0.33333334
  1768. - serializedVersion: 3
  1769. time: 0.33333334
  1770. value: -10
  1771. inSlope: 0
  1772. outSlope: 0
  1773. tangentMode: 136
  1774. weightedMode: 0
  1775. inWeight: 0.33333334
  1776. outWeight: 0.33333334
  1777. - serializedVersion: 3
  1778. time: 0.41666666
  1779. value: -50
  1780. inSlope: 0
  1781. outSlope: 0
  1782. tangentMode: 136
  1783. weightedMode: 0
  1784. inWeight: 0.33333334
  1785. outWeight: 0.33333334
  1786. - serializedVersion: 3
  1787. time: 0.5
  1788. value: -45
  1789. inSlope: 0
  1790. outSlope: 0
  1791. tangentMode: 136
  1792. weightedMode: 0
  1793. inWeight: 0.33333334
  1794. outWeight: 0.33333334
  1795. m_PreInfinity: 2
  1796. m_PostInfinity: 2
  1797. m_RotationOrder: 4
  1798. attribute: localEulerAnglesRaw.z
  1799. path: Root/left
  1800. classID: 224
  1801. script: {fileID: 0}
  1802. - curve:
  1803. serializedVersion: 2
  1804. m_Curve:
  1805. - serializedVersion: 3
  1806. time: 0
  1807. value: 0
  1808. inSlope: 0
  1809. outSlope: 0
  1810. tangentMode: 136
  1811. weightedMode: 0
  1812. inWeight: 0.33333334
  1813. outWeight: 0.33333334
  1814. - serializedVersion: 3
  1815. time: 0.33333334
  1816. value: 0
  1817. inSlope: 0
  1818. outSlope: 0
  1819. tangentMode: 136
  1820. weightedMode: 0
  1821. inWeight: 0.33333334
  1822. outWeight: 0.33333334
  1823. - serializedVersion: 3
  1824. time: 0.41666666
  1825. value: 0.5
  1826. inSlope: 2.25
  1827. outSlope: 2.25
  1828. tangentMode: 136
  1829. weightedMode: 0
  1830. inWeight: 0.33333334
  1831. outWeight: 0.33333334
  1832. - serializedVersion: 3
  1833. time: 1
  1834. value: 1.5
  1835. inSlope: 0
  1836. outSlope: 0
  1837. tangentMode: 136
  1838. weightedMode: 0
  1839. inWeight: 0.33333334
  1840. outWeight: 0.33333334
  1841. m_PreInfinity: 2
  1842. m_PostInfinity: 2
  1843. m_RotationOrder: 4
  1844. attribute: m_LocalScale.x
  1845. path: Root/auto/ball
  1846. classID: 224
  1847. script: {fileID: 0}
  1848. - curve:
  1849. serializedVersion: 2
  1850. m_Curve:
  1851. - serializedVersion: 3
  1852. time: 0
  1853. value: 0
  1854. inSlope: 0
  1855. outSlope: 0
  1856. tangentMode: 136
  1857. weightedMode: 0
  1858. inWeight: 0.33333334
  1859. outWeight: 0.33333334
  1860. - serializedVersion: 3
  1861. time: 0.33333334
  1862. value: 0
  1863. inSlope: 0
  1864. outSlope: 0
  1865. tangentMode: 136
  1866. weightedMode: 0
  1867. inWeight: 0.33333334
  1868. outWeight: 0.33333334
  1869. - serializedVersion: 3
  1870. time: 0.41666666
  1871. value: 0.5
  1872. inSlope: 2.25
  1873. outSlope: 2.25
  1874. tangentMode: 136
  1875. weightedMode: 0
  1876. inWeight: 0.33333334
  1877. outWeight: 0.33333334
  1878. - serializedVersion: 3
  1879. time: 1
  1880. value: 1.5
  1881. inSlope: 0
  1882. outSlope: 0
  1883. tangentMode: 136
  1884. weightedMode: 0
  1885. inWeight: 0.33333334
  1886. outWeight: 0.33333334
  1887. m_PreInfinity: 2
  1888. m_PostInfinity: 2
  1889. m_RotationOrder: 4
  1890. attribute: m_LocalScale.y
  1891. path: Root/auto/ball
  1892. classID: 224
  1893. script: {fileID: 0}
  1894. - curve:
  1895. serializedVersion: 2
  1896. m_Curve:
  1897. - serializedVersion: 3
  1898. time: 0
  1899. value: 1
  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.33333334
  1908. value: 1
  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.41666666
  1917. value: 1
  1918. inSlope: 0
  1919. outSlope: 0
  1920. tangentMode: 136
  1921. weightedMode: 0
  1922. inWeight: 0.33333334
  1923. outWeight: 0.33333334
  1924. - serializedVersion: 3
  1925. time: 1
  1926. value: 1
  1927. inSlope: 0
  1928. outSlope: 0
  1929. tangentMode: 136
  1930. weightedMode: 0
  1931. inWeight: 0.33333334
  1932. outWeight: 0.33333334
  1933. m_PreInfinity: 2
  1934. m_PostInfinity: 2
  1935. m_RotationOrder: 4
  1936. attribute: m_LocalScale.z
  1937. path: Root/auto/ball
  1938. classID: 224
  1939. script: {fileID: 0}
  1940. - curve:
  1941. serializedVersion: 2
  1942. m_Curve:
  1943. - serializedVersion: 3
  1944. time: 0
  1945. value: 0
  1946. inSlope: 0
  1947. outSlope: 0
  1948. tangentMode: 136
  1949. weightedMode: 0
  1950. inWeight: 0.33333334
  1951. outWeight: 0.33333334
  1952. - serializedVersion: 3
  1953. time: 0.33333334
  1954. value: 0
  1955. inSlope: 0
  1956. outSlope: 0
  1957. tangentMode: 136
  1958. weightedMode: 0
  1959. inWeight: 0.33333334
  1960. outWeight: 0.33333334
  1961. - serializedVersion: 3
  1962. time: 0.41666666
  1963. value: 1
  1964. inSlope: 0
  1965. outSlope: 0
  1966. tangentMode: 136
  1967. weightedMode: 0
  1968. inWeight: 0.33333334
  1969. outWeight: 0.33333334
  1970. - serializedVersion: 3
  1971. time: 1
  1972. value: 0
  1973. inSlope: 0
  1974. outSlope: 0
  1975. tangentMode: 136
  1976. weightedMode: 0
  1977. inWeight: 0.33333334
  1978. outWeight: 0.33333334
  1979. m_PreInfinity: 2
  1980. m_PostInfinity: 2
  1981. m_RotationOrder: 4
  1982. attribute: m_Color.a
  1983. path: Root/auto/ball
  1984. classID: 114
  1985. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1986. - curve:
  1987. serializedVersion: 2
  1988. m_Curve:
  1989. - serializedVersion: 3
  1990. time: 0
  1991. value: 0
  1992. inSlope: 0
  1993. outSlope: 0
  1994. tangentMode: 136
  1995. weightedMode: 0
  1996. inWeight: 0.33333334
  1997. outWeight: 0.33333334
  1998. - serializedVersion: 3
  1999. time: 0.33333334
  2000. value: 0
  2001. inSlope: 0
  2002. outSlope: 0
  2003. tangentMode: 136
  2004. weightedMode: 0
  2005. inWeight: 0.33333334
  2006. outWeight: 0.33333334
  2007. - serializedVersion: 3
  2008. time: 0.41666666
  2009. value: 1
  2010. inSlope: 0
  2011. outSlope: 0
  2012. tangentMode: 136
  2013. weightedMode: 0
  2014. inWeight: 0.33333334
  2015. outWeight: 0.33333334
  2016. - serializedVersion: 3
  2017. time: 1
  2018. value: 0
  2019. inSlope: 0
  2020. outSlope: 0
  2021. tangentMode: 136
  2022. weightedMode: 0
  2023. inWeight: 0.33333334
  2024. outWeight: 0.33333334
  2025. m_PreInfinity: 2
  2026. m_PostInfinity: 2
  2027. m_RotationOrder: 4
  2028. attribute: m_Color.a
  2029. path: Root/auto/s1
  2030. classID: 114
  2031. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2032. - curve:
  2033. serializedVersion: 2
  2034. m_Curve:
  2035. - serializedVersion: 3
  2036. time: 0
  2037. value: 0
  2038. inSlope: 0
  2039. outSlope: 0
  2040. tangentMode: 136
  2041. weightedMode: 0
  2042. inWeight: 0.33333334
  2043. outWeight: 0.33333334
  2044. - serializedVersion: 3
  2045. time: 0.33333334
  2046. value: 0
  2047. inSlope: 0
  2048. outSlope: 0
  2049. tangentMode: 136
  2050. weightedMode: 0
  2051. inWeight: 0.33333334
  2052. outWeight: 0.33333334
  2053. - serializedVersion: 3
  2054. time: 0.41666666
  2055. value: 1
  2056. inSlope: 0
  2057. outSlope: 0
  2058. tangentMode: 136
  2059. weightedMode: 0
  2060. inWeight: 0.33333334
  2061. outWeight: 0.33333334
  2062. - serializedVersion: 3
  2063. time: 1
  2064. value: 0
  2065. inSlope: 0
  2066. outSlope: 0
  2067. tangentMode: 136
  2068. weightedMode: 0
  2069. inWeight: 0.33333334
  2070. outWeight: 0.33333334
  2071. m_PreInfinity: 2
  2072. m_PostInfinity: 2
  2073. m_RotationOrder: 4
  2074. attribute: m_Color.a
  2075. path: Root/auto/s2
  2076. classID: 114
  2077. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2078. - curve:
  2079. serializedVersion: 2
  2080. m_Curve:
  2081. - serializedVersion: 3
  2082. time: 0
  2083. value: 0
  2084. inSlope: 0
  2085. outSlope: 0
  2086. tangentMode: 136
  2087. weightedMode: 0
  2088. inWeight: 0.33333334
  2089. outWeight: 0.33333334
  2090. - serializedVersion: 3
  2091. time: 0.33333334
  2092. value: 0
  2093. inSlope: 0
  2094. outSlope: 0
  2095. tangentMode: 136
  2096. weightedMode: 0
  2097. inWeight: 0.33333334
  2098. outWeight: 0.33333334
  2099. - serializedVersion: 3
  2100. time: 0.41666666
  2101. value: 1
  2102. inSlope: 0
  2103. outSlope: 0
  2104. tangentMode: 136
  2105. weightedMode: 0
  2106. inWeight: 0.33333334
  2107. outWeight: 0.33333334
  2108. - serializedVersion: 3
  2109. time: 1
  2110. value: 0
  2111. inSlope: 0
  2112. outSlope: 0
  2113. tangentMode: 136
  2114. weightedMode: 0
  2115. inWeight: 0.33333334
  2116. outWeight: 0.33333334
  2117. m_PreInfinity: 2
  2118. m_PostInfinity: 2
  2119. m_RotationOrder: 4
  2120. attribute: m_Color.a
  2121. path: Root/auto/s3
  2122. classID: 114
  2123. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2124. - curve:
  2125. serializedVersion: 2
  2126. m_Curve:
  2127. - serializedVersion: 3
  2128. time: 0
  2129. value: 0
  2130. inSlope: 0
  2131. outSlope: 0
  2132. tangentMode: 136
  2133. weightedMode: 0
  2134. inWeight: 0.33333334
  2135. outWeight: 0.33333334
  2136. - serializedVersion: 3
  2137. time: 0.33333334
  2138. value: 0
  2139. inSlope: 0
  2140. outSlope: 0
  2141. tangentMode: 136
  2142. weightedMode: 0
  2143. inWeight: 0.33333334
  2144. outWeight: 0.33333334
  2145. - serializedVersion: 3
  2146. time: 0.41666666
  2147. value: 1
  2148. inSlope: 0
  2149. outSlope: 0
  2150. tangentMode: 136
  2151. weightedMode: 0
  2152. inWeight: 0.33333334
  2153. outWeight: 0.33333334
  2154. - serializedVersion: 3
  2155. time: 1
  2156. value: 0
  2157. inSlope: 0
  2158. outSlope: 0
  2159. tangentMode: 136
  2160. weightedMode: 0
  2161. inWeight: 0.33333334
  2162. outWeight: 0.33333334
  2163. m_PreInfinity: 2
  2164. m_PostInfinity: 2
  2165. m_RotationOrder: 4
  2166. attribute: m_Color.a
  2167. path: Root/auto/s4
  2168. classID: 114
  2169. script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2170. - curve:
  2171. serializedVersion: 2
  2172. m_Curve:
  2173. - serializedVersion: 3
  2174. time: 0
  2175. value: 1
  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: 0.33333334
  2184. value: 1.2
  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: 0.41666666
  2193. value: 0.9
  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: 0.5
  2202. value: 1
  2203. inSlope: 0
  2204. outSlope: 0
  2205. tangentMode: 136
  2206. weightedMode: 0
  2207. inWeight: 0.33333334
  2208. outWeight: 0.33333334
  2209. m_PreInfinity: 2
  2210. m_PostInfinity: 2
  2211. m_RotationOrder: 4
  2212. attribute: m_LocalScale.x
  2213. path: Root
  2214. classID: 224
  2215. script: {fileID: 0}
  2216. - curve:
  2217. serializedVersion: 2
  2218. m_Curve:
  2219. - serializedVersion: 3
  2220. time: 0
  2221. value: 1
  2222. inSlope: 0
  2223. outSlope: 0
  2224. tangentMode: 136
  2225. weightedMode: 0
  2226. inWeight: 0.33333334
  2227. outWeight: 0.33333334
  2228. - serializedVersion: 3
  2229. time: 0.33333334
  2230. value: 1.2
  2231. inSlope: 0
  2232. outSlope: 0
  2233. tangentMode: 136
  2234. weightedMode: 0
  2235. inWeight: 0.33333334
  2236. outWeight: 0.33333334
  2237. - serializedVersion: 3
  2238. time: 0.41666666
  2239. value: 0.9
  2240. inSlope: 0
  2241. outSlope: 0
  2242. tangentMode: 136
  2243. weightedMode: 0
  2244. inWeight: 0.33333334
  2245. outWeight: 0.33333334
  2246. - serializedVersion: 3
  2247. time: 0.5
  2248. value: 1
  2249. inSlope: 0
  2250. outSlope: 0
  2251. tangentMode: 136
  2252. weightedMode: 0
  2253. inWeight: 0.33333334
  2254. outWeight: 0.33333334
  2255. m_PreInfinity: 2
  2256. m_PostInfinity: 2
  2257. m_RotationOrder: 4
  2258. attribute: m_LocalScale.y
  2259. path: Root
  2260. classID: 224
  2261. script: {fileID: 0}
  2262. - curve:
  2263. serializedVersion: 2
  2264. m_Curve:
  2265. - serializedVersion: 3
  2266. time: 0
  2267. value: 1
  2268. inSlope: 0
  2269. outSlope: 0
  2270. tangentMode: 136
  2271. weightedMode: 0
  2272. inWeight: 0.33333334
  2273. outWeight: 0.33333334
  2274. - serializedVersion: 3
  2275. time: 0.33333334
  2276. value: 1
  2277. inSlope: 0
  2278. outSlope: 0
  2279. tangentMode: 136
  2280. weightedMode: 0
  2281. inWeight: 0.33333334
  2282. outWeight: 0.33333334
  2283. - serializedVersion: 3
  2284. time: 0.41666666
  2285. value: 1
  2286. inSlope: 0
  2287. outSlope: 0
  2288. tangentMode: 136
  2289. weightedMode: 0
  2290. inWeight: 0.33333334
  2291. outWeight: 0.33333334
  2292. - serializedVersion: 3
  2293. time: 0.5
  2294. value: 1
  2295. inSlope: 0
  2296. outSlope: 0
  2297. tangentMode: 136
  2298. weightedMode: 0
  2299. inWeight: 0.33333334
  2300. outWeight: 0.33333334
  2301. m_PreInfinity: 2
  2302. m_PostInfinity: 2
  2303. m_RotationOrder: 4
  2304. attribute: m_LocalScale.z
  2305. path: Root
  2306. classID: 224
  2307. script: {fileID: 0}
  2308. - curve:
  2309. serializedVersion: 2
  2310. m_Curve:
  2311. - serializedVersion: 3
  2312. time: 0
  2313. value: -8
  2314. inSlope: 0
  2315. outSlope: 0
  2316. tangentMode: 136
  2317. weightedMode: 0
  2318. inWeight: 0.33333334
  2319. outWeight: 0.33333334
  2320. - serializedVersion: 3
  2321. time: 0.33333334
  2322. value: -20
  2323. inSlope: 0
  2324. outSlope: 0
  2325. tangentMode: 136
  2326. weightedMode: 0
  2327. inWeight: 0.33333334
  2328. outWeight: 0.33333334
  2329. - serializedVersion: 3
  2330. time: 0.41666666
  2331. value: -8
  2332. inSlope: 0
  2333. outSlope: 0
  2334. tangentMode: 136
  2335. weightedMode: 0
  2336. inWeight: 0.33333334
  2337. outWeight: 0.33333334
  2338. m_PreInfinity: 2
  2339. m_PostInfinity: 2
  2340. m_RotationOrder: 4
  2341. attribute: m_AnchoredPosition.x
  2342. path: Root/left
  2343. classID: 224
  2344. script: {fileID: 0}
  2345. - curve:
  2346. serializedVersion: 2
  2347. m_Curve:
  2348. - serializedVersion: 3
  2349. time: 0
  2350. value: 8
  2351. inSlope: 0
  2352. outSlope: 0
  2353. tangentMode: 136
  2354. weightedMode: 0
  2355. inWeight: 0.33333334
  2356. outWeight: 0.33333334
  2357. - serializedVersion: 3
  2358. time: 0.33333334
  2359. value: 20
  2360. inSlope: 0
  2361. outSlope: 0
  2362. tangentMode: 136
  2363. weightedMode: 0
  2364. inWeight: 0.33333334
  2365. outWeight: 0.33333334
  2366. - serializedVersion: 3
  2367. time: 0.41666666
  2368. value: 8
  2369. inSlope: 0
  2370. outSlope: 0
  2371. tangentMode: 136
  2372. weightedMode: 0
  2373. inWeight: 0.33333334
  2374. outWeight: 0.33333334
  2375. m_PreInfinity: 2
  2376. m_PostInfinity: 2
  2377. m_RotationOrder: 4
  2378. attribute: m_AnchoredPosition.x
  2379. path: Root/right
  2380. classID: 224
  2381. script: {fileID: 0}
  2382. - curve:
  2383. serializedVersion: 2
  2384. m_Curve:
  2385. - serializedVersion: 3
  2386. time: 0
  2387. value: 0
  2388. inSlope: Infinity
  2389. outSlope: Infinity
  2390. tangentMode: 103
  2391. weightedMode: 0
  2392. inWeight: 0
  2393. outWeight: 0
  2394. - serializedVersion: 3
  2395. time: 0.5
  2396. value: 1
  2397. inSlope: Infinity
  2398. outSlope: Infinity
  2399. tangentMode: 103
  2400. weightedMode: 0
  2401. inWeight: 0
  2402. outWeight: 0
  2403. m_PreInfinity: 2
  2404. m_PostInfinity: 2
  2405. m_RotationOrder: 4
  2406. attribute: m_IsActive
  2407. path: TextAutoIn/p3
  2408. classID: 1
  2409. script: {fileID: 0}
  2410. - curve:
  2411. serializedVersion: 2
  2412. m_Curve:
  2413. - serializedVersion: 3
  2414. time: 0
  2415. value: 0
  2416. inSlope: Infinity
  2417. outSlope: Infinity
  2418. tangentMode: 103
  2419. weightedMode: 0
  2420. inWeight: 0
  2421. outWeight: 0
  2422. - serializedVersion: 3
  2423. time: 0.33333334
  2424. value: 1
  2425. inSlope: Infinity
  2426. outSlope: Infinity
  2427. tangentMode: 103
  2428. weightedMode: 0
  2429. inWeight: 0
  2430. outWeight: 0
  2431. - serializedVersion: 3
  2432. time: 0.5
  2433. value: 1
  2434. inSlope: Infinity
  2435. outSlope: Infinity
  2436. tangentMode: 103
  2437. weightedMode: 0
  2438. inWeight: 0
  2439. outWeight: 0
  2440. m_PreInfinity: 2
  2441. m_PostInfinity: 2
  2442. m_RotationOrder: 4
  2443. attribute: m_IsActive
  2444. path: TextAutoIn/p2
  2445. classID: 1
  2446. script: {fileID: 0}
  2447. - curve:
  2448. serializedVersion: 2
  2449. m_Curve:
  2450. - serializedVersion: 3
  2451. time: 0
  2452. value: 0
  2453. inSlope: Infinity
  2454. outSlope: Infinity
  2455. tangentMode: 103
  2456. weightedMode: 0
  2457. inWeight: 0
  2458. outWeight: 0
  2459. - serializedVersion: 3
  2460. time: 0.16666667
  2461. value: 1
  2462. inSlope: Infinity
  2463. outSlope: Infinity
  2464. tangentMode: 103
  2465. weightedMode: 0
  2466. inWeight: 0
  2467. outWeight: 0
  2468. - serializedVersion: 3
  2469. time: 0.33333334
  2470. value: 1
  2471. inSlope: Infinity
  2472. outSlope: Infinity
  2473. tangentMode: 103
  2474. weightedMode: 0
  2475. inWeight: 0
  2476. outWeight: 0
  2477. m_PreInfinity: 2
  2478. m_PostInfinity: 2
  2479. m_RotationOrder: 4
  2480. attribute: m_IsActive
  2481. path: TextAutoIn/p1
  2482. classID: 1
  2483. script: {fileID: 0}
  2484. - curve:
  2485. serializedVersion: 2
  2486. m_Curve:
  2487. - serializedVersion: 3
  2488. time: 0
  2489. value: 0
  2490. inSlope: 0
  2491. outSlope: 0
  2492. tangentMode: 136
  2493. weightedMode: 0
  2494. inWeight: 0.33333334
  2495. outWeight: 0.33333334
  2496. - serializedVersion: 3
  2497. time: 0.41666666
  2498. value: 0
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 136
  2502. weightedMode: 0
  2503. inWeight: 0.33333334
  2504. outWeight: 0.33333334
  2505. - serializedVersion: 3
  2506. time: 1
  2507. value: -74
  2508. inSlope: 0
  2509. outSlope: 0
  2510. tangentMode: 136
  2511. weightedMode: 0
  2512. inWeight: 0.33333334
  2513. outWeight: 0.33333334
  2514. m_PreInfinity: 2
  2515. m_PostInfinity: 2
  2516. m_RotationOrder: 4
  2517. attribute: m_AnchoredPosition.x
  2518. path: Root/auto/s1
  2519. classID: 224
  2520. script: {fileID: 0}
  2521. - curve:
  2522. serializedVersion: 2
  2523. m_Curve:
  2524. - serializedVersion: 3
  2525. time: 0
  2526. value: 0
  2527. inSlope: 0
  2528. outSlope: 0
  2529. tangentMode: 136
  2530. weightedMode: 0
  2531. inWeight: 0.33333334
  2532. outWeight: 0.33333334
  2533. - serializedVersion: 3
  2534. time: 0.41666666
  2535. value: 0
  2536. inSlope: 0
  2537. outSlope: 0
  2538. tangentMode: 136
  2539. weightedMode: 0
  2540. inWeight: 0.33333334
  2541. outWeight: 0.33333334
  2542. - serializedVersion: 3
  2543. time: 1
  2544. value: 46
  2545. inSlope: 0
  2546. outSlope: 0
  2547. tangentMode: 136
  2548. weightedMode: 0
  2549. inWeight: 0.33333334
  2550. outWeight: 0.33333334
  2551. m_PreInfinity: 2
  2552. m_PostInfinity: 2
  2553. m_RotationOrder: 4
  2554. attribute: m_AnchoredPosition.y
  2555. path: Root/auto/s1
  2556. classID: 224
  2557. script: {fileID: 0}
  2558. - curve:
  2559. serializedVersion: 2
  2560. m_Curve:
  2561. - serializedVersion: 3
  2562. time: 0
  2563. value: 0
  2564. inSlope: 0
  2565. outSlope: 0
  2566. tangentMode: 136
  2567. weightedMode: 0
  2568. inWeight: 0.33333334
  2569. outWeight: 0.33333334
  2570. - serializedVersion: 3
  2571. time: 0.41666666
  2572. value: 0
  2573. inSlope: 0
  2574. outSlope: 0
  2575. tangentMode: 136
  2576. weightedMode: 0
  2577. inWeight: 0.33333334
  2578. outWeight: 0.33333334
  2579. - serializedVersion: 3
  2580. time: 1
  2581. value: 0
  2582. inSlope: 0
  2583. outSlope: 0
  2584. tangentMode: 136
  2585. weightedMode: 0
  2586. inWeight: 0.33333334
  2587. outWeight: 0.33333334
  2588. m_PreInfinity: 2
  2589. m_PostInfinity: 2
  2590. m_RotationOrder: 4
  2591. attribute: localEulerAnglesRaw.x
  2592. path: Root/auto/s1
  2593. classID: 224
  2594. script: {fileID: 0}
  2595. - curve:
  2596. serializedVersion: 2
  2597. m_Curve:
  2598. - serializedVersion: 3
  2599. time: 0
  2600. value: 0
  2601. inSlope: 0
  2602. outSlope: 0
  2603. tangentMode: 136
  2604. weightedMode: 0
  2605. inWeight: 0.33333334
  2606. outWeight: 0.33333334
  2607. - serializedVersion: 3
  2608. time: 0.41666666
  2609. value: 0
  2610. inSlope: 0
  2611. outSlope: 0
  2612. tangentMode: 136
  2613. weightedMode: 0
  2614. inWeight: 0.33333334
  2615. outWeight: 0.33333334
  2616. - serializedVersion: 3
  2617. time: 1
  2618. value: 0
  2619. inSlope: 0
  2620. outSlope: 0
  2621. tangentMode: 136
  2622. weightedMode: 0
  2623. inWeight: 0.33333334
  2624. outWeight: 0.33333334
  2625. m_PreInfinity: 2
  2626. m_PostInfinity: 2
  2627. m_RotationOrder: 4
  2628. attribute: localEulerAnglesRaw.y
  2629. path: Root/auto/s1
  2630. classID: 224
  2631. script: {fileID: 0}
  2632. - curve:
  2633. serializedVersion: 2
  2634. m_Curve:
  2635. - serializedVersion: 3
  2636. time: 0
  2637. value: 0
  2638. inSlope: 0
  2639. outSlope: 0
  2640. tangentMode: 136
  2641. weightedMode: 0
  2642. inWeight: 0.33333334
  2643. outWeight: 0.33333334
  2644. - serializedVersion: 3
  2645. time: 0.41666666
  2646. value: 10
  2647. inSlope: 40.000004
  2648. outSlope: 40.000004
  2649. tangentMode: 136
  2650. weightedMode: 0
  2651. inWeight: 0.33333334
  2652. outWeight: 0.33333334
  2653. - serializedVersion: 3
  2654. time: 1
  2655. value: 300
  2656. inSlope: 0
  2657. outSlope: 0
  2658. tangentMode: 136
  2659. weightedMode: 0
  2660. inWeight: 0.33333334
  2661. outWeight: 0.33333334
  2662. m_PreInfinity: 2
  2663. m_PostInfinity: 2
  2664. m_RotationOrder: 4
  2665. attribute: localEulerAnglesRaw.z
  2666. path: Root/auto/s1
  2667. classID: 224
  2668. script: {fileID: 0}
  2669. - curve:
  2670. serializedVersion: 2
  2671. m_Curve:
  2672. - serializedVersion: 3
  2673. time: 0
  2674. value: 19.6
  2675. inSlope: 0
  2676. outSlope: 0
  2677. tangentMode: 136
  2678. weightedMode: 0
  2679. inWeight: 0.33333334
  2680. outWeight: 0.33333334
  2681. - serializedVersion: 3
  2682. time: 0.41666666
  2683. value: 0
  2684. inSlope: 0
  2685. outSlope: 0
  2686. tangentMode: 136
  2687. weightedMode: 0
  2688. inWeight: 0.33333334
  2689. outWeight: 0.33333334
  2690. - serializedVersion: 3
  2691. time: 1
  2692. value: 25
  2693. inSlope: 0
  2694. outSlope: 0
  2695. tangentMode: 136
  2696. weightedMode: 0
  2697. inWeight: 0.33333334
  2698. outWeight: 0.33333334
  2699. m_PreInfinity: 2
  2700. m_PostInfinity: 2
  2701. m_RotationOrder: 4
  2702. attribute: m_AnchoredPosition.x
  2703. path: Root/auto/s2
  2704. classID: 224
  2705. script: {fileID: 0}
  2706. - curve:
  2707. serializedVersion: 2
  2708. m_Curve:
  2709. - serializedVersion: 3
  2710. time: 0
  2711. value: 22.8
  2712. inSlope: 0
  2713. outSlope: 0
  2714. tangentMode: 136
  2715. weightedMode: 0
  2716. inWeight: 0.33333334
  2717. outWeight: 0.33333334
  2718. - serializedVersion: 3
  2719. time: 0.41666666
  2720. value: 0
  2721. inSlope: 0
  2722. outSlope: 0
  2723. tangentMode: 136
  2724. weightedMode: 0
  2725. inWeight: 0.33333334
  2726. outWeight: 0.33333334
  2727. - serializedVersion: 3
  2728. time: 1
  2729. value: 35
  2730. inSlope: 0
  2731. outSlope: 0
  2732. tangentMode: 136
  2733. weightedMode: 0
  2734. inWeight: 0.33333334
  2735. outWeight: 0.33333334
  2736. m_PreInfinity: 2
  2737. m_PostInfinity: 2
  2738. m_RotationOrder: 4
  2739. attribute: m_AnchoredPosition.y
  2740. path: Root/auto/s2
  2741. classID: 224
  2742. script: {fileID: 0}
  2743. - curve:
  2744. serializedVersion: 2
  2745. m_Curve:
  2746. - serializedVersion: 3
  2747. time: 0
  2748. value: 0
  2749. inSlope: 0
  2750. outSlope: 0
  2751. tangentMode: 136
  2752. weightedMode: 0
  2753. inWeight: 0.33333334
  2754. outWeight: 0.33333334
  2755. - serializedVersion: 3
  2756. time: 0.41666666
  2757. value: 0
  2758. inSlope: 0
  2759. outSlope: 0
  2760. tangentMode: 136
  2761. weightedMode: 0
  2762. inWeight: 0.33333334
  2763. outWeight: 0.33333334
  2764. - serializedVersion: 3
  2765. time: 1
  2766. value: 0
  2767. inSlope: 0
  2768. outSlope: 0
  2769. tangentMode: 136
  2770. weightedMode: 0
  2771. inWeight: 0.33333334
  2772. outWeight: 0.33333334
  2773. m_PreInfinity: 2
  2774. m_PostInfinity: 2
  2775. m_RotationOrder: 4
  2776. attribute: localEulerAnglesRaw.x
  2777. path: Root/auto/s2
  2778. classID: 224
  2779. script: {fileID: 0}
  2780. - curve:
  2781. serializedVersion: 2
  2782. m_Curve:
  2783. - serializedVersion: 3
  2784. time: 0
  2785. value: 0
  2786. inSlope: 0
  2787. outSlope: 0
  2788. tangentMode: 136
  2789. weightedMode: 0
  2790. inWeight: 0.33333334
  2791. outWeight: 0.33333334
  2792. - serializedVersion: 3
  2793. time: 0.41666666
  2794. value: 0
  2795. inSlope: 0
  2796. outSlope: 0
  2797. tangentMode: 136
  2798. weightedMode: 0
  2799. inWeight: 0.33333334
  2800. outWeight: 0.33333334
  2801. - serializedVersion: 3
  2802. time: 1
  2803. value: 0
  2804. inSlope: 0
  2805. outSlope: 0
  2806. tangentMode: 136
  2807. weightedMode: 0
  2808. inWeight: 0.33333334
  2809. outWeight: 0.33333334
  2810. m_PreInfinity: 2
  2811. m_PostInfinity: 2
  2812. m_RotationOrder: 4
  2813. attribute: localEulerAnglesRaw.y
  2814. path: Root/auto/s2
  2815. classID: 224
  2816. script: {fileID: 0}
  2817. - curve:
  2818. serializedVersion: 2
  2819. m_Curve:
  2820. - serializedVersion: 3
  2821. time: 0
  2822. value: 0
  2823. inSlope: 0
  2824. outSlope: 0
  2825. tangentMode: 136
  2826. weightedMode: 0
  2827. inWeight: 0.33333334
  2828. outWeight: 0.33333334
  2829. - serializedVersion: 3
  2830. time: 0.41666666
  2831. value: -30
  2832. inSlope: -120.00001
  2833. outSlope: -120.00001
  2834. tangentMode: 136
  2835. weightedMode: 0
  2836. inWeight: 0.33333334
  2837. outWeight: 0.33333334
  2838. - serializedVersion: 3
  2839. time: 1
  2840. value: -200
  2841. inSlope: 0
  2842. outSlope: 0
  2843. tangentMode: 136
  2844. weightedMode: 0
  2845. inWeight: 0.33333334
  2846. outWeight: 0.33333334
  2847. m_PreInfinity: 2
  2848. m_PostInfinity: 2
  2849. m_RotationOrder: 4
  2850. attribute: localEulerAnglesRaw.z
  2851. path: Root/auto/s2
  2852. classID: 224
  2853. script: {fileID: 0}
  2854. - curve:
  2855. serializedVersion: 2
  2856. m_Curve:
  2857. - serializedVersion: 3
  2858. time: 0
  2859. value: -7.6
  2860. inSlope: 0
  2861. outSlope: 0
  2862. tangentMode: 136
  2863. weightedMode: 0
  2864. inWeight: 0.33333334
  2865. outWeight: 0.33333334
  2866. - serializedVersion: 3
  2867. time: 0.41666666
  2868. value: 4
  2869. inSlope: 0
  2870. outSlope: 0
  2871. tangentMode: 136
  2872. weightedMode: 0
  2873. inWeight: 0.33333334
  2874. outWeight: 0.33333334
  2875. - serializedVersion: 3
  2876. time: 1
  2877. value: -20
  2878. inSlope: 0
  2879. outSlope: 0
  2880. tangentMode: 136
  2881. weightedMode: 0
  2882. inWeight: 0.33333334
  2883. outWeight: 0.33333334
  2884. m_PreInfinity: 2
  2885. m_PostInfinity: 2
  2886. m_RotationOrder: 4
  2887. attribute: m_AnchoredPosition.y
  2888. path: Root/auto/s3
  2889. classID: 224
  2890. script: {fileID: 0}
  2891. - curve:
  2892. serializedVersion: 2
  2893. m_Curve:
  2894. - serializedVersion: 3
  2895. time: 0
  2896. value: 2
  2897. inSlope: 0
  2898. outSlope: 0
  2899. tangentMode: 136
  2900. weightedMode: 0
  2901. inWeight: 0.33333334
  2902. outWeight: 0.33333334
  2903. - serializedVersion: 3
  2904. time: 0.41666666
  2905. value: 0
  2906. inSlope: -8
  2907. outSlope: -8
  2908. tangentMode: 136
  2909. weightedMode: 0
  2910. inWeight: 0.33333334
  2911. outWeight: 0.33333334
  2912. - serializedVersion: 3
  2913. time: 1
  2914. value: -60
  2915. inSlope: 0
  2916. outSlope: 0
  2917. tangentMode: 136
  2918. weightedMode: 0
  2919. inWeight: 0.33333334
  2920. outWeight: 0.33333334
  2921. m_PreInfinity: 2
  2922. m_PostInfinity: 2
  2923. m_RotationOrder: 4
  2924. attribute: m_AnchoredPosition.x
  2925. path: Root/auto/s3
  2926. classID: 224
  2927. script: {fileID: 0}
  2928. - curve:
  2929. serializedVersion: 2
  2930. m_Curve:
  2931. - serializedVersion: 3
  2932. time: 0
  2933. value: 0
  2934. inSlope: 0
  2935. outSlope: 0
  2936. tangentMode: 136
  2937. weightedMode: 0
  2938. inWeight: 0.33333334
  2939. outWeight: 0.33333334
  2940. - serializedVersion: 3
  2941. time: 0.41666666
  2942. value: 0
  2943. inSlope: 0
  2944. outSlope: 0
  2945. tangentMode: 136
  2946. weightedMode: 0
  2947. inWeight: 0.33333334
  2948. outWeight: 0.33333334
  2949. - serializedVersion: 3
  2950. time: 1
  2951. value: 0
  2952. inSlope: 0
  2953. outSlope: 0
  2954. tangentMode: 136
  2955. weightedMode: 0
  2956. inWeight: 0.33333334
  2957. outWeight: 0.33333334
  2958. m_PreInfinity: 2
  2959. m_PostInfinity: 2
  2960. m_RotationOrder: 4
  2961. attribute: localEulerAnglesRaw.x
  2962. path: Root/auto/s3
  2963. classID: 224
  2964. script: {fileID: 0}
  2965. - curve:
  2966. serializedVersion: 2
  2967. m_Curve:
  2968. - serializedVersion: 3
  2969. time: 0
  2970. value: 0
  2971. inSlope: 0
  2972. outSlope: 0
  2973. tangentMode: 136
  2974. weightedMode: 0
  2975. inWeight: 0.33333334
  2976. outWeight: 0.33333334
  2977. - serializedVersion: 3
  2978. time: 0.41666666
  2979. value: 0
  2980. inSlope: 0
  2981. outSlope: 0
  2982. tangentMode: 136
  2983. weightedMode: 0
  2984. inWeight: 0.33333334
  2985. outWeight: 0.33333334
  2986. - serializedVersion: 3
  2987. time: 1
  2988. value: 0
  2989. inSlope: 0
  2990. outSlope: 0
  2991. tangentMode: 136
  2992. weightedMode: 0
  2993. inWeight: 0.33333334
  2994. outWeight: 0.33333334
  2995. m_PreInfinity: 2
  2996. m_PostInfinity: 2
  2997. m_RotationOrder: 4
  2998. attribute: localEulerAnglesRaw.y
  2999. path: Root/auto/s3
  3000. classID: 224
  3001. script: {fileID: 0}
  3002. - curve:
  3003. serializedVersion: 2
  3004. m_Curve:
  3005. - serializedVersion: 3
  3006. time: 0
  3007. value: 0
  3008. inSlope: 0
  3009. outSlope: 0
  3010. tangentMode: 136
  3011. weightedMode: 0
  3012. inWeight: 0.33333334
  3013. outWeight: 0.33333334
  3014. - serializedVersion: 3
  3015. time: 0.41666666
  3016. value: 20
  3017. inSlope: 80
  3018. outSlope: 80
  3019. tangentMode: 136
  3020. weightedMode: 0
  3021. inWeight: 0.33333334
  3022. outWeight: 0.33333334
  3023. - serializedVersion: 3
  3024. time: 1
  3025. value: 520
  3026. inSlope: 0
  3027. outSlope: 0
  3028. tangentMode: 136
  3029. weightedMode: 0
  3030. inWeight: 0.33333334
  3031. outWeight: 0.33333334
  3032. m_PreInfinity: 2
  3033. m_PostInfinity: 2
  3034. m_RotationOrder: 4
  3035. attribute: localEulerAnglesRaw.z
  3036. path: Root/auto/s3
  3037. classID: 224
  3038. script: {fileID: 0}
  3039. - curve:
  3040. serializedVersion: 2
  3041. m_Curve:
  3042. - serializedVersion: 3
  3043. time: 0
  3044. value: 4.4
  3045. inSlope: 0
  3046. outSlope: 0
  3047. tangentMode: 136
  3048. weightedMode: 0
  3049. inWeight: 0.33333334
  3050. outWeight: 0.33333334
  3051. - serializedVersion: 3
  3052. time: 0.41666666
  3053. value: 2
  3054. inSlope: 0
  3055. outSlope: 0
  3056. tangentMode: 136
  3057. weightedMode: 0
  3058. inWeight: 0.33333334
  3059. outWeight: 0.33333334
  3060. - serializedVersion: 3
  3061. time: 1
  3062. value: 52
  3063. inSlope: 0
  3064. outSlope: 0
  3065. tangentMode: 136
  3066. weightedMode: 0
  3067. inWeight: 0.33333334
  3068. outWeight: 0.33333334
  3069. m_PreInfinity: 2
  3070. m_PostInfinity: 2
  3071. m_RotationOrder: 4
  3072. attribute: m_AnchoredPosition.x
  3073. path: Root/auto/s4
  3074. classID: 224
  3075. script: {fileID: 0}
  3076. - curve:
  3077. serializedVersion: 2
  3078. m_Curve:
  3079. - serializedVersion: 3
  3080. time: 0
  3081. value: 6.6
  3082. inSlope: 0
  3083. outSlope: 0
  3084. tangentMode: 136
  3085. weightedMode: 0
  3086. inWeight: 0.33333334
  3087. outWeight: 0.33333334
  3088. - serializedVersion: 3
  3089. time: 0.41666666
  3090. value: -5
  3091. inSlope: -16.6
  3092. outSlope: -16.6
  3093. tangentMode: 136
  3094. weightedMode: 0
  3095. inWeight: 0.33333334
  3096. outWeight: 0.33333334
  3097. - serializedVersion: 3
  3098. time: 1
  3099. value: -10
  3100. inSlope: 0
  3101. outSlope: 0
  3102. tangentMode: 136
  3103. weightedMode: 0
  3104. inWeight: 0.33333334
  3105. outWeight: 0.33333334
  3106. m_PreInfinity: 2
  3107. m_PostInfinity: 2
  3108. m_RotationOrder: 4
  3109. attribute: m_AnchoredPosition.y
  3110. path: Root/auto/s4
  3111. classID: 224
  3112. script: {fileID: 0}
  3113. - curve:
  3114. serializedVersion: 2
  3115. m_Curve:
  3116. - serializedVersion: 3
  3117. time: 0
  3118. value: 0
  3119. inSlope: 0
  3120. outSlope: 0
  3121. tangentMode: 136
  3122. weightedMode: 0
  3123. inWeight: 0.33333334
  3124. outWeight: 0.33333334
  3125. - serializedVersion: 3
  3126. time: 0.41666666
  3127. value: 0
  3128. inSlope: 0
  3129. outSlope: 0
  3130. tangentMode: 136
  3131. weightedMode: 0
  3132. inWeight: 0.33333334
  3133. outWeight: 0.33333334
  3134. - serializedVersion: 3
  3135. time: 1
  3136. value: 0
  3137. inSlope: 0
  3138. outSlope: 0
  3139. tangentMode: 136
  3140. weightedMode: 0
  3141. inWeight: 0.33333334
  3142. outWeight: 0.33333334
  3143. m_PreInfinity: 2
  3144. m_PostInfinity: 2
  3145. m_RotationOrder: 4
  3146. attribute: localEulerAnglesRaw.x
  3147. path: Root/auto/s4
  3148. classID: 224
  3149. script: {fileID: 0}
  3150. - curve:
  3151. serializedVersion: 2
  3152. m_Curve:
  3153. - serializedVersion: 3
  3154. time: 0
  3155. value: 0
  3156. inSlope: 0
  3157. outSlope: 0
  3158. tangentMode: 136
  3159. weightedMode: 0
  3160. inWeight: 0.33333334
  3161. outWeight: 0.33333334
  3162. - serializedVersion: 3
  3163. time: 0.41666666
  3164. value: 0
  3165. inSlope: 0
  3166. outSlope: 0
  3167. tangentMode: 136
  3168. weightedMode: 0
  3169. inWeight: 0.33333334
  3170. outWeight: 0.33333334
  3171. - serializedVersion: 3
  3172. time: 1
  3173. value: 0
  3174. inSlope: 0
  3175. outSlope: 0
  3176. tangentMode: 136
  3177. weightedMode: 0
  3178. inWeight: 0.33333334
  3179. outWeight: 0.33333334
  3180. m_PreInfinity: 2
  3181. m_PostInfinity: 2
  3182. m_RotationOrder: 4
  3183. attribute: localEulerAnglesRaw.y
  3184. path: Root/auto/s4
  3185. classID: 224
  3186. script: {fileID: 0}
  3187. - curve:
  3188. serializedVersion: 2
  3189. m_Curve:
  3190. - serializedVersion: 3
  3191. time: 0
  3192. value: 0
  3193. inSlope: 0
  3194. outSlope: 0
  3195. tangentMode: 136
  3196. weightedMode: 0
  3197. inWeight: 0.33333334
  3198. outWeight: 0.33333334
  3199. - serializedVersion: 3
  3200. time: 0.41666666
  3201. value: 0
  3202. inSlope: 0
  3203. outSlope: 0
  3204. tangentMode: 136
  3205. weightedMode: 0
  3206. inWeight: 0.33333334
  3207. outWeight: 0.33333334
  3208. - serializedVersion: 3
  3209. time: 1
  3210. value: -400
  3211. inSlope: 0
  3212. outSlope: 0
  3213. tangentMode: 136
  3214. weightedMode: 0
  3215. inWeight: 0.33333334
  3216. outWeight: 0.33333334
  3217. m_PreInfinity: 2
  3218. m_PostInfinity: 2
  3219. m_RotationOrder: 4
  3220. attribute: localEulerAnglesRaw.z
  3221. path: Root/auto/s4
  3222. classID: 224
  3223. script: {fileID: 0}
  3224. - curve:
  3225. serializedVersion: 2
  3226. m_Curve:
  3227. - serializedVersion: 3
  3228. time: 0
  3229. value: 1
  3230. inSlope: 0
  3231. outSlope: 0
  3232. tangentMode: 136
  3233. weightedMode: 0
  3234. inWeight: 0.33333334
  3235. outWeight: 0.33333334
  3236. - serializedVersion: 3
  3237. time: 0.41666666
  3238. value: 0.5
  3239. inSlope: 0
  3240. outSlope: 0
  3241. tangentMode: 136
  3242. weightedMode: 0
  3243. inWeight: 0.33333334
  3244. outWeight: 0.33333334
  3245. - serializedVersion: 3
  3246. time: 1
  3247. value: 1.5
  3248. inSlope: 0
  3249. outSlope: 0
  3250. tangentMode: 136
  3251. weightedMode: 0
  3252. inWeight: 0.33333334
  3253. outWeight: 0.33333334
  3254. m_PreInfinity: 2
  3255. m_PostInfinity: 2
  3256. m_RotationOrder: 4
  3257. attribute: m_LocalScale.x
  3258. path: Root/auto/s1
  3259. classID: 224
  3260. script: {fileID: 0}
  3261. - curve:
  3262. serializedVersion: 2
  3263. m_Curve:
  3264. - serializedVersion: 3
  3265. time: 0
  3266. value: 1
  3267. inSlope: 0
  3268. outSlope: 0
  3269. tangentMode: 136
  3270. weightedMode: 0
  3271. inWeight: 0.33333334
  3272. outWeight: 0.33333334
  3273. - serializedVersion: 3
  3274. time: 0.41666666
  3275. value: 0.5
  3276. inSlope: 0
  3277. outSlope: 0
  3278. tangentMode: 136
  3279. weightedMode: 0
  3280. inWeight: 0.33333334
  3281. outWeight: 0.33333334
  3282. - serializedVersion: 3
  3283. time: 1
  3284. value: 1.5
  3285. inSlope: 0
  3286. outSlope: 0
  3287. tangentMode: 136
  3288. weightedMode: 0
  3289. inWeight: 0.33333334
  3290. outWeight: 0.33333334
  3291. m_PreInfinity: 2
  3292. m_PostInfinity: 2
  3293. m_RotationOrder: 4
  3294. attribute: m_LocalScale.y
  3295. path: Root/auto/s1
  3296. classID: 224
  3297. script: {fileID: 0}
  3298. - curve:
  3299. serializedVersion: 2
  3300. m_Curve:
  3301. - serializedVersion: 3
  3302. time: 0
  3303. value: 1
  3304. inSlope: 0
  3305. outSlope: 0
  3306. tangentMode: 136
  3307. weightedMode: 0
  3308. inWeight: 0.33333334
  3309. outWeight: 0.33333334
  3310. - serializedVersion: 3
  3311. time: 0.41666666
  3312. value: 1
  3313. inSlope: 0
  3314. outSlope: 0
  3315. tangentMode: 136
  3316. weightedMode: 0
  3317. inWeight: 0.33333334
  3318. outWeight: 0.33333334
  3319. - serializedVersion: 3
  3320. time: 1
  3321. value: 1
  3322. inSlope: 0
  3323. outSlope: 0
  3324. tangentMode: 136
  3325. weightedMode: 0
  3326. inWeight: 0.33333334
  3327. outWeight: 0.33333334
  3328. m_PreInfinity: 2
  3329. m_PostInfinity: 2
  3330. m_RotationOrder: 4
  3331. attribute: m_LocalScale.z
  3332. path: Root/auto/s1
  3333. classID: 224
  3334. script: {fileID: 0}
  3335. - curve:
  3336. serializedVersion: 2
  3337. m_Curve:
  3338. - serializedVersion: 3
  3339. time: 0
  3340. value: 1
  3341. inSlope: 0
  3342. outSlope: 0
  3343. tangentMode: 136
  3344. weightedMode: 0
  3345. inWeight: 0.33333334
  3346. outWeight: 0.33333334
  3347. - serializedVersion: 3
  3348. time: 0.41666666
  3349. value: 0.2
  3350. inSlope: 0
  3351. outSlope: 0
  3352. tangentMode: 136
  3353. weightedMode: 0
  3354. inWeight: 0.33333334
  3355. outWeight: 0.33333334
  3356. - serializedVersion: 3
  3357. time: 1
  3358. value: 1.5
  3359. inSlope: 0
  3360. outSlope: 0
  3361. tangentMode: 136
  3362. weightedMode: 0
  3363. inWeight: 0.33333334
  3364. outWeight: 0.33333334
  3365. m_PreInfinity: 2
  3366. m_PostInfinity: 2
  3367. m_RotationOrder: 4
  3368. attribute: m_LocalScale.x
  3369. path: Root/auto/s2
  3370. classID: 224
  3371. script: {fileID: 0}
  3372. - curve:
  3373. serializedVersion: 2
  3374. m_Curve:
  3375. - serializedVersion: 3
  3376. time: 0
  3377. value: 1
  3378. inSlope: 0
  3379. outSlope: 0
  3380. tangentMode: 136
  3381. weightedMode: 0
  3382. inWeight: 0.33333334
  3383. outWeight: 0.33333334
  3384. - serializedVersion: 3
  3385. time: 0.41666666
  3386. value: 0.2
  3387. inSlope: 0
  3388. outSlope: 0
  3389. tangentMode: 136
  3390. weightedMode: 0
  3391. inWeight: 0.33333334
  3392. outWeight: 0.33333334
  3393. - serializedVersion: 3
  3394. time: 1
  3395. value: 1.5
  3396. inSlope: 0
  3397. outSlope: 0
  3398. tangentMode: 136
  3399. weightedMode: 0
  3400. inWeight: 0.33333334
  3401. outWeight: 0.33333334
  3402. m_PreInfinity: 2
  3403. m_PostInfinity: 2
  3404. m_RotationOrder: 4
  3405. attribute: m_LocalScale.y
  3406. path: Root/auto/s2
  3407. classID: 224
  3408. script: {fileID: 0}
  3409. - curve:
  3410. serializedVersion: 2
  3411. m_Curve:
  3412. - serializedVersion: 3
  3413. time: 0
  3414. value: 1
  3415. inSlope: 0
  3416. outSlope: 0
  3417. tangentMode: 136
  3418. weightedMode: 0
  3419. inWeight: 0.33333334
  3420. outWeight: 0.33333334
  3421. - serializedVersion: 3
  3422. time: 0.41666666
  3423. value: 1
  3424. inSlope: 0
  3425. outSlope: 0
  3426. tangentMode: 136
  3427. weightedMode: 0
  3428. inWeight: 0.33333334
  3429. outWeight: 0.33333334
  3430. - serializedVersion: 3
  3431. time: 1
  3432. value: 1
  3433. inSlope: 0
  3434. outSlope: 0
  3435. tangentMode: 136
  3436. weightedMode: 0
  3437. inWeight: 0.33333334
  3438. outWeight: 0.33333334
  3439. m_PreInfinity: 2
  3440. m_PostInfinity: 2
  3441. m_RotationOrder: 4
  3442. attribute: m_LocalScale.z
  3443. path: Root/auto/s2
  3444. classID: 224
  3445. script: {fileID: 0}
  3446. - curve:
  3447. serializedVersion: 2
  3448. m_Curve:
  3449. - serializedVersion: 3
  3450. time: 0
  3451. value: 1
  3452. inSlope: 0
  3453. outSlope: 0
  3454. tangentMode: 136
  3455. weightedMode: 0
  3456. inWeight: 0.33333334
  3457. outWeight: 0.33333334
  3458. - serializedVersion: 3
  3459. time: 0.41666666
  3460. value: 0.2
  3461. inSlope: 0
  3462. outSlope: 0
  3463. tangentMode: 136
  3464. weightedMode: 0
  3465. inWeight: 0.33333334
  3466. outWeight: 0.33333334
  3467. - serializedVersion: 3
  3468. time: 1
  3469. value: 0.8
  3470. inSlope: 0
  3471. outSlope: 0
  3472. tangentMode: 136
  3473. weightedMode: 0
  3474. inWeight: 0.33333334
  3475. outWeight: 0.33333334
  3476. m_PreInfinity: 2
  3477. m_PostInfinity: 2
  3478. m_RotationOrder: 4
  3479. attribute: m_LocalScale.x
  3480. path: Root/auto/s4
  3481. classID: 224
  3482. script: {fileID: 0}
  3483. - curve:
  3484. serializedVersion: 2
  3485. m_Curve:
  3486. - serializedVersion: 3
  3487. time: 0
  3488. value: 1
  3489. inSlope: 0
  3490. outSlope: 0
  3491. tangentMode: 136
  3492. weightedMode: 0
  3493. inWeight: 0.33333334
  3494. outWeight: 0.33333334
  3495. - serializedVersion: 3
  3496. time: 0.41666666
  3497. value: 0.2
  3498. inSlope: 0
  3499. outSlope: 0
  3500. tangentMode: 136
  3501. weightedMode: 0
  3502. inWeight: 0.33333334
  3503. outWeight: 0.33333334
  3504. - serializedVersion: 3
  3505. time: 1
  3506. value: 0.8
  3507. inSlope: 0
  3508. outSlope: 0
  3509. tangentMode: 136
  3510. weightedMode: 0
  3511. inWeight: 0.33333334
  3512. outWeight: 0.33333334
  3513. m_PreInfinity: 2
  3514. m_PostInfinity: 2
  3515. m_RotationOrder: 4
  3516. attribute: m_LocalScale.y
  3517. path: Root/auto/s4
  3518. classID: 224
  3519. script: {fileID: 0}
  3520. - curve:
  3521. serializedVersion: 2
  3522. m_Curve:
  3523. - serializedVersion: 3
  3524. time: 0
  3525. value: 1
  3526. inSlope: 0
  3527. outSlope: 0
  3528. tangentMode: 136
  3529. weightedMode: 0
  3530. inWeight: 0.33333334
  3531. outWeight: 0.33333334
  3532. - serializedVersion: 3
  3533. time: 0.41666666
  3534. value: 1
  3535. inSlope: 0
  3536. outSlope: 0
  3537. tangentMode: 136
  3538. weightedMode: 0
  3539. inWeight: 0.33333334
  3540. outWeight: 0.33333334
  3541. - serializedVersion: 3
  3542. time: 1
  3543. value: 1
  3544. inSlope: 0
  3545. outSlope: 0
  3546. tangentMode: 136
  3547. weightedMode: 0
  3548. inWeight: 0.33333334
  3549. outWeight: 0.33333334
  3550. m_PreInfinity: 2
  3551. m_PostInfinity: 2
  3552. m_RotationOrder: 4
  3553. attribute: m_LocalScale.z
  3554. path: Root/auto/s4
  3555. classID: 224
  3556. script: {fileID: 0}
  3557. - curve:
  3558. serializedVersion: 2
  3559. m_Curve:
  3560. - serializedVersion: 3
  3561. time: 0
  3562. value: 1
  3563. inSlope: Infinity
  3564. outSlope: Infinity
  3565. tangentMode: 103
  3566. weightedMode: 0
  3567. inWeight: 0
  3568. outWeight: 0
  3569. m_PreInfinity: 2
  3570. m_PostInfinity: 2
  3571. m_RotationOrder: 4
  3572. attribute: m_IsActive
  3573. path: Root/blue
  3574. classID: 1
  3575. script: {fileID: 0}
  3576. m_EulerEditorCurves:
  3577. - curve:
  3578. serializedVersion: 2
  3579. m_Curve: []
  3580. m_PreInfinity: 2
  3581. m_PostInfinity: 2
  3582. m_RotationOrder: 4
  3583. attribute: m_LocalEulerAngles.z
  3584. path: Root/left
  3585. classID: 224
  3586. script: {fileID: 0}
  3587. - curve:
  3588. serializedVersion: 2
  3589. m_Curve: []
  3590. m_PreInfinity: 2
  3591. m_PostInfinity: 2
  3592. m_RotationOrder: 4
  3593. attribute: m_LocalEulerAngles.y
  3594. path: Root/left
  3595. classID: 224
  3596. script: {fileID: 0}
  3597. - curve:
  3598. serializedVersion: 2
  3599. m_Curve: []
  3600. m_PreInfinity: 2
  3601. m_PostInfinity: 2
  3602. m_RotationOrder: 4
  3603. attribute: m_LocalEulerAngles.x
  3604. path: Root/left
  3605. classID: 224
  3606. script: {fileID: 0}
  3607. - curve:
  3608. serializedVersion: 2
  3609. m_Curve: []
  3610. m_PreInfinity: 2
  3611. m_PostInfinity: 2
  3612. m_RotationOrder: 4
  3613. attribute: m_LocalEulerAngles.x
  3614. path: Root/right
  3615. classID: 224
  3616. script: {fileID: 0}
  3617. - curve:
  3618. serializedVersion: 2
  3619. m_Curve: []
  3620. m_PreInfinity: 2
  3621. m_PostInfinity: 2
  3622. m_RotationOrder: 4
  3623. attribute: m_LocalEulerAngles.y
  3624. path: Root/right
  3625. classID: 224
  3626. script: {fileID: 0}
  3627. - curve:
  3628. serializedVersion: 2
  3629. m_Curve: []
  3630. m_PreInfinity: 2
  3631. m_PostInfinity: 2
  3632. m_RotationOrder: 4
  3633. attribute: m_LocalEulerAngles.z
  3634. path: Root/right
  3635. classID: 224
  3636. script: {fileID: 0}
  3637. - curve:
  3638. serializedVersion: 2
  3639. m_Curve: []
  3640. m_PreInfinity: 2
  3641. m_PostInfinity: 2
  3642. m_RotationOrder: 4
  3643. attribute: m_LocalEulerAngles.x
  3644. path: Root/auto/s1
  3645. classID: 224
  3646. script: {fileID: 0}
  3647. - curve:
  3648. serializedVersion: 2
  3649. m_Curve: []
  3650. m_PreInfinity: 2
  3651. m_PostInfinity: 2
  3652. m_RotationOrder: 4
  3653. attribute: m_LocalEulerAngles.y
  3654. path: Root/auto/s1
  3655. classID: 224
  3656. script: {fileID: 0}
  3657. - curve:
  3658. serializedVersion: 2
  3659. m_Curve: []
  3660. m_PreInfinity: 2
  3661. m_PostInfinity: 2
  3662. m_RotationOrder: 4
  3663. attribute: m_LocalEulerAngles.z
  3664. path: Root/auto/s1
  3665. classID: 224
  3666. script: {fileID: 0}
  3667. - curve:
  3668. serializedVersion: 2
  3669. m_Curve: []
  3670. m_PreInfinity: 2
  3671. m_PostInfinity: 2
  3672. m_RotationOrder: 4
  3673. attribute: m_LocalEulerAngles.x
  3674. path: Root/auto/s2
  3675. classID: 224
  3676. script: {fileID: 0}
  3677. - curve:
  3678. serializedVersion: 2
  3679. m_Curve: []
  3680. m_PreInfinity: 2
  3681. m_PostInfinity: 2
  3682. m_RotationOrder: 4
  3683. attribute: m_LocalEulerAngles.y
  3684. path: Root/auto/s2
  3685. classID: 224
  3686. script: {fileID: 0}
  3687. - curve:
  3688. serializedVersion: 2
  3689. m_Curve: []
  3690. m_PreInfinity: 2
  3691. m_PostInfinity: 2
  3692. m_RotationOrder: 4
  3693. attribute: m_LocalEulerAngles.z
  3694. path: Root/auto/s2
  3695. classID: 224
  3696. script: {fileID: 0}
  3697. - curve:
  3698. serializedVersion: 2
  3699. m_Curve: []
  3700. m_PreInfinity: 2
  3701. m_PostInfinity: 2
  3702. m_RotationOrder: 4
  3703. attribute: m_LocalEulerAngles.z
  3704. path: Root/auto/s4
  3705. classID: 224
  3706. script: {fileID: 0}
  3707. - curve:
  3708. serializedVersion: 2
  3709. m_Curve: []
  3710. m_PreInfinity: 2
  3711. m_PostInfinity: 2
  3712. m_RotationOrder: 4
  3713. attribute: m_LocalEulerAngles.y
  3714. path: Root/auto/s4
  3715. classID: 224
  3716. script: {fileID: 0}
  3717. - curve:
  3718. serializedVersion: 2
  3719. m_Curve: []
  3720. m_PreInfinity: 2
  3721. m_PostInfinity: 2
  3722. m_RotationOrder: 4
  3723. attribute: m_LocalEulerAngles.x
  3724. path: Root/auto/s4
  3725. classID: 224
  3726. script: {fileID: 0}
  3727. - curve:
  3728. serializedVersion: 2
  3729. m_Curve: []
  3730. m_PreInfinity: 2
  3731. m_PostInfinity: 2
  3732. m_RotationOrder: 4
  3733. attribute: m_LocalEulerAngles.x
  3734. path: Root/auto/s3
  3735. classID: 224
  3736. script: {fileID: 0}
  3737. - curve:
  3738. serializedVersion: 2
  3739. m_Curve: []
  3740. m_PreInfinity: 2
  3741. m_PostInfinity: 2
  3742. m_RotationOrder: 4
  3743. attribute: m_LocalEulerAngles.y
  3744. path: Root/auto/s3
  3745. classID: 224
  3746. script: {fileID: 0}
  3747. - curve:
  3748. serializedVersion: 2
  3749. m_Curve: []
  3750. m_PreInfinity: 2
  3751. m_PostInfinity: 2
  3752. m_RotationOrder: 4
  3753. attribute: m_LocalEulerAngles.z
  3754. path: Root/auto/s3
  3755. classID: 224
  3756. script: {fileID: 0}
  3757. m_HasGenericRootTransform: 0
  3758. m_HasMotionFloatCurves: 0
  3759. m_Events: []