BossWarning.anim 89 KB

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