gongneng_2.anim 79 KB

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