TransSuccess.anim 101 KB

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