BigPlacesChangeInfoPanelopen.anim 82 KB

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