BurstEffectObjects_overlay.anim 130 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464
  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: BurstEffectObjects_overlay
  10. serializedVersion: 6
  11. m_Legacy: 0
  12. m_Compressed: 0
  13. m_UseHighQualityCurve: 1
  14. m_RotationCurves: []
  15. m_CompressedRotationCurves: []
  16. m_EulerCurves: []
  17. m_PositionCurves: []
  18. m_ScaleCurves: []
  19. m_FloatCurves:
  20. - curve:
  21. serializedVersion: 2
  22. m_Curve:
  23. - serializedVersion: 3
  24. time: 0
  25. value: 0
  26. inSlope: Infinity
  27. outSlope: Infinity
  28. tangentMode: 103
  29. weightedMode: 0
  30. inWeight: 0
  31. outWeight: 0
  32. - serializedVersion: 3
  33. time: 0.8833333
  34. value: 0
  35. inSlope: Infinity
  36. outSlope: Infinity
  37. tangentMode: 103
  38. weightedMode: 0
  39. inWeight: 0
  40. outWeight: 0
  41. - serializedVersion: 3
  42. time: 0.93333334
  43. value: 0
  44. inSlope: Infinity
  45. outSlope: Infinity
  46. tangentMode: 103
  47. weightedMode: 0
  48. inWeight: 0
  49. outWeight: 0
  50. - serializedVersion: 3
  51. time: 1.2833333
  52. value: 0
  53. inSlope: Infinity
  54. outSlope: Infinity
  55. tangentMode: 103
  56. weightedMode: 0
  57. inWeight: 0
  58. outWeight: 0
  59. - serializedVersion: 3
  60. time: 1.4
  61. value: 0
  62. inSlope: Infinity
  63. outSlope: Infinity
  64. tangentMode: 103
  65. weightedMode: 0
  66. inWeight: 0
  67. outWeight: 0
  68. - serializedVersion: 3
  69. time: 1.6166667
  70. value: 0
  71. inSlope: Infinity
  72. outSlope: Infinity
  73. tangentMode: 103
  74. weightedMode: 0
  75. inWeight: 0
  76. outWeight: 0
  77. - serializedVersion: 3
  78. time: 2.0666666
  79. value: 1
  80. inSlope: Infinity
  81. outSlope: Infinity
  82. tangentMode: 103
  83. weightedMode: 0
  84. inWeight: 0
  85. outWeight: 0
  86. - serializedVersion: 3
  87. time: 2.1333334
  88. value: 1
  89. inSlope: Infinity
  90. outSlope: Infinity
  91. tangentMode: 103
  92. weightedMode: 0
  93. inWeight: 0
  94. outWeight: 0
  95. - serializedVersion: 3
  96. time: 2.4666667
  97. value: 1
  98. inSlope: Infinity
  99. outSlope: Infinity
  100. tangentMode: 103
  101. weightedMode: 0
  102. inWeight: 0
  103. outWeight: 0
  104. - serializedVersion: 3
  105. time: 2.65
  106. value: 1
  107. inSlope: Infinity
  108. outSlope: Infinity
  109. tangentMode: 103
  110. weightedMode: 0
  111. inWeight: 0
  112. outWeight: 0
  113. m_PreInfinity: 2
  114. m_PostInfinity: 2
  115. m_RotationOrder: 4
  116. attribute: m_IsActive
  117. path: cardMask
  118. classID: 1
  119. script: {fileID: 0}
  120. - curve:
  121. serializedVersion: 2
  122. m_Curve:
  123. - serializedVersion: 3
  124. time: 0
  125. value: 1
  126. inSlope: 0
  127. outSlope: 0
  128. tangentMode: 136
  129. weightedMode: 0
  130. inWeight: 0.33333334
  131. outWeight: 0.33333334
  132. - serializedVersion: 3
  133. time: 0.93333334
  134. value: 1
  135. inSlope: 0
  136. outSlope: 0
  137. tangentMode: 136
  138. weightedMode: 0
  139. inWeight: 0.33333334
  140. outWeight: 0.33333334
  141. - serializedVersion: 3
  142. time: 1.2833333
  143. value: 1
  144. inSlope: 0
  145. outSlope: 0
  146. tangentMode: 136
  147. weightedMode: 0
  148. inWeight: 0.33333334
  149. outWeight: 0.33333334
  150. - serializedVersion: 3
  151. time: 1.6166667
  152. value: 1
  153. inSlope: 0
  154. outSlope: 0
  155. tangentMode: 136
  156. weightedMode: 0
  157. inWeight: 0.33333334
  158. outWeight: 0.33333334
  159. - serializedVersion: 3
  160. time: 2.1333334
  161. value: 1
  162. inSlope: 0
  163. outSlope: 0
  164. tangentMode: 136
  165. weightedMode: 0
  166. inWeight: 0.33333334
  167. outWeight: 0.33333334
  168. m_PreInfinity: 2
  169. m_PostInfinity: 2
  170. m_RotationOrder: 4
  171. attribute: m_Color.r
  172. path: cardMask/CardImage
  173. classID: 114
  174. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  175. - curve:
  176. serializedVersion: 2
  177. m_Curve:
  178. - serializedVersion: 3
  179. time: 0
  180. value: 1
  181. inSlope: 0
  182. outSlope: 0
  183. tangentMode: 136
  184. weightedMode: 0
  185. inWeight: 0.33333334
  186. outWeight: 0.33333334
  187. - serializedVersion: 3
  188. time: 0.93333334
  189. value: 1
  190. inSlope: 0
  191. outSlope: 0
  192. tangentMode: 136
  193. weightedMode: 0
  194. inWeight: 0.33333334
  195. outWeight: 0.33333334
  196. - serializedVersion: 3
  197. time: 1.2833333
  198. value: 1
  199. inSlope: 0
  200. outSlope: 0
  201. tangentMode: 136
  202. weightedMode: 0
  203. inWeight: 0.33333334
  204. outWeight: 0.33333334
  205. - serializedVersion: 3
  206. time: 1.6166667
  207. value: 1
  208. inSlope: 0
  209. outSlope: 0
  210. tangentMode: 136
  211. weightedMode: 0
  212. inWeight: 0.33333334
  213. outWeight: 0.33333334
  214. - serializedVersion: 3
  215. time: 2.1333334
  216. value: 1
  217. inSlope: 0
  218. outSlope: 0
  219. tangentMode: 136
  220. weightedMode: 0
  221. inWeight: 0.33333334
  222. outWeight: 0.33333334
  223. m_PreInfinity: 2
  224. m_PostInfinity: 2
  225. m_RotationOrder: 4
  226. attribute: m_Color.g
  227. path: cardMask/CardImage
  228. classID: 114
  229. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  230. - curve:
  231. serializedVersion: 2
  232. m_Curve:
  233. - serializedVersion: 3
  234. time: 0
  235. value: 1
  236. inSlope: 0
  237. outSlope: 0
  238. tangentMode: 136
  239. weightedMode: 0
  240. inWeight: 0.33333334
  241. outWeight: 0.33333334
  242. - serializedVersion: 3
  243. time: 0.93333334
  244. value: 1
  245. inSlope: 0
  246. outSlope: 0
  247. tangentMode: 136
  248. weightedMode: 0
  249. inWeight: 0.33333334
  250. outWeight: 0.33333334
  251. - serializedVersion: 3
  252. time: 1.2833333
  253. value: 1
  254. inSlope: 0
  255. outSlope: 0
  256. tangentMode: 136
  257. weightedMode: 0
  258. inWeight: 0.33333334
  259. outWeight: 0.33333334
  260. - serializedVersion: 3
  261. time: 1.6166667
  262. value: 1
  263. inSlope: 0
  264. outSlope: 0
  265. tangentMode: 136
  266. weightedMode: 0
  267. inWeight: 0.33333334
  268. outWeight: 0.33333334
  269. - serializedVersion: 3
  270. time: 2.1333334
  271. value: 1
  272. inSlope: 0
  273. outSlope: 0
  274. tangentMode: 136
  275. weightedMode: 0
  276. inWeight: 0.33333334
  277. outWeight: 0.33333334
  278. m_PreInfinity: 2
  279. m_PostInfinity: 2
  280. m_RotationOrder: 4
  281. attribute: m_Color.b
  282. path: cardMask/CardImage
  283. classID: 114
  284. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  285. - curve:
  286. serializedVersion: 2
  287. m_Curve:
  288. - serializedVersion: 3
  289. time: 0
  290. value: 0
  291. inSlope: 0
  292. outSlope: 0
  293. tangentMode: 136
  294. weightedMode: 0
  295. inWeight: 0.33333334
  296. outWeight: 0.33333334
  297. - serializedVersion: 3
  298. time: 0.8833333
  299. value: 1
  300. inSlope: 0
  301. outSlope: 0
  302. tangentMode: 136
  303. weightedMode: 0
  304. inWeight: 0.33333334
  305. outWeight: 0.33333334
  306. - serializedVersion: 3
  307. time: 0.93333334
  308. value: 1
  309. inSlope: 0
  310. outSlope: 0
  311. tangentMode: 136
  312. weightedMode: 0
  313. inWeight: 0.33333334
  314. outWeight: 0.33333334
  315. - serializedVersion: 3
  316. time: 1.2833333
  317. value: 0.7467321
  318. inSlope: -0.57240915
  319. outSlope: -0.57240915
  320. tangentMode: 136
  321. weightedMode: 0
  322. inWeight: 0.33333334
  323. outWeight: 0.33333334
  324. - serializedVersion: 3
  325. time: 1.6166667
  326. value: 0.60885376
  327. inSlope: -0.045210555
  328. outSlope: -0.045210555
  329. tangentMode: 136
  330. weightedMode: 0
  331. inWeight: 0.33333334
  332. outWeight: 0.33333334
  333. - serializedVersion: 3
  334. time: 2.0666666
  335. value: 0.6
  336. inSlope: 0
  337. outSlope: 0
  338. tangentMode: 136
  339. weightedMode: 0
  340. inWeight: 0.33333334
  341. outWeight: 0.33333334
  342. - serializedVersion: 3
  343. time: 2.1333334
  344. value: 1
  345. inSlope: 0
  346. outSlope: 0
  347. tangentMode: 136
  348. weightedMode: 0
  349. inWeight: 0.33333334
  350. outWeight: 0.33333334
  351. - serializedVersion: 3
  352. time: 2.4666667
  353. value: 1
  354. inSlope: 0
  355. outSlope: 0
  356. tangentMode: 136
  357. weightedMode: 0
  358. inWeight: 0.33333334
  359. outWeight: 0.33333334
  360. m_PreInfinity: 2
  361. m_PostInfinity: 2
  362. m_RotationOrder: 4
  363. attribute: m_Color.a
  364. path: cardMask/CardImage
  365. classID: 114
  366. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  367. - curve:
  368. serializedVersion: 2
  369. m_Curve:
  370. - serializedVersion: 3
  371. time: 0
  372. value: 900
  373. inSlope: 0
  374. outSlope: 0
  375. tangentMode: 136
  376. weightedMode: 0
  377. inWeight: 0.33333334
  378. outWeight: 0.33333334
  379. - serializedVersion: 3
  380. time: 0.8833333
  381. value: 900
  382. inSlope: 0
  383. outSlope: 0
  384. tangentMode: 136
  385. weightedMode: 0
  386. inWeight: 0.33333334
  387. outWeight: 0.33333334
  388. - serializedVersion: 3
  389. time: 0.93333334
  390. value: 1800
  391. inSlope: 18000.002
  392. outSlope: 18000.002
  393. tangentMode: 136
  394. weightedMode: 0
  395. inWeight: 0.33333334
  396. outWeight: 0.33333334
  397. - serializedVersion: 3
  398. time: 1.0333333
  399. value: 3600
  400. inSlope: 8389.447
  401. outSlope: 8389.447
  402. tangentMode: 136
  403. weightedMode: 0
  404. inWeight: 0.33333334
  405. outWeight: 0.33333334
  406. - serializedVersion: 3
  407. time: 1.2833333
  408. value: 4736.306
  409. inSlope: 694.842
  410. outSlope: 694.842
  411. tangentMode: 136
  412. weightedMode: 0
  413. inWeight: 0.33333334
  414. outWeight: 0.33333334
  415. - serializedVersion: 3
  416. time: 1.4
  417. value: 4800
  418. inSlope: 0
  419. outSlope: 0
  420. tangentMode: 136
  421. weightedMode: 0
  422. inWeight: 0.33333334
  423. outWeight: 0.33333334
  424. - serializedVersion: 3
  425. time: 1.6166667
  426. value: 1612.023
  427. inSlope: -4272.1377
  428. outSlope: -4272.1377
  429. tangentMode: 136
  430. weightedMode: 0
  431. inWeight: 0.33333334
  432. outWeight: 0.33333334
  433. - serializedVersion: 3
  434. time: 2.0666666
  435. value: 900
  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: 2.1333334
  444. value: 900
  445. inSlope: 0
  446. outSlope: 0
  447. tangentMode: 136
  448. weightedMode: 0
  449. inWeight: 0.33333334
  450. outWeight: 0.33333334
  451. - serializedVersion: 3
  452. time: 2.4666667
  453. value: 4800
  454. inSlope: 0
  455. outSlope: 0
  456. tangentMode: 136
  457. weightedMode: 0
  458. inWeight: 0.33333334
  459. outWeight: 0.33333334
  460. - serializedVersion: 3
  461. time: 2.65
  462. value: 4800
  463. inSlope: 0
  464. outSlope: 0
  465. tangentMode: 136
  466. weightedMode: 0
  467. inWeight: 0.33333334
  468. outWeight: 0.33333334
  469. m_PreInfinity: 2
  470. m_PostInfinity: 2
  471. m_RotationOrder: 4
  472. attribute: m_SizeDelta.x
  473. path: cardMask
  474. classID: 224
  475. script: {fileID: 0}
  476. - curve:
  477. serializedVersion: 2
  478. m_Curve:
  479. - serializedVersion: 3
  480. time: 0
  481. value: 1200
  482. inSlope: 0
  483. outSlope: 0
  484. tangentMode: 136
  485. weightedMode: 0
  486. inWeight: 0.33333334
  487. outWeight: 0.33333334
  488. - serializedVersion: 3
  489. time: 0.8833333
  490. value: 1200
  491. inSlope: 0
  492. outSlope: 0
  493. tangentMode: 136
  494. weightedMode: 0
  495. inWeight: 0.33333334
  496. outWeight: 0.33333334
  497. - serializedVersion: 3
  498. time: 0.93333334
  499. value: 2400
  500. inSlope: 24000.004
  501. outSlope: 24000.004
  502. tangentMode: 136
  503. weightedMode: 0
  504. inWeight: 0.33333334
  505. outWeight: 0.33333334
  506. - serializedVersion: 3
  507. time: 1.0333333
  508. value: 4800
  509. inSlope: 11185.928
  510. outSlope: 11185.928
  511. tangentMode: 136
  512. weightedMode: 0
  513. inWeight: 0.33333334
  514. outWeight: 0.33333334
  515. - serializedVersion: 3
  516. time: 1.2833333
  517. value: 6315.074
  518. inSlope: 926.46295
  519. outSlope: 926.46295
  520. tangentMode: 136
  521. weightedMode: 0
  522. inWeight: 0.33333334
  523. outWeight: 0.33333334
  524. - serializedVersion: 3
  525. time: 1.4
  526. value: 6400
  527. inSlope: 0
  528. outSlope: 0
  529. tangentMode: 136
  530. weightedMode: 0
  531. inWeight: 0.33333334
  532. outWeight: 0.33333334
  533. - serializedVersion: 3
  534. time: 1.6166667
  535. value: 2149.3638
  536. inSlope: -5696.1826
  537. outSlope: -5696.1826
  538. tangentMode: 136
  539. weightedMode: 0
  540. inWeight: 0.33333334
  541. outWeight: 0.33333334
  542. - serializedVersion: 3
  543. time: 2.0666666
  544. value: 1200
  545. inSlope: 0
  546. outSlope: 0
  547. tangentMode: 136
  548. weightedMode: 0
  549. inWeight: 0.33333334
  550. outWeight: 0.33333334
  551. - serializedVersion: 3
  552. time: 2.1333334
  553. value: 1200
  554. inSlope: 0
  555. outSlope: 0
  556. tangentMode: 136
  557. weightedMode: 0
  558. inWeight: 0.33333334
  559. outWeight: 0.33333334
  560. - serializedVersion: 3
  561. time: 2.4666667
  562. value: 6400
  563. inSlope: 0
  564. outSlope: 0
  565. tangentMode: 136
  566. weightedMode: 0
  567. inWeight: 0.33333334
  568. outWeight: 0.33333334
  569. - serializedVersion: 3
  570. time: 2.65
  571. value: 6400
  572. inSlope: 0
  573. outSlope: 0
  574. tangentMode: 136
  575. weightedMode: 0
  576. inWeight: 0.33333334
  577. outWeight: 0.33333334
  578. m_PreInfinity: 2
  579. m_PostInfinity: 2
  580. m_RotationOrder: 4
  581. attribute: m_SizeDelta.y
  582. path: cardMask
  583. classID: 224
  584. script: {fileID: 0}
  585. - curve:
  586. serializedVersion: 2
  587. m_Curve:
  588. - serializedVersion: 3
  589. time: 0
  590. value: 6000
  591. inSlope: 0
  592. outSlope: 0
  593. tangentMode: 136
  594. weightedMode: 0
  595. inWeight: 0.33333334
  596. outWeight: 0.33333334
  597. - serializedVersion: 3
  598. time: 0.8833333
  599. value: 6000
  600. inSlope: 0
  601. outSlope: 0
  602. tangentMode: 136
  603. weightedMode: 0
  604. inWeight: 0.33333334
  605. outWeight: 0.33333334
  606. - serializedVersion: 3
  607. time: 0.93333334
  608. value: 6000
  609. inSlope: 0
  610. outSlope: 0
  611. tangentMode: 136
  612. weightedMode: 0
  613. inWeight: 0.33333334
  614. outWeight: 0.33333334
  615. - serializedVersion: 3
  616. time: 1.0333333
  617. value: 6000
  618. inSlope: 0
  619. outSlope: 0
  620. tangentMode: 136
  621. weightedMode: 0
  622. inWeight: 0.33333334
  623. outWeight: 0.33333334
  624. - serializedVersion: 3
  625. time: 1.2833333
  626. value: 6000
  627. inSlope: 0
  628. outSlope: 0
  629. tangentMode: 136
  630. weightedMode: 0
  631. inWeight: 0.33333334
  632. outWeight: 0.33333334
  633. - serializedVersion: 3
  634. time: 1.5
  635. value: 6000
  636. inSlope: 0
  637. outSlope: 0
  638. tangentMode: 136
  639. weightedMode: 0
  640. inWeight: 0.33333334
  641. outWeight: 0.33333334
  642. - serializedVersion: 3
  643. time: 1.6166667
  644. value: 4838.4673
  645. inSlope: -5294.118
  646. outSlope: -5294.118
  647. tangentMode: 136
  648. weightedMode: 0
  649. inWeight: 0.33333334
  650. outWeight: 0.33333334
  651. - serializedVersion: 3
  652. time: 2.0666666
  653. value: 3000
  654. inSlope: -6486.4478
  655. outSlope: -6486.4478
  656. tangentMode: 136
  657. weightedMode: 0
  658. inWeight: 0.33333334
  659. outWeight: 0.33333334
  660. - serializedVersion: 3
  661. time: 2.1333334
  662. value: 1487.1353
  663. inSlope: -7749.998
  664. outSlope: -7749.998
  665. tangentMode: 136
  666. weightedMode: 0
  667. inWeight: 0.33333334
  668. outWeight: 0.33333334
  669. - serializedVersion: 3
  670. time: 2.4666667
  671. value: -100
  672. inSlope: 0
  673. outSlope: 0
  674. tangentMode: 136
  675. weightedMode: 0
  676. inWeight: 0.33333334
  677. outWeight: 0.33333334
  678. m_PreInfinity: 2
  679. m_PostInfinity: 2
  680. m_RotationOrder: 4
  681. attribute: m_Spacing.x
  682. path: grid
  683. classID: 114
  684. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  685. - curve:
  686. serializedVersion: 2
  687. m_Curve:
  688. - serializedVersion: 3
  689. time: 0
  690. value: 0
  691. inSlope: 0
  692. outSlope: 0
  693. tangentMode: 136
  694. weightedMode: 0
  695. inWeight: 0.33333334
  696. outWeight: 0.33333334
  697. - serializedVersion: 3
  698. time: 1.0333333
  699. value: 0
  700. inSlope: 0
  701. outSlope: 0
  702. tangentMode: 136
  703. weightedMode: 0
  704. inWeight: 0.33333334
  705. outWeight: 0.33333334
  706. - serializedVersion: 3
  707. time: 1.2833333
  708. value: 0
  709. inSlope: 0
  710. outSlope: 0
  711. tangentMode: 136
  712. weightedMode: 0
  713. inWeight: 0.33333334
  714. outWeight: 0.33333334
  715. - serializedVersion: 3
  716. time: 1.6166667
  717. value: 0
  718. inSlope: 0
  719. outSlope: 0
  720. tangentMode: 136
  721. weightedMode: 0
  722. inWeight: 0.33333334
  723. outWeight: 0.33333334
  724. - serializedVersion: 3
  725. time: 2.1333334
  726. value: 0
  727. inSlope: 0
  728. outSlope: 0
  729. tangentMode: 136
  730. weightedMode: 0
  731. inWeight: 0.33333334
  732. outWeight: 0.33333334
  733. m_PreInfinity: 2
  734. m_PostInfinity: 2
  735. m_RotationOrder: 4
  736. attribute: m_Spacing.y
  737. path: grid
  738. classID: 114
  739. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  740. - curve:
  741. serializedVersion: 2
  742. m_Curve:
  743. - serializedVersion: 3
  744. time: 0
  745. value: 1
  746. inSlope: 0
  747. outSlope: 0
  748. tangentMode: 136
  749. weightedMode: 0
  750. inWeight: 0.33333334
  751. outWeight: 0.33333334
  752. - serializedVersion: 3
  753. time: 1.2833333
  754. value: 1
  755. inSlope: 0
  756. outSlope: 0
  757. tangentMode: 136
  758. weightedMode: 0
  759. inWeight: 0.33333334
  760. outWeight: 0.33333334
  761. - serializedVersion: 3
  762. time: 1.6166667
  763. value: 1
  764. inSlope: 0
  765. outSlope: 0
  766. tangentMode: 136
  767. weightedMode: 0
  768. inWeight: 0.33333334
  769. outWeight: 0.33333334
  770. - serializedVersion: 3
  771. time: 2.1333334
  772. value: 1
  773. inSlope: 0
  774. outSlope: 0
  775. tangentMode: 136
  776. weightedMode: 0
  777. inWeight: 0.33333334
  778. outWeight: 0.33333334
  779. m_PreInfinity: 2
  780. m_PostInfinity: 2
  781. m_RotationOrder: 4
  782. attribute: m_fontColor.r
  783. path: grid/EvolutionText_r
  784. classID: 114
  785. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  786. - curve:
  787. serializedVersion: 2
  788. m_Curve:
  789. - serializedVersion: 3
  790. time: 0
  791. value: 1
  792. inSlope: 0
  793. outSlope: 0
  794. tangentMode: 136
  795. weightedMode: 0
  796. inWeight: 0.33333334
  797. outWeight: 0.33333334
  798. - serializedVersion: 3
  799. time: 1.2833333
  800. value: 1
  801. inSlope: 0
  802. outSlope: 0
  803. tangentMode: 136
  804. weightedMode: 0
  805. inWeight: 0.33333334
  806. outWeight: 0.33333334
  807. - serializedVersion: 3
  808. time: 1.6166667
  809. value: 1
  810. inSlope: 0
  811. outSlope: 0
  812. tangentMode: 136
  813. weightedMode: 0
  814. inWeight: 0.33333334
  815. outWeight: 0.33333334
  816. - serializedVersion: 3
  817. time: 2.1333334
  818. value: 1
  819. inSlope: 0
  820. outSlope: 0
  821. tangentMode: 136
  822. weightedMode: 0
  823. inWeight: 0.33333334
  824. outWeight: 0.33333334
  825. m_PreInfinity: 2
  826. m_PostInfinity: 2
  827. m_RotationOrder: 4
  828. attribute: m_fontColor.g
  829. path: grid/EvolutionText_r
  830. classID: 114
  831. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  832. - curve:
  833. serializedVersion: 2
  834. m_Curve:
  835. - serializedVersion: 3
  836. time: 0
  837. value: 1
  838. inSlope: 0
  839. outSlope: 0
  840. tangentMode: 136
  841. weightedMode: 0
  842. inWeight: 0.33333334
  843. outWeight: 0.33333334
  844. - serializedVersion: 3
  845. time: 1.2833333
  846. value: 1
  847. inSlope: 0
  848. outSlope: 0
  849. tangentMode: 136
  850. weightedMode: 0
  851. inWeight: 0.33333334
  852. outWeight: 0.33333334
  853. - serializedVersion: 3
  854. time: 1.6166667
  855. value: 1
  856. inSlope: 0
  857. outSlope: 0
  858. tangentMode: 136
  859. weightedMode: 0
  860. inWeight: 0.33333334
  861. outWeight: 0.33333334
  862. - serializedVersion: 3
  863. time: 2.1333334
  864. value: 1
  865. inSlope: 0
  866. outSlope: 0
  867. tangentMode: 136
  868. weightedMode: 0
  869. inWeight: 0.33333334
  870. outWeight: 0.33333334
  871. m_PreInfinity: 2
  872. m_PostInfinity: 2
  873. m_RotationOrder: 4
  874. attribute: m_fontColor.b
  875. path: grid/EvolutionText_r
  876. classID: 114
  877. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  878. - curve:
  879. serializedVersion: 2
  880. m_Curve:
  881. - serializedVersion: 3
  882. time: 0
  883. value: 0.09411765
  884. inSlope: 0
  885. outSlope: 0
  886. tangentMode: 136
  887. weightedMode: 0
  888. inWeight: 0.33333334
  889. outWeight: 0.33333334
  890. - serializedVersion: 3
  891. time: 1.2833333
  892. value: 0.09411765
  893. inSlope: 0
  894. outSlope: 0
  895. tangentMode: 136
  896. weightedMode: 0
  897. inWeight: 0.33333334
  898. outWeight: 0.33333334
  899. - serializedVersion: 3
  900. time: 1.6166667
  901. value: 0.0941177
  902. inSlope: 0.00000015777698
  903. outSlope: 0.00000015777698
  904. tangentMode: 136
  905. weightedMode: 0
  906. inWeight: 0.33333334
  907. outWeight: 0.33333334
  908. - serializedVersion: 3
  909. time: 2.1333334
  910. value: 0.09411778
  911. inSlope: 0.00000049670535
  912. outSlope: 0.00000049670535
  913. tangentMode: 136
  914. weightedMode: 0
  915. inWeight: 0.33333334
  916. outWeight: 0.33333334
  917. - serializedVersion: 3
  918. time: 2.2166667
  919. value: 0.094118
  920. inSlope: 0.0000025928027
  921. outSlope: 0.0000025928027
  922. tangentMode: 136
  923. weightedMode: 0
  924. inWeight: 0.33333334
  925. outWeight: 0.33333334
  926. - serializedVersion: 3
  927. time: 2.4666667
  928. value: 1
  929. inSlope: 0
  930. outSlope: 0
  931. tangentMode: 136
  932. weightedMode: 0
  933. inWeight: 0.33333334
  934. outWeight: 0.33333334
  935. m_PreInfinity: 2
  936. m_PostInfinity: 2
  937. m_RotationOrder: 4
  938. attribute: m_fontColor.a
  939. path: grid/EvolutionText_r
  940. classID: 114
  941. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  942. - curve:
  943. serializedVersion: 2
  944. m_Curve:
  945. - serializedVersion: 3
  946. time: 0
  947. value: 0
  948. inSlope: Infinity
  949. outSlope: Infinity
  950. tangentMode: 103
  951. weightedMode: 0
  952. inWeight: 0
  953. outWeight: 0
  954. - serializedVersion: 3
  955. time: 0.8833333
  956. value: 0
  957. inSlope: Infinity
  958. outSlope: Infinity
  959. tangentMode: 103
  960. weightedMode: 0
  961. inWeight: 0
  962. outWeight: 0
  963. - serializedVersion: 3
  964. time: 1.2833333
  965. value: 0
  966. inSlope: Infinity
  967. outSlope: Infinity
  968. tangentMode: 103
  969. weightedMode: 0
  970. inWeight: 0
  971. outWeight: 0
  972. - serializedVersion: 3
  973. time: 1.6166667
  974. value: 0
  975. inSlope: Infinity
  976. outSlope: Infinity
  977. tangentMode: 103
  978. weightedMode: 0
  979. inWeight: 0
  980. outWeight: 0
  981. - serializedVersion: 3
  982. time: 2.0666666
  983. value: 1
  984. inSlope: Infinity
  985. outSlope: Infinity
  986. tangentMode: 103
  987. weightedMode: 0
  988. inWeight: 0
  989. outWeight: 0
  990. - serializedVersion: 3
  991. time: 2.1333334
  992. value: 1
  993. inSlope: Infinity
  994. outSlope: Infinity
  995. tangentMode: 103
  996. weightedMode: 0
  997. inWeight: 0
  998. outWeight: 0
  999. - serializedVersion: 3
  1000. time: 2.4666667
  1001. value: 1
  1002. inSlope: Infinity
  1003. outSlope: Infinity
  1004. tangentMode: 103
  1005. weightedMode: 0
  1006. inWeight: 0
  1007. outWeight: 0
  1008. m_PreInfinity: 2
  1009. m_PostInfinity: 2
  1010. m_RotationOrder: 4
  1011. attribute: m_IsActive
  1012. path: star3
  1013. classID: 1
  1014. script: {fileID: 0}
  1015. - curve:
  1016. serializedVersion: 2
  1017. m_Curve:
  1018. - serializedVersion: 3
  1019. time: 0
  1020. value: 0
  1021. inSlope: Infinity
  1022. outSlope: Infinity
  1023. tangentMode: 103
  1024. weightedMode: 0
  1025. inWeight: 0
  1026. outWeight: 0
  1027. - serializedVersion: 3
  1028. time: 1.2833333
  1029. value: 0
  1030. inSlope: Infinity
  1031. outSlope: Infinity
  1032. tangentMode: 103
  1033. weightedMode: 0
  1034. inWeight: 0
  1035. outWeight: 0
  1036. - serializedVersion: 3
  1037. time: 1.6166667
  1038. value: 0
  1039. inSlope: Infinity
  1040. outSlope: Infinity
  1041. tangentMode: 103
  1042. weightedMode: 0
  1043. inWeight: 0
  1044. outWeight: 0
  1045. - serializedVersion: 3
  1046. time: 2.05
  1047. value: 1
  1048. inSlope: Infinity
  1049. outSlope: Infinity
  1050. tangentMode: 103
  1051. weightedMode: 0
  1052. inWeight: 0
  1053. outWeight: 0
  1054. - serializedVersion: 3
  1055. time: 2.65
  1056. value: 0
  1057. inSlope: Infinity
  1058. outSlope: Infinity
  1059. tangentMode: 103
  1060. weightedMode: 0
  1061. inWeight: 0
  1062. outWeight: 0
  1063. m_PreInfinity: 2
  1064. m_PostInfinity: 2
  1065. m_RotationOrder: 4
  1066. attribute: m_IsActive
  1067. path: lightMask/light
  1068. classID: 1
  1069. script: {fileID: 0}
  1070. - curve:
  1071. serializedVersion: 2
  1072. m_Curve:
  1073. - serializedVersion: 3
  1074. time: 0
  1075. value: 0
  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.2166667
  1084. value: 0
  1085. inSlope: 0
  1086. outSlope: 0
  1087. tangentMode: 136
  1088. weightedMode: 0
  1089. inWeight: 0.33333334
  1090. outWeight: 0.33333334
  1091. - serializedVersion: 3
  1092. time: 1.2833333
  1093. value: 0
  1094. inSlope: 0
  1095. outSlope: 0
  1096. tangentMode: 136
  1097. weightedMode: 0
  1098. inWeight: 0.33333334
  1099. outWeight: 0.33333334
  1100. - serializedVersion: 3
  1101. time: 1.6166667
  1102. value: 0
  1103. inSlope: 0
  1104. outSlope: 0
  1105. tangentMode: 136
  1106. weightedMode: 0
  1107. inWeight: 0.33333334
  1108. outWeight: 0.33333334
  1109. - serializedVersion: 3
  1110. time: 2.65
  1111. value: 0
  1112. inSlope: 0
  1113. outSlope: 0
  1114. tangentMode: 136
  1115. weightedMode: 0
  1116. inWeight: 0.33333334
  1117. outWeight: 0.33333334
  1118. m_PreInfinity: 2
  1119. m_PostInfinity: 2
  1120. m_RotationOrder: 4
  1121. attribute: m_AnchoredPosition.x
  1122. path: EvolutionText
  1123. classID: 224
  1124. script: {fileID: 0}
  1125. - curve:
  1126. serializedVersion: 2
  1127. m_Curve:
  1128. - serializedVersion: 3
  1129. time: 0
  1130. value: 0
  1131. inSlope: 0
  1132. outSlope: 0
  1133. tangentMode: 136
  1134. weightedMode: 0
  1135. inWeight: 0.33333334
  1136. outWeight: 0.33333334
  1137. - serializedVersion: 3
  1138. time: 0.68333334
  1139. value: 0
  1140. inSlope: 0
  1141. outSlope: 0
  1142. tangentMode: 136
  1143. weightedMode: 0
  1144. inWeight: 0.33333334
  1145. outWeight: 0.33333334
  1146. - serializedVersion: 3
  1147. time: 1.0333333
  1148. value: 133
  1149. inSlope: 0
  1150. outSlope: 0
  1151. tangentMode: 136
  1152. weightedMode: 0
  1153. inWeight: 0.33333334
  1154. outWeight: 0.33333334
  1155. - serializedVersion: 3
  1156. time: 1.1333333
  1157. value: 133
  1158. inSlope: 0
  1159. outSlope: 0
  1160. tangentMode: 136
  1161. weightedMode: 0
  1162. inWeight: 0.33333334
  1163. outWeight: 0.33333334
  1164. - serializedVersion: 3
  1165. time: 1.2166667
  1166. value: 133
  1167. inSlope: 0
  1168. outSlope: 0
  1169. tangentMode: 136
  1170. weightedMode: 0
  1171. inWeight: 0.33333334
  1172. outWeight: 0.33333334
  1173. - serializedVersion: 3
  1174. time: 1.2833333
  1175. value: 133
  1176. inSlope: 0
  1177. outSlope: 0
  1178. tangentMode: 136
  1179. weightedMode: 0
  1180. inWeight: 0.33333334
  1181. outWeight: 0.33333334
  1182. - serializedVersion: 3
  1183. time: 1.6166667
  1184. value: 133
  1185. inSlope: 0
  1186. outSlope: 0
  1187. tangentMode: 136
  1188. weightedMode: 0
  1189. inWeight: 0.33333334
  1190. outWeight: 0.33333334
  1191. - serializedVersion: 3
  1192. time: 2.65
  1193. value: 133
  1194. inSlope: 0
  1195. outSlope: 0
  1196. tangentMode: 136
  1197. weightedMode: 0
  1198. inWeight: 0.33333334
  1199. outWeight: 0.33333334
  1200. m_PreInfinity: 2
  1201. m_PostInfinity: 2
  1202. m_RotationOrder: 4
  1203. attribute: m_AnchoredPosition.y
  1204. path: EvolutionText
  1205. classID: 224
  1206. script: {fileID: 0}
  1207. - curve:
  1208. serializedVersion: 2
  1209. m_Curve:
  1210. - serializedVersion: 3
  1211. time: 0
  1212. value: 0
  1213. inSlope: 0
  1214. outSlope: 0
  1215. tangentMode: 136
  1216. weightedMode: 0
  1217. inWeight: 0.33333334
  1218. outWeight: 0.33333334
  1219. - serializedVersion: 3
  1220. time: 1.1333333
  1221. value: 0
  1222. inSlope: 0
  1223. outSlope: 0
  1224. tangentMode: 136
  1225. weightedMode: 0
  1226. inWeight: 0.33333334
  1227. outWeight: 0.33333334
  1228. - serializedVersion: 3
  1229. time: 1.2166667
  1230. value: 1
  1231. inSlope: 0
  1232. outSlope: 0
  1233. tangentMode: 136
  1234. weightedMode: 0
  1235. inWeight: 0.33333334
  1236. outWeight: 0.33333334
  1237. - serializedVersion: 3
  1238. time: 1.2833333
  1239. value: 1
  1240. inSlope: 0
  1241. outSlope: 0
  1242. tangentMode: 136
  1243. weightedMode: 0
  1244. inWeight: 0.33333334
  1245. outWeight: 0.33333334
  1246. - serializedVersion: 3
  1247. time: 1.4
  1248. value: 1
  1249. inSlope: 0
  1250. outSlope: 0
  1251. tangentMode: 136
  1252. weightedMode: 0
  1253. inWeight: 0.33333334
  1254. outWeight: 0.33333334
  1255. - serializedVersion: 3
  1256. time: 1.5
  1257. value: 1
  1258. inSlope: 0
  1259. outSlope: 0
  1260. tangentMode: 136
  1261. weightedMode: 0
  1262. inWeight: 0.33333334
  1263. outWeight: 0.33333334
  1264. - serializedVersion: 3
  1265. time: 1.6166667
  1266. value: 1
  1267. inSlope: 0
  1268. outSlope: 0
  1269. tangentMode: 136
  1270. weightedMode: 0
  1271. inWeight: 0.33333334
  1272. outWeight: 0.33333334
  1273. - serializedVersion: 3
  1274. time: 2.65
  1275. value: 1
  1276. inSlope: 0
  1277. outSlope: 0
  1278. tangentMode: 136
  1279. weightedMode: 0
  1280. inWeight: 0.33333334
  1281. outWeight: 0.33333334
  1282. m_PreInfinity: 2
  1283. m_PostInfinity: 2
  1284. m_RotationOrder: 4
  1285. attribute: m_FillAmount
  1286. path: lightBar/light0
  1287. classID: 114
  1288. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1289. - curve:
  1290. serializedVersion: 2
  1291. m_Curve:
  1292. - serializedVersion: 3
  1293. time: 0
  1294. value: 0
  1295. inSlope: 0
  1296. outSlope: 0
  1297. tangentMode: 136
  1298. weightedMode: 0
  1299. inWeight: 0.33333334
  1300. outWeight: 0.33333334
  1301. - serializedVersion: 3
  1302. time: 1.2166667
  1303. value: 0
  1304. inSlope: 0
  1305. outSlope: 0
  1306. tangentMode: 136
  1307. weightedMode: 0
  1308. inWeight: 0.33333334
  1309. outWeight: 0.33333334
  1310. - serializedVersion: 3
  1311. time: 1.2833333
  1312. value: 1
  1313. inSlope: 0
  1314. outSlope: 0
  1315. tangentMode: 136
  1316. weightedMode: 0
  1317. inWeight: 0.33333334
  1318. outWeight: 0.33333334
  1319. - serializedVersion: 3
  1320. time: 1.4
  1321. value: 1
  1322. inSlope: 0
  1323. outSlope: 0
  1324. tangentMode: 136
  1325. weightedMode: 0
  1326. inWeight: 0.33333334
  1327. outWeight: 0.33333334
  1328. - serializedVersion: 3
  1329. time: 1.5
  1330. value: 1
  1331. inSlope: 0
  1332. outSlope: 0
  1333. tangentMode: 136
  1334. weightedMode: 0
  1335. inWeight: 0.33333334
  1336. outWeight: 0.33333334
  1337. - serializedVersion: 3
  1338. time: 1.6166667
  1339. value: 1
  1340. inSlope: 0
  1341. outSlope: 0
  1342. tangentMode: 136
  1343. weightedMode: 0
  1344. inWeight: 0.33333334
  1345. outWeight: 0.33333334
  1346. - serializedVersion: 3
  1347. time: 2.65
  1348. value: 1
  1349. inSlope: 0
  1350. outSlope: 0
  1351. tangentMode: 136
  1352. weightedMode: 0
  1353. inWeight: 0.33333334
  1354. outWeight: 0.33333334
  1355. m_PreInfinity: 2
  1356. m_PostInfinity: 2
  1357. m_RotationOrder: 4
  1358. attribute: m_FillAmount
  1359. path: lightBar/light1
  1360. classID: 114
  1361. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1362. - curve:
  1363. serializedVersion: 2
  1364. m_Curve:
  1365. - serializedVersion: 3
  1366. time: 0
  1367. value: 0
  1368. inSlope: 0
  1369. outSlope: 0
  1370. tangentMode: 136
  1371. weightedMode: 0
  1372. inWeight: 0.33333334
  1373. outWeight: 0.33333334
  1374. - serializedVersion: 3
  1375. time: 1.2833333
  1376. value: 0
  1377. inSlope: 0
  1378. outSlope: 0
  1379. tangentMode: 136
  1380. weightedMode: 0
  1381. inWeight: 0.33333334
  1382. outWeight: 0.33333334
  1383. - serializedVersion: 3
  1384. time: 1.4
  1385. value: 1
  1386. inSlope: 0
  1387. outSlope: 0
  1388. tangentMode: 136
  1389. weightedMode: 0
  1390. inWeight: 0.33333334
  1391. outWeight: 0.33333334
  1392. - serializedVersion: 3
  1393. time: 1.5
  1394. value: 1
  1395. inSlope: 0
  1396. outSlope: 0
  1397. tangentMode: 136
  1398. weightedMode: 0
  1399. inWeight: 0.33333334
  1400. outWeight: 0.33333334
  1401. - serializedVersion: 3
  1402. time: 1.6166667
  1403. value: 1
  1404. inSlope: 0
  1405. outSlope: 0
  1406. tangentMode: 136
  1407. weightedMode: 0
  1408. inWeight: 0.33333334
  1409. outWeight: 0.33333334
  1410. - serializedVersion: 3
  1411. time: 2.65
  1412. value: 1
  1413. inSlope: 0
  1414. outSlope: 0
  1415. tangentMode: 136
  1416. weightedMode: 0
  1417. inWeight: 0.33333334
  1418. outWeight: 0.33333334
  1419. m_PreInfinity: 2
  1420. m_PostInfinity: 2
  1421. m_RotationOrder: 4
  1422. attribute: m_FillAmount
  1423. path: lightBar/light2
  1424. classID: 114
  1425. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1426. - curve:
  1427. serializedVersion: 2
  1428. m_Curve:
  1429. - serializedVersion: 3
  1430. time: 0
  1431. value: 0
  1432. inSlope: 0
  1433. outSlope: 0
  1434. tangentMode: 136
  1435. weightedMode: 0
  1436. inWeight: 0.33333334
  1437. outWeight: 0.33333334
  1438. - serializedVersion: 3
  1439. time: 1.2833333
  1440. value: 0
  1441. inSlope: 0
  1442. outSlope: 0
  1443. tangentMode: 136
  1444. weightedMode: 0
  1445. inWeight: 0.33333334
  1446. outWeight: 0.33333334
  1447. - serializedVersion: 3
  1448. time: 1.4
  1449. value: 0
  1450. inSlope: 0
  1451. outSlope: 0
  1452. tangentMode: 136
  1453. weightedMode: 0
  1454. inWeight: 0.33333334
  1455. outWeight: 0.33333334
  1456. - serializedVersion: 3
  1457. time: 1.5
  1458. value: 1
  1459. inSlope: 0
  1460. outSlope: 0
  1461. tangentMode: 136
  1462. weightedMode: 0
  1463. inWeight: 0.33333334
  1464. outWeight: 0.33333334
  1465. - serializedVersion: 3
  1466. time: 1.6166667
  1467. value: 1
  1468. inSlope: 0
  1469. outSlope: 0
  1470. tangentMode: 136
  1471. weightedMode: 0
  1472. inWeight: 0.33333334
  1473. outWeight: 0.33333334
  1474. - serializedVersion: 3
  1475. time: 2.65
  1476. value: 1
  1477. inSlope: 0
  1478. outSlope: 0
  1479. tangentMode: 136
  1480. weightedMode: 0
  1481. inWeight: 0.33333334
  1482. outWeight: 0.33333334
  1483. m_PreInfinity: 2
  1484. m_PostInfinity: 2
  1485. m_RotationOrder: 4
  1486. attribute: m_FillAmount
  1487. path: lightBar/light3
  1488. classID: 114
  1489. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1490. - curve:
  1491. serializedVersion: 2
  1492. m_Curve:
  1493. - serializedVersion: 3
  1494. time: 0
  1495. value: 0
  1496. inSlope: 0
  1497. outSlope: 0
  1498. tangentMode: 136
  1499. weightedMode: 0
  1500. inWeight: 0.33333334
  1501. outWeight: 0.33333334
  1502. - serializedVersion: 3
  1503. time: 1.2833333
  1504. value: 0
  1505. inSlope: 0
  1506. outSlope: 0
  1507. tangentMode: 136
  1508. weightedMode: 0
  1509. inWeight: 0.33333334
  1510. outWeight: 0.33333334
  1511. - serializedVersion: 3
  1512. time: 1.4
  1513. value: 0
  1514. inSlope: 0
  1515. outSlope: 0
  1516. tangentMode: 136
  1517. weightedMode: 0
  1518. inWeight: 0.33333334
  1519. outWeight: 0.33333334
  1520. - serializedVersion: 3
  1521. time: 1.5
  1522. value: 0
  1523. inSlope: 0
  1524. outSlope: 0
  1525. tangentMode: 136
  1526. weightedMode: 0
  1527. inWeight: 0.33333334
  1528. outWeight: 0.33333334
  1529. - serializedVersion: 3
  1530. time: 1.6166667
  1531. value: 1
  1532. inSlope: 0
  1533. outSlope: 0
  1534. tangentMode: 136
  1535. weightedMode: 0
  1536. inWeight: 0.33333334
  1537. outWeight: 0.33333334
  1538. - serializedVersion: 3
  1539. time: 2.65
  1540. value: 1
  1541. inSlope: 0
  1542. outSlope: 0
  1543. tangentMode: 136
  1544. weightedMode: 0
  1545. inWeight: 0.33333334
  1546. outWeight: 0.33333334
  1547. m_PreInfinity: 2
  1548. m_PostInfinity: 2
  1549. m_RotationOrder: 4
  1550. attribute: m_FillAmount
  1551. path: lightBar/light4
  1552. classID: 114
  1553. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1554. - curve:
  1555. serializedVersion: 2
  1556. m_Curve:
  1557. - serializedVersion: 3
  1558. time: 0
  1559. value: 0.53333336
  1560. inSlope: 0
  1561. outSlope: 0
  1562. tangentMode: 136
  1563. weightedMode: 0
  1564. inWeight: 0.33333334
  1565. outWeight: 0.33333334
  1566. - serializedVersion: 3
  1567. time: 0.13333334
  1568. value: 0.53333336
  1569. inSlope: 0
  1570. outSlope: 0
  1571. tangentMode: 136
  1572. weightedMode: 0
  1573. inWeight: 0.33333334
  1574. outWeight: 0.33333334
  1575. - serializedVersion: 3
  1576. time: 2.65
  1577. value: 0.53333336
  1578. inSlope: 0
  1579. outSlope: 0
  1580. tangentMode: 136
  1581. weightedMode: 0
  1582. inWeight: 0.33333334
  1583. outWeight: 0.33333334
  1584. m_PreInfinity: 2
  1585. m_PostInfinity: 2
  1586. m_RotationOrder: 4
  1587. attribute: m_fontColor.r
  1588. path: EvolutionText
  1589. classID: 114
  1590. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  1591. - curve:
  1592. serializedVersion: 2
  1593. m_Curve:
  1594. - serializedVersion: 3
  1595. time: 0
  1596. value: 1
  1597. inSlope: 0
  1598. outSlope: 0
  1599. tangentMode: 136
  1600. weightedMode: 0
  1601. inWeight: 0.33333334
  1602. outWeight: 0.33333334
  1603. - serializedVersion: 3
  1604. time: 0.13333334
  1605. value: 1
  1606. inSlope: 0
  1607. outSlope: 0
  1608. tangentMode: 136
  1609. weightedMode: 0
  1610. inWeight: 0.33333334
  1611. outWeight: 0.33333334
  1612. - serializedVersion: 3
  1613. time: 2.65
  1614. value: 1
  1615. inSlope: 0
  1616. outSlope: 0
  1617. tangentMode: 136
  1618. weightedMode: 0
  1619. inWeight: 0.33333334
  1620. outWeight: 0.33333334
  1621. m_PreInfinity: 2
  1622. m_PostInfinity: 2
  1623. m_RotationOrder: 4
  1624. attribute: m_fontColor.g
  1625. path: EvolutionText
  1626. classID: 114
  1627. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  1628. - curve:
  1629. serializedVersion: 2
  1630. m_Curve:
  1631. - serializedVersion: 3
  1632. time: 0
  1633. value: 0.7368563
  1634. inSlope: 0
  1635. outSlope: 0
  1636. tangentMode: 136
  1637. weightedMode: 0
  1638. inWeight: 0.33333334
  1639. outWeight: 0.33333334
  1640. - serializedVersion: 3
  1641. time: 0.13333334
  1642. value: 0.7368563
  1643. inSlope: 0
  1644. outSlope: 0
  1645. tangentMode: 136
  1646. weightedMode: 0
  1647. inWeight: 0.33333334
  1648. outWeight: 0.33333334
  1649. - serializedVersion: 3
  1650. time: 2.65
  1651. value: 0.7368563
  1652. inSlope: 0
  1653. outSlope: 0
  1654. tangentMode: 136
  1655. weightedMode: 0
  1656. inWeight: 0.33333334
  1657. outWeight: 0.33333334
  1658. m_PreInfinity: 2
  1659. m_PostInfinity: 2
  1660. m_RotationOrder: 4
  1661. attribute: m_fontColor.b
  1662. path: EvolutionText
  1663. classID: 114
  1664. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  1665. - curve:
  1666. serializedVersion: 2
  1667. m_Curve:
  1668. - serializedVersion: 3
  1669. time: 0
  1670. value: 0.078431375
  1671. inSlope: 0
  1672. outSlope: 0
  1673. tangentMode: 136
  1674. weightedMode: 0
  1675. inWeight: 0.33333334
  1676. outWeight: 0.33333334
  1677. - serializedVersion: 3
  1678. time: 0.13333334
  1679. value: 1
  1680. inSlope: 0
  1681. outSlope: 0
  1682. tangentMode: 136
  1683. weightedMode: 0
  1684. inWeight: 0.33333334
  1685. outWeight: 0.33333334
  1686. - serializedVersion: 3
  1687. time: 2.65
  1688. value: 1
  1689. inSlope: 0
  1690. outSlope: 0
  1691. tangentMode: 136
  1692. weightedMode: 0
  1693. inWeight: 0.33333334
  1694. outWeight: 0.33333334
  1695. m_PreInfinity: 2
  1696. m_PostInfinity: 2
  1697. m_RotationOrder: 4
  1698. attribute: m_fontColor.a
  1699. path: EvolutionText
  1700. classID: 114
  1701. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  1702. - curve:
  1703. serializedVersion: 2
  1704. m_Curve:
  1705. - serializedVersion: 3
  1706. time: 0
  1707. value: 310
  1708. inSlope: 0
  1709. outSlope: 0
  1710. tangentMode: 136
  1711. weightedMode: 0
  1712. inWeight: 0.33333334
  1713. outWeight: 0.33333334
  1714. - serializedVersion: 3
  1715. time: 0.68333334
  1716. value: 310
  1717. inSlope: 0
  1718. outSlope: 0
  1719. tangentMode: 136
  1720. weightedMode: 0
  1721. inWeight: 0.33333334
  1722. outWeight: 0.33333334
  1723. - serializedVersion: 3
  1724. time: 1.0333333
  1725. value: 50
  1726. inSlope: 0
  1727. outSlope: 0
  1728. tangentMode: 136
  1729. weightedMode: 0
  1730. inWeight: 0.33333334
  1731. outWeight: 0.33333334
  1732. - serializedVersion: 3
  1733. time: 2.65
  1734. value: 50
  1735. inSlope: 0
  1736. outSlope: 0
  1737. tangentMode: 136
  1738. weightedMode: 0
  1739. inWeight: 0.33333334
  1740. outWeight: 0.33333334
  1741. m_PreInfinity: 2
  1742. m_PostInfinity: 2
  1743. m_RotationOrder: 4
  1744. attribute: m_fontSize
  1745. path: EvolutionText
  1746. classID: 114
  1747. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  1748. - curve:
  1749. serializedVersion: 2
  1750. m_Curve:
  1751. - serializedVersion: 3
  1752. time: 0
  1753. value: 9.8
  1754. inSlope: 0
  1755. outSlope: 0
  1756. tangentMode: 136
  1757. weightedMode: 0
  1758. inWeight: 0.33333334
  1759. outWeight: 0.33333334
  1760. - serializedVersion: 3
  1761. time: 2.65
  1762. value: 9.8
  1763. inSlope: 0
  1764. outSlope: 0
  1765. tangentMode: 136
  1766. weightedMode: 0
  1767. inWeight: 0.33333334
  1768. outWeight: 0.33333334
  1769. m_PreInfinity: 2
  1770. m_PostInfinity: 2
  1771. m_RotationOrder: 4
  1772. attribute: m_SizeDelta.x
  1773. path: lightBar/outline0
  1774. classID: 224
  1775. script: {fileID: 0}
  1776. - curve:
  1777. serializedVersion: 2
  1778. m_Curve:
  1779. - serializedVersion: 3
  1780. time: 0
  1781. value: -10
  1782. inSlope: 0
  1783. outSlope: 0
  1784. tangentMode: 136
  1785. weightedMode: 0
  1786. inWeight: 0.33333334
  1787. outWeight: 0.33333334
  1788. - serializedVersion: 3
  1789. time: 1.1333333
  1790. value: 0
  1791. inSlope: 32.87671
  1792. outSlope: 32.87671
  1793. tangentMode: 136
  1794. weightedMode: 0
  1795. inWeight: 0.33333334
  1796. outWeight: 0.33333334
  1797. - serializedVersion: 3
  1798. time: 1.2166667
  1799. value: 94
  1800. inSlope: 0
  1801. outSlope: 0
  1802. tangentMode: 136
  1803. weightedMode: 0
  1804. inWeight: 0.33333334
  1805. outWeight: 0.33333334
  1806. - serializedVersion: 3
  1807. time: 1.2833333
  1808. value: 94
  1809. inSlope: 0
  1810. outSlope: 0
  1811. tangentMode: 136
  1812. weightedMode: 0
  1813. inWeight: 0.33333334
  1814. outWeight: 0.33333334
  1815. - serializedVersion: 3
  1816. time: 2.65
  1817. value: 94
  1818. inSlope: 0
  1819. outSlope: 0
  1820. tangentMode: 136
  1821. weightedMode: 0
  1822. inWeight: 0.33333334
  1823. outWeight: 0.33333334
  1824. m_PreInfinity: 2
  1825. m_PostInfinity: 2
  1826. m_RotationOrder: 4
  1827. attribute: m_SizeDelta.y
  1828. path: lightBar/outline0
  1829. classID: 224
  1830. script: {fileID: 0}
  1831. - curve:
  1832. serializedVersion: 2
  1833. m_Curve:
  1834. - serializedVersion: 3
  1835. time: 0
  1836. value: -10
  1837. inSlope: 0
  1838. outSlope: 0
  1839. tangentMode: 136
  1840. weightedMode: 0
  1841. inWeight: 0.33333334
  1842. outWeight: 0.33333334
  1843. - serializedVersion: 3
  1844. time: 1.2166667
  1845. value: 0
  1846. inSlope: 31.16883
  1847. outSlope: 31.16883
  1848. tangentMode: 136
  1849. weightedMode: 0
  1850. inWeight: 0.33333334
  1851. outWeight: 0.33333334
  1852. - serializedVersion: 3
  1853. time: 1.2833333
  1854. value: 404
  1855. inSlope: 0
  1856. outSlope: 0
  1857. tangentMode: 136
  1858. weightedMode: 0
  1859. inWeight: 0.33333334
  1860. outWeight: 0.33333334
  1861. - serializedVersion: 3
  1862. time: 2.65
  1863. value: 404
  1864. inSlope: 0
  1865. outSlope: 0
  1866. tangentMode: 136
  1867. weightedMode: 0
  1868. inWeight: 0.33333334
  1869. outWeight: 0.33333334
  1870. m_PreInfinity: 2
  1871. m_PostInfinity: 2
  1872. m_RotationOrder: 4
  1873. attribute: m_SizeDelta.x
  1874. path: lightBar/outline1
  1875. classID: 224
  1876. script: {fileID: 0}
  1877. - curve:
  1878. serializedVersion: 2
  1879. m_Curve:
  1880. - serializedVersion: 3
  1881. time: 0
  1882. value: 10
  1883. inSlope: 0
  1884. outSlope: 0
  1885. tangentMode: 136
  1886. weightedMode: 0
  1887. inWeight: 0.33333334
  1888. outWeight: 0.33333334
  1889. - serializedVersion: 3
  1890. time: 2.65
  1891. value: 10
  1892. inSlope: 0
  1893. outSlope: 0
  1894. tangentMode: 136
  1895. weightedMode: 0
  1896. inWeight: 0.33333334
  1897. outWeight: 0.33333334
  1898. m_PreInfinity: 2
  1899. m_PostInfinity: 2
  1900. m_RotationOrder: 4
  1901. attribute: m_SizeDelta.y
  1902. path: lightBar/outline1
  1903. classID: 224
  1904. script: {fileID: 0}
  1905. - curve:
  1906. serializedVersion: 2
  1907. m_Curve:
  1908. - serializedVersion: 3
  1909. time: 0
  1910. value: 9.8
  1911. inSlope: 0
  1912. outSlope: 0
  1913. tangentMode: 136
  1914. weightedMode: 0
  1915. inWeight: 0.33333334
  1916. outWeight: 0.33333334
  1917. - serializedVersion: 3
  1918. time: 2.65
  1919. value: 9.8
  1920. inSlope: 0
  1921. outSlope: 0
  1922. tangentMode: 136
  1923. weightedMode: 0
  1924. inWeight: 0.33333334
  1925. outWeight: 0.33333334
  1926. m_PreInfinity: 2
  1927. m_PostInfinity: 2
  1928. m_RotationOrder: 4
  1929. attribute: m_SizeDelta.x
  1930. path: lightBar/outline2
  1931. classID: 224
  1932. script: {fileID: 0}
  1933. - curve:
  1934. serializedVersion: 2
  1935. m_Curve:
  1936. - serializedVersion: 3
  1937. time: 0
  1938. value: -10
  1939. inSlope: 0
  1940. outSlope: 0
  1941. tangentMode: 136
  1942. weightedMode: 0
  1943. inWeight: 0.33333334
  1944. outWeight: 0.33333334
  1945. - serializedVersion: 3
  1946. time: 1.2833333
  1947. value: 0
  1948. inSlope: 28.57143
  1949. outSlope: 28.57143
  1950. tangentMode: 136
  1951. weightedMode: 0
  1952. inWeight: 0.33333334
  1953. outWeight: 0.33333334
  1954. - serializedVersion: 3
  1955. time: 1.4
  1956. value: 272
  1957. inSlope: 0
  1958. outSlope: 0
  1959. tangentMode: 136
  1960. weightedMode: 0
  1961. inWeight: 0.33333334
  1962. outWeight: 0.33333334
  1963. - serializedVersion: 3
  1964. time: 2.65
  1965. value: 272
  1966. inSlope: 0
  1967. outSlope: 0
  1968. tangentMode: 136
  1969. weightedMode: 0
  1970. inWeight: 0.33333334
  1971. outWeight: 0.33333334
  1972. m_PreInfinity: 2
  1973. m_PostInfinity: 2
  1974. m_RotationOrder: 4
  1975. attribute: m_SizeDelta.y
  1976. path: lightBar/outline2
  1977. classID: 224
  1978. script: {fileID: 0}
  1979. - curve:
  1980. serializedVersion: 2
  1981. m_Curve:
  1982. - serializedVersion: 3
  1983. time: 0
  1984. value: -10
  1985. inSlope: 0
  1986. outSlope: 0
  1987. tangentMode: 136
  1988. weightedMode: 0
  1989. inWeight: 0.33333334
  1990. outWeight: 0.33333334
  1991. - serializedVersion: 3
  1992. time: 1.4
  1993. value: 0
  1994. inSlope: 26.666666
  1995. outSlope: 26.666666
  1996. tangentMode: 136
  1997. weightedMode: 0
  1998. inWeight: 0.33333334
  1999. outWeight: 0.33333334
  2000. - serializedVersion: 3
  2001. time: 1.5
  2002. value: 404
  2003. inSlope: 0
  2004. outSlope: 0
  2005. tangentMode: 136
  2006. weightedMode: 0
  2007. inWeight: 0.33333334
  2008. outWeight: 0.33333334
  2009. - serializedVersion: 3
  2010. time: 2.65
  2011. value: 404
  2012. inSlope: 0
  2013. outSlope: 0
  2014. tangentMode: 136
  2015. weightedMode: 0
  2016. inWeight: 0.33333334
  2017. outWeight: 0.33333334
  2018. m_PreInfinity: 2
  2019. m_PostInfinity: 2
  2020. m_RotationOrder: 4
  2021. attribute: m_SizeDelta.x
  2022. path: lightBar/outline3
  2023. classID: 224
  2024. script: {fileID: 0}
  2025. - curve:
  2026. serializedVersion: 2
  2027. m_Curve:
  2028. - serializedVersion: 3
  2029. time: 0
  2030. value: 10
  2031. inSlope: 0
  2032. outSlope: 0
  2033. tangentMode: 136
  2034. weightedMode: 0
  2035. inWeight: 0.33333334
  2036. outWeight: 0.33333334
  2037. - serializedVersion: 3
  2038. time: 2.65
  2039. value: 10
  2040. inSlope: 0
  2041. outSlope: 0
  2042. tangentMode: 136
  2043. weightedMode: 0
  2044. inWeight: 0.33333334
  2045. outWeight: 0.33333334
  2046. m_PreInfinity: 2
  2047. m_PostInfinity: 2
  2048. m_RotationOrder: 4
  2049. attribute: m_SizeDelta.y
  2050. path: lightBar/outline3
  2051. classID: 224
  2052. script: {fileID: 0}
  2053. - curve:
  2054. serializedVersion: 2
  2055. m_Curve:
  2056. - serializedVersion: 3
  2057. time: 0
  2058. value: 9.8
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 136
  2062. weightedMode: 0
  2063. inWeight: 0.33333334
  2064. outWeight: 0.33333334
  2065. - serializedVersion: 3
  2066. time: 2.65
  2067. value: 9.8
  2068. inSlope: 0
  2069. outSlope: 0
  2070. tangentMode: 136
  2071. weightedMode: 0
  2072. inWeight: 0.33333334
  2073. outWeight: 0.33333334
  2074. m_PreInfinity: 2
  2075. m_PostInfinity: 2
  2076. m_RotationOrder: 4
  2077. attribute: m_SizeDelta.x
  2078. path: lightBar/outline4
  2079. classID: 224
  2080. script: {fileID: 0}
  2081. - curve:
  2082. serializedVersion: 2
  2083. m_Curve:
  2084. - serializedVersion: 3
  2085. time: 0
  2086. value: -10
  2087. inSlope: 0
  2088. outSlope: 0
  2089. tangentMode: 136
  2090. weightedMode: 0
  2091. inWeight: 0.33333334
  2092. outWeight: 0.33333334
  2093. - serializedVersion: 3
  2094. time: 1.5
  2095. value: 0
  2096. inSlope: 24.489796
  2097. outSlope: 24.489796
  2098. tangentMode: 136
  2099. weightedMode: 0
  2100. inWeight: 0.33333334
  2101. outWeight: 0.33333334
  2102. - serializedVersion: 3
  2103. time: 1.6333333
  2104. value: 282
  2105. inSlope: 0
  2106. outSlope: 0
  2107. tangentMode: 136
  2108. weightedMode: 0
  2109. inWeight: 0.33333334
  2110. outWeight: 0.33333334
  2111. - serializedVersion: 3
  2112. time: 2.65
  2113. value: 282
  2114. inSlope: 0
  2115. outSlope: 0
  2116. tangentMode: 136
  2117. weightedMode: 0
  2118. inWeight: 0.33333334
  2119. outWeight: 0.33333334
  2120. m_PreInfinity: 2
  2121. m_PostInfinity: 2
  2122. m_RotationOrder: 4
  2123. attribute: m_SizeDelta.y
  2124. path: lightBar/outline4
  2125. classID: 224
  2126. script: {fileID: 0}
  2127. - curve:
  2128. serializedVersion: 2
  2129. m_Curve:
  2130. - serializedVersion: 3
  2131. time: 0
  2132. value: 0
  2133. inSlope: Infinity
  2134. outSlope: Infinity
  2135. tangentMode: 103
  2136. weightedMode: 0
  2137. inWeight: 0
  2138. outWeight: 0
  2139. - serializedVersion: 3
  2140. time: 1.1333333
  2141. value: 1
  2142. inSlope: Infinity
  2143. outSlope: Infinity
  2144. tangentMode: 103
  2145. weightedMode: 0
  2146. inWeight: 0
  2147. outWeight: 0
  2148. - serializedVersion: 3
  2149. time: 2.65
  2150. value: 0
  2151. inSlope: Infinity
  2152. outSlope: Infinity
  2153. tangentMode: 103
  2154. weightedMode: 0
  2155. inWeight: 0
  2156. outWeight: 0
  2157. m_PreInfinity: 2
  2158. m_PostInfinity: 2
  2159. m_RotationOrder: 4
  2160. attribute: m_IsActive
  2161. path: lightBar/outline0
  2162. classID: 1
  2163. script: {fileID: 0}
  2164. - curve:
  2165. serializedVersion: 2
  2166. m_Curve:
  2167. - serializedVersion: 3
  2168. time: 0
  2169. value: 0
  2170. inSlope: Infinity
  2171. outSlope: Infinity
  2172. tangentMode: 103
  2173. weightedMode: 0
  2174. inWeight: 0
  2175. outWeight: 0
  2176. - serializedVersion: 3
  2177. time: 1.1333333
  2178. value: 1
  2179. inSlope: Infinity
  2180. outSlope: Infinity
  2181. tangentMode: 103
  2182. weightedMode: 0
  2183. inWeight: 0
  2184. outWeight: 0
  2185. - serializedVersion: 3
  2186. time: 2.65
  2187. value: 0
  2188. inSlope: Infinity
  2189. outSlope: Infinity
  2190. tangentMode: 103
  2191. weightedMode: 0
  2192. inWeight: 0
  2193. outWeight: 0
  2194. m_PreInfinity: 2
  2195. m_PostInfinity: 2
  2196. m_RotationOrder: 4
  2197. attribute: m_IsActive
  2198. path: lightBar/outline1
  2199. classID: 1
  2200. script: {fileID: 0}
  2201. - curve:
  2202. serializedVersion: 2
  2203. m_Curve:
  2204. - serializedVersion: 3
  2205. time: 0
  2206. value: 0
  2207. inSlope: Infinity
  2208. outSlope: Infinity
  2209. tangentMode: 103
  2210. weightedMode: 0
  2211. inWeight: 0
  2212. outWeight: 0
  2213. - serializedVersion: 3
  2214. time: 1.1333333
  2215. value: 1
  2216. inSlope: Infinity
  2217. outSlope: Infinity
  2218. tangentMode: 103
  2219. weightedMode: 0
  2220. inWeight: 0
  2221. outWeight: 0
  2222. - serializedVersion: 3
  2223. time: 2.65
  2224. value: 0
  2225. inSlope: Infinity
  2226. outSlope: Infinity
  2227. tangentMode: 103
  2228. weightedMode: 0
  2229. inWeight: 0
  2230. outWeight: 0
  2231. m_PreInfinity: 2
  2232. m_PostInfinity: 2
  2233. m_RotationOrder: 4
  2234. attribute: m_IsActive
  2235. path: lightBar/outline2
  2236. classID: 1
  2237. script: {fileID: 0}
  2238. - curve:
  2239. serializedVersion: 2
  2240. m_Curve:
  2241. - serializedVersion: 3
  2242. time: 0
  2243. value: 0
  2244. inSlope: Infinity
  2245. outSlope: Infinity
  2246. tangentMode: 103
  2247. weightedMode: 0
  2248. inWeight: 0
  2249. outWeight: 0
  2250. - serializedVersion: 3
  2251. time: 1.1333333
  2252. value: 1
  2253. inSlope: Infinity
  2254. outSlope: Infinity
  2255. tangentMode: 103
  2256. weightedMode: 0
  2257. inWeight: 0
  2258. outWeight: 0
  2259. - serializedVersion: 3
  2260. time: 2.65
  2261. value: 0
  2262. inSlope: Infinity
  2263. outSlope: Infinity
  2264. tangentMode: 103
  2265. weightedMode: 0
  2266. inWeight: 0
  2267. outWeight: 0
  2268. m_PreInfinity: 2
  2269. m_PostInfinity: 2
  2270. m_RotationOrder: 4
  2271. attribute: m_IsActive
  2272. path: lightBar/outline3
  2273. classID: 1
  2274. script: {fileID: 0}
  2275. - curve:
  2276. serializedVersion: 2
  2277. m_Curve:
  2278. - serializedVersion: 3
  2279. time: 0
  2280. value: 0
  2281. inSlope: Infinity
  2282. outSlope: Infinity
  2283. tangentMode: 103
  2284. weightedMode: 0
  2285. inWeight: 0
  2286. outWeight: 0
  2287. - serializedVersion: 3
  2288. time: 1.1333333
  2289. value: 1
  2290. inSlope: Infinity
  2291. outSlope: Infinity
  2292. tangentMode: 103
  2293. weightedMode: 0
  2294. inWeight: 0
  2295. outWeight: 0
  2296. - serializedVersion: 3
  2297. time: 2.65
  2298. value: 0
  2299. inSlope: Infinity
  2300. outSlope: Infinity
  2301. tangentMode: 103
  2302. weightedMode: 0
  2303. inWeight: 0
  2304. outWeight: 0
  2305. m_PreInfinity: 2
  2306. m_PostInfinity: 2
  2307. m_RotationOrder: 4
  2308. attribute: m_IsActive
  2309. path: lightBar/outline4
  2310. classID: 1
  2311. script: {fileID: 0}
  2312. - curve:
  2313. serializedVersion: 2
  2314. m_Curve:
  2315. - serializedVersion: 3
  2316. time: 0
  2317. value: 0
  2318. inSlope: Infinity
  2319. outSlope: Infinity
  2320. tangentMode: 103
  2321. weightedMode: 0
  2322. inWeight: 0
  2323. outWeight: 0
  2324. - serializedVersion: 3
  2325. time: 0.25
  2326. value: 1
  2327. inSlope: Infinity
  2328. outSlope: Infinity
  2329. tangentMode: 103
  2330. weightedMode: 0
  2331. inWeight: 0
  2332. outWeight: 0
  2333. - serializedVersion: 3
  2334. time: 2.65
  2335. value: 1
  2336. inSlope: Infinity
  2337. outSlope: Infinity
  2338. tangentMode: 103
  2339. weightedMode: 0
  2340. inWeight: 0
  2341. outWeight: 0
  2342. m_PreInfinity: 2
  2343. m_PostInfinity: 2
  2344. m_RotationOrder: 4
  2345. attribute: m_IsActive
  2346. path: textLight
  2347. classID: 1
  2348. script: {fileID: 0}
  2349. - curve:
  2350. serializedVersion: 2
  2351. m_Curve:
  2352. - serializedVersion: 3
  2353. time: 0
  2354. value: 0.8894458
  2355. inSlope: 0
  2356. outSlope: 0
  2357. tangentMode: 136
  2358. weightedMode: 0
  2359. inWeight: 0.33333334
  2360. outWeight: 0.33333334
  2361. - serializedVersion: 3
  2362. time: 0.71666664
  2363. value: 0.8894458
  2364. inSlope: 0
  2365. outSlope: 0
  2366. tangentMode: 136
  2367. weightedMode: 0
  2368. inWeight: 0.33333334
  2369. outWeight: 0.33333334
  2370. - serializedVersion: 3
  2371. time: 2.65
  2372. value: 0.8894458
  2373. inSlope: 0
  2374. outSlope: 0
  2375. tangentMode: 136
  2376. weightedMode: 0
  2377. inWeight: 0.33333334
  2378. outWeight: 0.33333334
  2379. m_PreInfinity: 2
  2380. m_PostInfinity: 2
  2381. m_RotationOrder: 4
  2382. attribute: m_Color.r
  2383. path: textLight
  2384. classID: 114
  2385. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2386. - curve:
  2387. serializedVersion: 2
  2388. m_Curve:
  2389. - serializedVersion: 3
  2390. time: 0
  2391. value: 1
  2392. inSlope: 0
  2393. outSlope: 0
  2394. tangentMode: 136
  2395. weightedMode: 0
  2396. inWeight: 0.33333334
  2397. outWeight: 0.33333334
  2398. - serializedVersion: 3
  2399. time: 0.71666664
  2400. value: 1
  2401. inSlope: 0
  2402. outSlope: 0
  2403. tangentMode: 136
  2404. weightedMode: 0
  2405. inWeight: 0.33333334
  2406. outWeight: 0.33333334
  2407. - serializedVersion: 3
  2408. time: 2.65
  2409. value: 1
  2410. inSlope: 0
  2411. outSlope: 0
  2412. tangentMode: 136
  2413. weightedMode: 0
  2414. inWeight: 0.33333334
  2415. outWeight: 0.33333334
  2416. m_PreInfinity: 2
  2417. m_PostInfinity: 2
  2418. m_RotationOrder: 4
  2419. attribute: m_Color.g
  2420. path: textLight
  2421. classID: 114
  2422. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2423. - curve:
  2424. serializedVersion: 2
  2425. m_Curve:
  2426. - serializedVersion: 3
  2427. time: 0
  2428. value: 0.8820755
  2429. inSlope: 0
  2430. outSlope: 0
  2431. tangentMode: 136
  2432. weightedMode: 0
  2433. inWeight: 0.33333334
  2434. outWeight: 0.33333334
  2435. - serializedVersion: 3
  2436. time: 0.71666664
  2437. value: 0.8820755
  2438. inSlope: 0
  2439. outSlope: 0
  2440. tangentMode: 136
  2441. weightedMode: 0
  2442. inWeight: 0.33333334
  2443. outWeight: 0.33333334
  2444. - serializedVersion: 3
  2445. time: 2.65
  2446. value: 0.8820755
  2447. inSlope: 0
  2448. outSlope: 0
  2449. tangentMode: 136
  2450. weightedMode: 0
  2451. inWeight: 0.33333334
  2452. outWeight: 0.33333334
  2453. m_PreInfinity: 2
  2454. m_PostInfinity: 2
  2455. m_RotationOrder: 4
  2456. attribute: m_Color.b
  2457. path: textLight
  2458. classID: 114
  2459. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2460. - curve:
  2461. serializedVersion: 2
  2462. m_Curve:
  2463. - serializedVersion: 3
  2464. time: 0
  2465. value: 0.6
  2466. inSlope: 0
  2467. outSlope: 0
  2468. tangentMode: 136
  2469. weightedMode: 0
  2470. inWeight: 0.33333334
  2471. outWeight: 0.33333334
  2472. - serializedVersion: 3
  2473. time: 0.25
  2474. value: 0
  2475. inSlope: 0
  2476. outSlope: 0
  2477. tangentMode: 136
  2478. weightedMode: 0
  2479. inWeight: 0.33333334
  2480. outWeight: 0.33333334
  2481. - serializedVersion: 3
  2482. time: 0.4
  2483. value: 1
  2484. inSlope: 0
  2485. outSlope: 0
  2486. tangentMode: 136
  2487. weightedMode: 0
  2488. inWeight: 0.33333334
  2489. outWeight: 0.33333334
  2490. - serializedVersion: 3
  2491. time: 0.41666666
  2492. value: 1
  2493. inSlope: 0
  2494. outSlope: 0
  2495. tangentMode: 136
  2496. weightedMode: 0
  2497. inWeight: 0.33333334
  2498. outWeight: 0.33333334
  2499. - serializedVersion: 3
  2500. time: 0.71666664
  2501. value: 0
  2502. inSlope: 0
  2503. outSlope: 0
  2504. tangentMode: 136
  2505. weightedMode: 0
  2506. inWeight: 0.33333334
  2507. outWeight: 0.33333334
  2508. - serializedVersion: 3
  2509. time: 0.78333336
  2510. value: 0
  2511. inSlope: 0
  2512. outSlope: 0
  2513. tangentMode: 136
  2514. weightedMode: 0
  2515. inWeight: 0.33333334
  2516. outWeight: 0.33333334
  2517. - serializedVersion: 3
  2518. time: 2.65
  2519. value: 0
  2520. inSlope: 0
  2521. outSlope: 0
  2522. tangentMode: 136
  2523. weightedMode: 0
  2524. inWeight: 0.33333334
  2525. outWeight: 0.33333334
  2526. m_PreInfinity: 2
  2527. m_PostInfinity: 2
  2528. m_RotationOrder: 4
  2529. attribute: m_Color.a
  2530. path: textLight
  2531. classID: 114
  2532. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2533. m_PPtrCurves: []
  2534. m_SampleRate: 60
  2535. m_WrapMode: 0
  2536. m_Bounds:
  2537. m_Center: {x: 0, y: 0, z: 0}
  2538. m_Extent: {x: 0, y: 0, z: 0}
  2539. m_ClipBindingConstant:
  2540. genericBindings:
  2541. - serializedVersion: 2
  2542. path: 3267817781
  2543. attribute: 2086281974
  2544. script: {fileID: 0}
  2545. typeID: 1
  2546. customType: 0
  2547. isPPtrCurve: 0
  2548. - serializedVersion: 2
  2549. path: 1691525491
  2550. attribute: 304273561
  2551. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2552. typeID: 114
  2553. customType: 0
  2554. isPPtrCurve: 0
  2555. - serializedVersion: 2
  2556. path: 3267817781
  2557. attribute: 1967290853
  2558. script: {fileID: 0}
  2559. typeID: 224
  2560. customType: 28
  2561. isPPtrCurve: 0
  2562. - serializedVersion: 2
  2563. path: 3267817781
  2564. attribute: 38095219
  2565. script: {fileID: 0}
  2566. typeID: 224
  2567. customType: 28
  2568. isPPtrCurve: 0
  2569. - serializedVersion: 2
  2570. path: 773904695
  2571. attribute: 2876037403
  2572. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  2573. typeID: 114
  2574. customType: 0
  2575. isPPtrCurve: 0
  2576. - serializedVersion: 2
  2577. path: 1322649523
  2578. attribute: 4185109675
  2579. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2580. typeID: 114
  2581. customType: 0
  2582. isPPtrCurve: 0
  2583. - serializedVersion: 2
  2584. path: 2009170364
  2585. attribute: 2086281974
  2586. script: {fileID: 0}
  2587. typeID: 1
  2588. customType: 0
  2589. isPPtrCurve: 0
  2590. - serializedVersion: 2
  2591. path: 826733466
  2592. attribute: 2086281974
  2593. script: {fileID: 0}
  2594. typeID: 1
  2595. customType: 0
  2596. isPPtrCurve: 0
  2597. - serializedVersion: 2
  2598. path: 2232120750
  2599. attribute: 538195251
  2600. script: {fileID: 0}
  2601. typeID: 224
  2602. customType: 28
  2603. isPPtrCurve: 0
  2604. - serializedVersion: 2
  2605. path: 2177558155
  2606. attribute: 3063383489
  2607. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2608. typeID: 114
  2609. customType: 0
  2610. isPPtrCurve: 0
  2611. - serializedVersion: 2
  2612. path: 4140684829
  2613. attribute: 3063383489
  2614. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2615. typeID: 114
  2616. customType: 0
  2617. isPPtrCurve: 0
  2618. - serializedVersion: 2
  2619. path: 1875150759
  2620. attribute: 3063383489
  2621. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2622. typeID: 114
  2623. customType: 0
  2624. isPPtrCurve: 0
  2625. - serializedVersion: 2
  2626. path: 415479601
  2627. attribute: 3063383489
  2628. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2629. typeID: 114
  2630. customType: 0
  2631. isPPtrCurve: 0
  2632. - serializedVersion: 2
  2633. path: 2259100306
  2634. attribute: 3063383489
  2635. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2636. typeID: 114
  2637. customType: 0
  2638. isPPtrCurve: 0
  2639. - serializedVersion: 2
  2640. path: 2232120750
  2641. attribute: 4185109675
  2642. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2643. typeID: 114
  2644. customType: 0
  2645. isPPtrCurve: 0
  2646. - serializedVersion: 2
  2647. path: 2232120750
  2648. attribute: 1226342476
  2649. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2650. typeID: 114
  2651. customType: 0
  2652. isPPtrCurve: 0
  2653. - serializedVersion: 2
  2654. path: 1962316258
  2655. attribute: 38095219
  2656. script: {fileID: 0}
  2657. typeID: 224
  2658. customType: 28
  2659. isPPtrCurve: 0
  2660. - serializedVersion: 2
  2661. path: 66167156
  2662. attribute: 1967290853
  2663. script: {fileID: 0}
  2664. typeID: 224
  2665. customType: 28
  2666. isPPtrCurve: 0
  2667. - serializedVersion: 2
  2668. path: 2600005838
  2669. attribute: 38095219
  2670. script: {fileID: 0}
  2671. typeID: 224
  2672. customType: 28
  2673. isPPtrCurve: 0
  2674. - serializedVersion: 2
  2675. path: 3992961112
  2676. attribute: 1967290853
  2677. script: {fileID: 0}
  2678. typeID: 224
  2679. customType: 28
  2680. isPPtrCurve: 0
  2681. - serializedVersion: 2
  2682. path: 1939559931
  2683. attribute: 38095219
  2684. script: {fileID: 0}
  2685. typeID: 224
  2686. customType: 28
  2687. isPPtrCurve: 0
  2688. - serializedVersion: 2
  2689. path: 1962316258
  2690. attribute: 2086281974
  2691. script: {fileID: 0}
  2692. typeID: 1
  2693. customType: 0
  2694. isPPtrCurve: 0
  2695. - serializedVersion: 2
  2696. path: 66167156
  2697. attribute: 2086281974
  2698. script: {fileID: 0}
  2699. typeID: 1
  2700. customType: 0
  2701. isPPtrCurve: 0
  2702. - serializedVersion: 2
  2703. path: 2600005838
  2704. attribute: 2086281974
  2705. script: {fileID: 0}
  2706. typeID: 1
  2707. customType: 0
  2708. isPPtrCurve: 0
  2709. - serializedVersion: 2
  2710. path: 3992961112
  2711. attribute: 2086281974
  2712. script: {fileID: 0}
  2713. typeID: 1
  2714. customType: 0
  2715. isPPtrCurve: 0
  2716. - serializedVersion: 2
  2717. path: 1939559931
  2718. attribute: 2086281974
  2719. script: {fileID: 0}
  2720. typeID: 1
  2721. customType: 0
  2722. isPPtrCurve: 0
  2723. - serializedVersion: 2
  2724. path: 4034952669
  2725. attribute: 2086281974
  2726. script: {fileID: 0}
  2727. typeID: 1
  2728. customType: 0
  2729. isPPtrCurve: 0
  2730. - serializedVersion: 2
  2731. path: 4034952669
  2732. attribute: 304273561
  2733. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2734. typeID: 114
  2735. customType: 0
  2736. isPPtrCurve: 0
  2737. - serializedVersion: 2
  2738. path: 1691525491
  2739. attribute: 2526845255
  2740. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2741. typeID: 114
  2742. customType: 0
  2743. isPPtrCurve: 0
  2744. - serializedVersion: 2
  2745. path: 1691525491
  2746. attribute: 4215373228
  2747. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2748. typeID: 114
  2749. customType: 0
  2750. isPPtrCurve: 0
  2751. - serializedVersion: 2
  2752. path: 1691525491
  2753. attribute: 2334886179
  2754. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2755. typeID: 114
  2756. customType: 0
  2757. isPPtrCurve: 0
  2758. - serializedVersion: 2
  2759. path: 773904695
  2760. attribute: 3698059661
  2761. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  2762. typeID: 114
  2763. customType: 0
  2764. isPPtrCurve: 0
  2765. - serializedVersion: 2
  2766. path: 1322649523
  2767. attribute: 2110649717
  2768. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2769. typeID: 114
  2770. customType: 0
  2771. isPPtrCurve: 0
  2772. - serializedVersion: 2
  2773. path: 1322649523
  2774. attribute: 269488542
  2775. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2776. typeID: 114
  2777. customType: 0
  2778. isPPtrCurve: 0
  2779. - serializedVersion: 2
  2780. path: 1322649523
  2781. attribute: 1618666769
  2782. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2783. typeID: 114
  2784. customType: 0
  2785. isPPtrCurve: 0
  2786. - serializedVersion: 2
  2787. path: 2232120750
  2788. attribute: 1460864421
  2789. script: {fileID: 0}
  2790. typeID: 224
  2791. customType: 28
  2792. isPPtrCurve: 0
  2793. - serializedVersion: 2
  2794. path: 2232120750
  2795. attribute: 2110649717
  2796. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2797. typeID: 114
  2798. customType: 0
  2799. isPPtrCurve: 0
  2800. - serializedVersion: 2
  2801. path: 2232120750
  2802. attribute: 269488542
  2803. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2804. typeID: 114
  2805. customType: 0
  2806. isPPtrCurve: 0
  2807. - serializedVersion: 2
  2808. path: 2232120750
  2809. attribute: 1618666769
  2810. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  2811. typeID: 114
  2812. customType: 0
  2813. isPPtrCurve: 0
  2814. - serializedVersion: 2
  2815. path: 1962316258
  2816. attribute: 1967290853
  2817. script: {fileID: 0}
  2818. typeID: 224
  2819. customType: 28
  2820. isPPtrCurve: 0
  2821. - serializedVersion: 2
  2822. path: 66167156
  2823. attribute: 38095219
  2824. script: {fileID: 0}
  2825. typeID: 224
  2826. customType: 28
  2827. isPPtrCurve: 0
  2828. - serializedVersion: 2
  2829. path: 2600005838
  2830. attribute: 1967290853
  2831. script: {fileID: 0}
  2832. typeID: 224
  2833. customType: 28
  2834. isPPtrCurve: 0
  2835. - serializedVersion: 2
  2836. path: 3992961112
  2837. attribute: 38095219
  2838. script: {fileID: 0}
  2839. typeID: 224
  2840. customType: 28
  2841. isPPtrCurve: 0
  2842. - serializedVersion: 2
  2843. path: 1939559931
  2844. attribute: 1967290853
  2845. script: {fileID: 0}
  2846. typeID: 224
  2847. customType: 28
  2848. isPPtrCurve: 0
  2849. - serializedVersion: 2
  2850. path: 4034952669
  2851. attribute: 2526845255
  2852. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2853. typeID: 114
  2854. customType: 0
  2855. isPPtrCurve: 0
  2856. - serializedVersion: 2
  2857. path: 4034952669
  2858. attribute: 4215373228
  2859. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2860. typeID: 114
  2861. customType: 0
  2862. isPPtrCurve: 0
  2863. - serializedVersion: 2
  2864. path: 4034952669
  2865. attribute: 2334886179
  2866. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  2867. typeID: 114
  2868. customType: 0
  2869. isPPtrCurve: 0
  2870. pptrCurveMapping: []
  2871. m_AnimationClipSettings:
  2872. serializedVersion: 2
  2873. m_AdditiveReferencePoseClip: {fileID: 0}
  2874. m_AdditiveReferencePoseTime: 0
  2875. m_StartTime: 0
  2876. m_StopTime: 2.65
  2877. m_OrientationOffsetY: 0
  2878. m_Level: 0
  2879. m_CycleOffset: 0
  2880. m_HasAdditiveReferencePose: 0
  2881. m_LoopTime: 0
  2882. m_LoopBlend: 0
  2883. m_LoopBlendOrientation: 0
  2884. m_LoopBlendPositionY: 0
  2885. m_LoopBlendPositionXZ: 0
  2886. m_KeepOriginalOrientation: 0
  2887. m_KeepOriginalPositionY: 1
  2888. m_KeepOriginalPositionXZ: 0
  2889. m_HeightFromFeet: 0
  2890. m_Mirror: 0
  2891. m_EditorCurves:
  2892. - curve:
  2893. serializedVersion: 2
  2894. m_Curve:
  2895. - serializedVersion: 3
  2896. time: 0
  2897. value: 0
  2898. inSlope: Infinity
  2899. outSlope: Infinity
  2900. tangentMode: 103
  2901. weightedMode: 0
  2902. inWeight: 0
  2903. outWeight: 0
  2904. - serializedVersion: 3
  2905. time: 0.8833333
  2906. value: 0
  2907. inSlope: Infinity
  2908. outSlope: Infinity
  2909. tangentMode: 103
  2910. weightedMode: 0
  2911. inWeight: 0
  2912. outWeight: 0
  2913. - serializedVersion: 3
  2914. time: 0.93333334
  2915. value: 0
  2916. inSlope: Infinity
  2917. outSlope: Infinity
  2918. tangentMode: 103
  2919. weightedMode: 0
  2920. inWeight: 0
  2921. outWeight: 0
  2922. - serializedVersion: 3
  2923. time: 1.2833333
  2924. value: 0
  2925. inSlope: Infinity
  2926. outSlope: Infinity
  2927. tangentMode: 103
  2928. weightedMode: 0
  2929. inWeight: 0
  2930. outWeight: 0
  2931. - serializedVersion: 3
  2932. time: 1.4
  2933. value: 0
  2934. inSlope: Infinity
  2935. outSlope: Infinity
  2936. tangentMode: 103
  2937. weightedMode: 0
  2938. inWeight: 0
  2939. outWeight: 0
  2940. - serializedVersion: 3
  2941. time: 1.6166667
  2942. value: 0
  2943. inSlope: Infinity
  2944. outSlope: Infinity
  2945. tangentMode: 103
  2946. weightedMode: 0
  2947. inWeight: 0
  2948. outWeight: 0
  2949. - serializedVersion: 3
  2950. time: 2.0666666
  2951. value: 1
  2952. inSlope: Infinity
  2953. outSlope: Infinity
  2954. tangentMode: 103
  2955. weightedMode: 0
  2956. inWeight: 0
  2957. outWeight: 0
  2958. - serializedVersion: 3
  2959. time: 2.1333334
  2960. value: 1
  2961. inSlope: Infinity
  2962. outSlope: Infinity
  2963. tangentMode: 103
  2964. weightedMode: 0
  2965. inWeight: 0
  2966. outWeight: 0
  2967. - serializedVersion: 3
  2968. time: 2.4666667
  2969. value: 1
  2970. inSlope: Infinity
  2971. outSlope: Infinity
  2972. tangentMode: 103
  2973. weightedMode: 0
  2974. inWeight: 0
  2975. outWeight: 0
  2976. - serializedVersion: 3
  2977. time: 2.65
  2978. value: 1
  2979. inSlope: Infinity
  2980. outSlope: Infinity
  2981. tangentMode: 103
  2982. weightedMode: 0
  2983. inWeight: 0
  2984. outWeight: 0
  2985. m_PreInfinity: 2
  2986. m_PostInfinity: 2
  2987. m_RotationOrder: 4
  2988. attribute: m_IsActive
  2989. path: cardMask
  2990. classID: 1
  2991. script: {fileID: 0}
  2992. - curve:
  2993. serializedVersion: 2
  2994. m_Curve:
  2995. - serializedVersion: 3
  2996. time: 0
  2997. value: 1
  2998. inSlope: 0
  2999. outSlope: 0
  3000. tangentMode: 136
  3001. weightedMode: 0
  3002. inWeight: 0.33333334
  3003. outWeight: 0.33333334
  3004. - serializedVersion: 3
  3005. time: 0.93333334
  3006. value: 1
  3007. inSlope: 0
  3008. outSlope: 0
  3009. tangentMode: 136
  3010. weightedMode: 0
  3011. inWeight: 0.33333334
  3012. outWeight: 0.33333334
  3013. - serializedVersion: 3
  3014. time: 1.2833333
  3015. value: 1
  3016. inSlope: 0
  3017. outSlope: 0
  3018. tangentMode: 136
  3019. weightedMode: 0
  3020. inWeight: 0.33333334
  3021. outWeight: 0.33333334
  3022. - serializedVersion: 3
  3023. time: 1.6166667
  3024. value: 1
  3025. inSlope: 0
  3026. outSlope: 0
  3027. tangentMode: 136
  3028. weightedMode: 0
  3029. inWeight: 0.33333334
  3030. outWeight: 0.33333334
  3031. - serializedVersion: 3
  3032. time: 2.1333334
  3033. value: 1
  3034. inSlope: 0
  3035. outSlope: 0
  3036. tangentMode: 136
  3037. weightedMode: 0
  3038. inWeight: 0.33333334
  3039. outWeight: 0.33333334
  3040. m_PreInfinity: 2
  3041. m_PostInfinity: 2
  3042. m_RotationOrder: 4
  3043. attribute: m_Color.r
  3044. path: cardMask/CardImage
  3045. classID: 114
  3046. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3047. - curve:
  3048. serializedVersion: 2
  3049. m_Curve:
  3050. - serializedVersion: 3
  3051. time: 0
  3052. value: 1
  3053. inSlope: 0
  3054. outSlope: 0
  3055. tangentMode: 136
  3056. weightedMode: 0
  3057. inWeight: 0.33333334
  3058. outWeight: 0.33333334
  3059. - serializedVersion: 3
  3060. time: 0.93333334
  3061. value: 1
  3062. inSlope: 0
  3063. outSlope: 0
  3064. tangentMode: 136
  3065. weightedMode: 0
  3066. inWeight: 0.33333334
  3067. outWeight: 0.33333334
  3068. - serializedVersion: 3
  3069. time: 1.2833333
  3070. value: 1
  3071. inSlope: 0
  3072. outSlope: 0
  3073. tangentMode: 136
  3074. weightedMode: 0
  3075. inWeight: 0.33333334
  3076. outWeight: 0.33333334
  3077. - serializedVersion: 3
  3078. time: 1.6166667
  3079. value: 1
  3080. inSlope: 0
  3081. outSlope: 0
  3082. tangentMode: 136
  3083. weightedMode: 0
  3084. inWeight: 0.33333334
  3085. outWeight: 0.33333334
  3086. - serializedVersion: 3
  3087. time: 2.1333334
  3088. value: 1
  3089. inSlope: 0
  3090. outSlope: 0
  3091. tangentMode: 136
  3092. weightedMode: 0
  3093. inWeight: 0.33333334
  3094. outWeight: 0.33333334
  3095. m_PreInfinity: 2
  3096. m_PostInfinity: 2
  3097. m_RotationOrder: 4
  3098. attribute: m_Color.g
  3099. path: cardMask/CardImage
  3100. classID: 114
  3101. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3102. - curve:
  3103. serializedVersion: 2
  3104. m_Curve:
  3105. - serializedVersion: 3
  3106. time: 0
  3107. value: 1
  3108. inSlope: 0
  3109. outSlope: 0
  3110. tangentMode: 136
  3111. weightedMode: 0
  3112. inWeight: 0.33333334
  3113. outWeight: 0.33333334
  3114. - serializedVersion: 3
  3115. time: 0.93333334
  3116. value: 1
  3117. inSlope: 0
  3118. outSlope: 0
  3119. tangentMode: 136
  3120. weightedMode: 0
  3121. inWeight: 0.33333334
  3122. outWeight: 0.33333334
  3123. - serializedVersion: 3
  3124. time: 1.2833333
  3125. value: 1
  3126. inSlope: 0
  3127. outSlope: 0
  3128. tangentMode: 136
  3129. weightedMode: 0
  3130. inWeight: 0.33333334
  3131. outWeight: 0.33333334
  3132. - serializedVersion: 3
  3133. time: 1.6166667
  3134. value: 1
  3135. inSlope: 0
  3136. outSlope: 0
  3137. tangentMode: 136
  3138. weightedMode: 0
  3139. inWeight: 0.33333334
  3140. outWeight: 0.33333334
  3141. - serializedVersion: 3
  3142. time: 2.1333334
  3143. value: 1
  3144. inSlope: 0
  3145. outSlope: 0
  3146. tangentMode: 136
  3147. weightedMode: 0
  3148. inWeight: 0.33333334
  3149. outWeight: 0.33333334
  3150. m_PreInfinity: 2
  3151. m_PostInfinity: 2
  3152. m_RotationOrder: 4
  3153. attribute: m_Color.b
  3154. path: cardMask/CardImage
  3155. classID: 114
  3156. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3157. - curve:
  3158. serializedVersion: 2
  3159. m_Curve:
  3160. - serializedVersion: 3
  3161. time: 0
  3162. value: 0
  3163. inSlope: 0
  3164. outSlope: 0
  3165. tangentMode: 136
  3166. weightedMode: 0
  3167. inWeight: 0.33333334
  3168. outWeight: 0.33333334
  3169. - serializedVersion: 3
  3170. time: 0.8833333
  3171. value: 1
  3172. inSlope: 0
  3173. outSlope: 0
  3174. tangentMode: 136
  3175. weightedMode: 0
  3176. inWeight: 0.33333334
  3177. outWeight: 0.33333334
  3178. - serializedVersion: 3
  3179. time: 0.93333334
  3180. value: 1
  3181. inSlope: 0
  3182. outSlope: 0
  3183. tangentMode: 136
  3184. weightedMode: 0
  3185. inWeight: 0.33333334
  3186. outWeight: 0.33333334
  3187. - serializedVersion: 3
  3188. time: 1.2833333
  3189. value: 0.7467321
  3190. inSlope: -0.57240915
  3191. outSlope: -0.57240915
  3192. tangentMode: 136
  3193. weightedMode: 0
  3194. inWeight: 0.33333334
  3195. outWeight: 0.33333334
  3196. - serializedVersion: 3
  3197. time: 1.6166667
  3198. value: 0.60885376
  3199. inSlope: -0.045210555
  3200. outSlope: -0.045210555
  3201. tangentMode: 136
  3202. weightedMode: 0
  3203. inWeight: 0.33333334
  3204. outWeight: 0.33333334
  3205. - serializedVersion: 3
  3206. time: 2.0666666
  3207. value: 0.6
  3208. inSlope: 0
  3209. outSlope: 0
  3210. tangentMode: 136
  3211. weightedMode: 0
  3212. inWeight: 0.33333334
  3213. outWeight: 0.33333334
  3214. - serializedVersion: 3
  3215. time: 2.1333334
  3216. value: 1
  3217. inSlope: 0
  3218. outSlope: 0
  3219. tangentMode: 136
  3220. weightedMode: 0
  3221. inWeight: 0.33333334
  3222. outWeight: 0.33333334
  3223. - serializedVersion: 3
  3224. time: 2.4666667
  3225. value: 1
  3226. inSlope: 0
  3227. outSlope: 0
  3228. tangentMode: 136
  3229. weightedMode: 0
  3230. inWeight: 0.33333334
  3231. outWeight: 0.33333334
  3232. m_PreInfinity: 2
  3233. m_PostInfinity: 2
  3234. m_RotationOrder: 4
  3235. attribute: m_Color.a
  3236. path: cardMask/CardImage
  3237. classID: 114
  3238. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3239. - curve:
  3240. serializedVersion: 2
  3241. m_Curve:
  3242. - serializedVersion: 3
  3243. time: 0
  3244. value: 900
  3245. inSlope: 0
  3246. outSlope: 0
  3247. tangentMode: 136
  3248. weightedMode: 0
  3249. inWeight: 0.33333334
  3250. outWeight: 0.33333334
  3251. - serializedVersion: 3
  3252. time: 0.8833333
  3253. value: 900
  3254. inSlope: 0
  3255. outSlope: 0
  3256. tangentMode: 136
  3257. weightedMode: 0
  3258. inWeight: 0.33333334
  3259. outWeight: 0.33333334
  3260. - serializedVersion: 3
  3261. time: 0.93333334
  3262. value: 1800
  3263. inSlope: 18000.002
  3264. outSlope: 18000.002
  3265. tangentMode: 136
  3266. weightedMode: 0
  3267. inWeight: 0.33333334
  3268. outWeight: 0.33333334
  3269. - serializedVersion: 3
  3270. time: 1.0333333
  3271. value: 3600
  3272. inSlope: 8389.447
  3273. outSlope: 8389.447
  3274. tangentMode: 136
  3275. weightedMode: 0
  3276. inWeight: 0.33333334
  3277. outWeight: 0.33333334
  3278. - serializedVersion: 3
  3279. time: 1.2833333
  3280. value: 4736.306
  3281. inSlope: 694.842
  3282. outSlope: 694.842
  3283. tangentMode: 136
  3284. weightedMode: 0
  3285. inWeight: 0.33333334
  3286. outWeight: 0.33333334
  3287. - serializedVersion: 3
  3288. time: 1.4
  3289. value: 4800
  3290. inSlope: 0
  3291. outSlope: 0
  3292. tangentMode: 136
  3293. weightedMode: 0
  3294. inWeight: 0.33333334
  3295. outWeight: 0.33333334
  3296. - serializedVersion: 3
  3297. time: 1.6166667
  3298. value: 1612.023
  3299. inSlope: -4272.1377
  3300. outSlope: -4272.1377
  3301. tangentMode: 136
  3302. weightedMode: 0
  3303. inWeight: 0.33333334
  3304. outWeight: 0.33333334
  3305. - serializedVersion: 3
  3306. time: 2.0666666
  3307. value: 900
  3308. inSlope: 0
  3309. outSlope: 0
  3310. tangentMode: 136
  3311. weightedMode: 0
  3312. inWeight: 0.33333334
  3313. outWeight: 0.33333334
  3314. - serializedVersion: 3
  3315. time: 2.1333334
  3316. value: 900
  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: 2.4666667
  3325. value: 4800
  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: 2.65
  3334. value: 4800
  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: m_SizeDelta.x
  3345. path: cardMask
  3346. classID: 224
  3347. script: {fileID: 0}
  3348. - curve:
  3349. serializedVersion: 2
  3350. m_Curve:
  3351. - serializedVersion: 3
  3352. time: 0
  3353. value: 1200
  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.8833333
  3362. value: 1200
  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: 0.93333334
  3371. value: 2400
  3372. inSlope: 24000.004
  3373. outSlope: 24000.004
  3374. tangentMode: 136
  3375. weightedMode: 0
  3376. inWeight: 0.33333334
  3377. outWeight: 0.33333334
  3378. - serializedVersion: 3
  3379. time: 1.0333333
  3380. value: 4800
  3381. inSlope: 11185.928
  3382. outSlope: 11185.928
  3383. tangentMode: 136
  3384. weightedMode: 0
  3385. inWeight: 0.33333334
  3386. outWeight: 0.33333334
  3387. - serializedVersion: 3
  3388. time: 1.2833333
  3389. value: 6315.074
  3390. inSlope: 926.46295
  3391. outSlope: 926.46295
  3392. tangentMode: 136
  3393. weightedMode: 0
  3394. inWeight: 0.33333334
  3395. outWeight: 0.33333334
  3396. - serializedVersion: 3
  3397. time: 1.4
  3398. value: 6400
  3399. inSlope: 0
  3400. outSlope: 0
  3401. tangentMode: 136
  3402. weightedMode: 0
  3403. inWeight: 0.33333334
  3404. outWeight: 0.33333334
  3405. - serializedVersion: 3
  3406. time: 1.6166667
  3407. value: 2149.3638
  3408. inSlope: -5696.1826
  3409. outSlope: -5696.1826
  3410. tangentMode: 136
  3411. weightedMode: 0
  3412. inWeight: 0.33333334
  3413. outWeight: 0.33333334
  3414. - serializedVersion: 3
  3415. time: 2.0666666
  3416. value: 1200
  3417. inSlope: 0
  3418. outSlope: 0
  3419. tangentMode: 136
  3420. weightedMode: 0
  3421. inWeight: 0.33333334
  3422. outWeight: 0.33333334
  3423. - serializedVersion: 3
  3424. time: 2.1333334
  3425. value: 1200
  3426. inSlope: 0
  3427. outSlope: 0
  3428. tangentMode: 136
  3429. weightedMode: 0
  3430. inWeight: 0.33333334
  3431. outWeight: 0.33333334
  3432. - serializedVersion: 3
  3433. time: 2.4666667
  3434. value: 6400
  3435. inSlope: 0
  3436. outSlope: 0
  3437. tangentMode: 136
  3438. weightedMode: 0
  3439. inWeight: 0.33333334
  3440. outWeight: 0.33333334
  3441. - serializedVersion: 3
  3442. time: 2.65
  3443. value: 6400
  3444. inSlope: 0
  3445. outSlope: 0
  3446. tangentMode: 136
  3447. weightedMode: 0
  3448. inWeight: 0.33333334
  3449. outWeight: 0.33333334
  3450. m_PreInfinity: 2
  3451. m_PostInfinity: 2
  3452. m_RotationOrder: 4
  3453. attribute: m_SizeDelta.y
  3454. path: cardMask
  3455. classID: 224
  3456. script: {fileID: 0}
  3457. - curve:
  3458. serializedVersion: 2
  3459. m_Curve:
  3460. - serializedVersion: 3
  3461. time: 0
  3462. value: 6000
  3463. inSlope: 0
  3464. outSlope: 0
  3465. tangentMode: 136
  3466. weightedMode: 0
  3467. inWeight: 0.33333334
  3468. outWeight: 0.33333334
  3469. - serializedVersion: 3
  3470. time: 0.8833333
  3471. value: 6000
  3472. inSlope: 0
  3473. outSlope: 0
  3474. tangentMode: 136
  3475. weightedMode: 0
  3476. inWeight: 0.33333334
  3477. outWeight: 0.33333334
  3478. - serializedVersion: 3
  3479. time: 0.93333334
  3480. value: 6000
  3481. inSlope: 0
  3482. outSlope: 0
  3483. tangentMode: 136
  3484. weightedMode: 0
  3485. inWeight: 0.33333334
  3486. outWeight: 0.33333334
  3487. - serializedVersion: 3
  3488. time: 1.0333333
  3489. value: 6000
  3490. inSlope: 0
  3491. outSlope: 0
  3492. tangentMode: 136
  3493. weightedMode: 0
  3494. inWeight: 0.33333334
  3495. outWeight: 0.33333334
  3496. - serializedVersion: 3
  3497. time: 1.2833333
  3498. value: 6000
  3499. inSlope: 0
  3500. outSlope: 0
  3501. tangentMode: 136
  3502. weightedMode: 0
  3503. inWeight: 0.33333334
  3504. outWeight: 0.33333334
  3505. - serializedVersion: 3
  3506. time: 1.5
  3507. value: 6000
  3508. inSlope: 0
  3509. outSlope: 0
  3510. tangentMode: 136
  3511. weightedMode: 0
  3512. inWeight: 0.33333334
  3513. outWeight: 0.33333334
  3514. - serializedVersion: 3
  3515. time: 1.6166667
  3516. value: 4838.4673
  3517. inSlope: -5294.118
  3518. outSlope: -5294.118
  3519. tangentMode: 136
  3520. weightedMode: 0
  3521. inWeight: 0.33333334
  3522. outWeight: 0.33333334
  3523. - serializedVersion: 3
  3524. time: 2.0666666
  3525. value: 3000
  3526. inSlope: -6486.4478
  3527. outSlope: -6486.4478
  3528. tangentMode: 136
  3529. weightedMode: 0
  3530. inWeight: 0.33333334
  3531. outWeight: 0.33333334
  3532. - serializedVersion: 3
  3533. time: 2.1333334
  3534. value: 1487.1353
  3535. inSlope: -7749.998
  3536. outSlope: -7749.998
  3537. tangentMode: 136
  3538. weightedMode: 0
  3539. inWeight: 0.33333334
  3540. outWeight: 0.33333334
  3541. - serializedVersion: 3
  3542. time: 2.4666667
  3543. value: -100
  3544. inSlope: 0
  3545. outSlope: 0
  3546. tangentMode: 136
  3547. weightedMode: 0
  3548. inWeight: 0.33333334
  3549. outWeight: 0.33333334
  3550. m_PreInfinity: 2
  3551. m_PostInfinity: 2
  3552. m_RotationOrder: 4
  3553. attribute: m_Spacing.x
  3554. path: grid
  3555. classID: 114
  3556. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  3557. - curve:
  3558. serializedVersion: 2
  3559. m_Curve:
  3560. - serializedVersion: 3
  3561. time: 0
  3562. value: 0
  3563. inSlope: 0
  3564. outSlope: 0
  3565. tangentMode: 136
  3566. weightedMode: 0
  3567. inWeight: 0.33333334
  3568. outWeight: 0.33333334
  3569. - serializedVersion: 3
  3570. time: 1.0333333
  3571. value: 0
  3572. inSlope: 0
  3573. outSlope: 0
  3574. tangentMode: 136
  3575. weightedMode: 0
  3576. inWeight: 0.33333334
  3577. outWeight: 0.33333334
  3578. - serializedVersion: 3
  3579. time: 1.2833333
  3580. value: 0
  3581. inSlope: 0
  3582. outSlope: 0
  3583. tangentMode: 136
  3584. weightedMode: 0
  3585. inWeight: 0.33333334
  3586. outWeight: 0.33333334
  3587. - serializedVersion: 3
  3588. time: 1.6166667
  3589. value: 0
  3590. inSlope: 0
  3591. outSlope: 0
  3592. tangentMode: 136
  3593. weightedMode: 0
  3594. inWeight: 0.33333334
  3595. outWeight: 0.33333334
  3596. - serializedVersion: 3
  3597. time: 2.1333334
  3598. value: 0
  3599. inSlope: 0
  3600. outSlope: 0
  3601. tangentMode: 136
  3602. weightedMode: 0
  3603. inWeight: 0.33333334
  3604. outWeight: 0.33333334
  3605. m_PreInfinity: 2
  3606. m_PostInfinity: 2
  3607. m_RotationOrder: 4
  3608. attribute: m_Spacing.y
  3609. path: grid
  3610. classID: 114
  3611. script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
  3612. - curve:
  3613. serializedVersion: 2
  3614. m_Curve:
  3615. - serializedVersion: 3
  3616. time: 0
  3617. value: 1
  3618. inSlope: 0
  3619. outSlope: 0
  3620. tangentMode: 136
  3621. weightedMode: 0
  3622. inWeight: 0.33333334
  3623. outWeight: 0.33333334
  3624. - serializedVersion: 3
  3625. time: 1.2833333
  3626. value: 1
  3627. inSlope: 0
  3628. outSlope: 0
  3629. tangentMode: 136
  3630. weightedMode: 0
  3631. inWeight: 0.33333334
  3632. outWeight: 0.33333334
  3633. - serializedVersion: 3
  3634. time: 1.6166667
  3635. value: 1
  3636. inSlope: 0
  3637. outSlope: 0
  3638. tangentMode: 136
  3639. weightedMode: 0
  3640. inWeight: 0.33333334
  3641. outWeight: 0.33333334
  3642. - serializedVersion: 3
  3643. time: 2.1333334
  3644. value: 1
  3645. inSlope: 0
  3646. outSlope: 0
  3647. tangentMode: 136
  3648. weightedMode: 0
  3649. inWeight: 0.33333334
  3650. outWeight: 0.33333334
  3651. m_PreInfinity: 2
  3652. m_PostInfinity: 2
  3653. m_RotationOrder: 4
  3654. attribute: m_fontColor.r
  3655. path: grid/EvolutionText_r
  3656. classID: 114
  3657. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  3658. - curve:
  3659. serializedVersion: 2
  3660. m_Curve:
  3661. - serializedVersion: 3
  3662. time: 0
  3663. value: 1
  3664. inSlope: 0
  3665. outSlope: 0
  3666. tangentMode: 136
  3667. weightedMode: 0
  3668. inWeight: 0.33333334
  3669. outWeight: 0.33333334
  3670. - serializedVersion: 3
  3671. time: 1.2833333
  3672. value: 1
  3673. inSlope: 0
  3674. outSlope: 0
  3675. tangentMode: 136
  3676. weightedMode: 0
  3677. inWeight: 0.33333334
  3678. outWeight: 0.33333334
  3679. - serializedVersion: 3
  3680. time: 1.6166667
  3681. value: 1
  3682. inSlope: 0
  3683. outSlope: 0
  3684. tangentMode: 136
  3685. weightedMode: 0
  3686. inWeight: 0.33333334
  3687. outWeight: 0.33333334
  3688. - serializedVersion: 3
  3689. time: 2.1333334
  3690. value: 1
  3691. inSlope: 0
  3692. outSlope: 0
  3693. tangentMode: 136
  3694. weightedMode: 0
  3695. inWeight: 0.33333334
  3696. outWeight: 0.33333334
  3697. m_PreInfinity: 2
  3698. m_PostInfinity: 2
  3699. m_RotationOrder: 4
  3700. attribute: m_fontColor.g
  3701. path: grid/EvolutionText_r
  3702. classID: 114
  3703. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  3704. - curve:
  3705. serializedVersion: 2
  3706. m_Curve:
  3707. - serializedVersion: 3
  3708. time: 0
  3709. value: 1
  3710. inSlope: 0
  3711. outSlope: 0
  3712. tangentMode: 136
  3713. weightedMode: 0
  3714. inWeight: 0.33333334
  3715. outWeight: 0.33333334
  3716. - serializedVersion: 3
  3717. time: 1.2833333
  3718. value: 1
  3719. inSlope: 0
  3720. outSlope: 0
  3721. tangentMode: 136
  3722. weightedMode: 0
  3723. inWeight: 0.33333334
  3724. outWeight: 0.33333334
  3725. - serializedVersion: 3
  3726. time: 1.6166667
  3727. value: 1
  3728. inSlope: 0
  3729. outSlope: 0
  3730. tangentMode: 136
  3731. weightedMode: 0
  3732. inWeight: 0.33333334
  3733. outWeight: 0.33333334
  3734. - serializedVersion: 3
  3735. time: 2.1333334
  3736. value: 1
  3737. inSlope: 0
  3738. outSlope: 0
  3739. tangentMode: 136
  3740. weightedMode: 0
  3741. inWeight: 0.33333334
  3742. outWeight: 0.33333334
  3743. m_PreInfinity: 2
  3744. m_PostInfinity: 2
  3745. m_RotationOrder: 4
  3746. attribute: m_fontColor.b
  3747. path: grid/EvolutionText_r
  3748. classID: 114
  3749. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  3750. - curve:
  3751. serializedVersion: 2
  3752. m_Curve:
  3753. - serializedVersion: 3
  3754. time: 0
  3755. value: 0.09411765
  3756. inSlope: 0
  3757. outSlope: 0
  3758. tangentMode: 136
  3759. weightedMode: 0
  3760. inWeight: 0.33333334
  3761. outWeight: 0.33333334
  3762. - serializedVersion: 3
  3763. time: 1.2833333
  3764. value: 0.09411765
  3765. inSlope: 0
  3766. outSlope: 0
  3767. tangentMode: 136
  3768. weightedMode: 0
  3769. inWeight: 0.33333334
  3770. outWeight: 0.33333334
  3771. - serializedVersion: 3
  3772. time: 1.6166667
  3773. value: 0.0941177
  3774. inSlope: 0.00000015777698
  3775. outSlope: 0.00000015777698
  3776. tangentMode: 136
  3777. weightedMode: 0
  3778. inWeight: 0.33333334
  3779. outWeight: 0.33333334
  3780. - serializedVersion: 3
  3781. time: 2.1333334
  3782. value: 0.09411778
  3783. inSlope: 0.00000049670535
  3784. outSlope: 0.00000049670535
  3785. tangentMode: 136
  3786. weightedMode: 0
  3787. inWeight: 0.33333334
  3788. outWeight: 0.33333334
  3789. - serializedVersion: 3
  3790. time: 2.2166667
  3791. value: 0.094118
  3792. inSlope: 0.0000025928027
  3793. outSlope: 0.0000025928027
  3794. tangentMode: 136
  3795. weightedMode: 0
  3796. inWeight: 0.33333334
  3797. outWeight: 0.33333334
  3798. - serializedVersion: 3
  3799. time: 2.4666667
  3800. value: 1
  3801. inSlope: 0
  3802. outSlope: 0
  3803. tangentMode: 136
  3804. weightedMode: 0
  3805. inWeight: 0.33333334
  3806. outWeight: 0.33333334
  3807. m_PreInfinity: 2
  3808. m_PostInfinity: 2
  3809. m_RotationOrder: 4
  3810. attribute: m_fontColor.a
  3811. path: grid/EvolutionText_r
  3812. classID: 114
  3813. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  3814. - curve:
  3815. serializedVersion: 2
  3816. m_Curve:
  3817. - serializedVersion: 3
  3818. time: 0
  3819. value: 0
  3820. inSlope: Infinity
  3821. outSlope: Infinity
  3822. tangentMode: 103
  3823. weightedMode: 0
  3824. inWeight: 0
  3825. outWeight: 0
  3826. - serializedVersion: 3
  3827. time: 0.8833333
  3828. value: 0
  3829. inSlope: Infinity
  3830. outSlope: Infinity
  3831. tangentMode: 103
  3832. weightedMode: 0
  3833. inWeight: 0
  3834. outWeight: 0
  3835. - serializedVersion: 3
  3836. time: 1.2833333
  3837. value: 0
  3838. inSlope: Infinity
  3839. outSlope: Infinity
  3840. tangentMode: 103
  3841. weightedMode: 0
  3842. inWeight: 0
  3843. outWeight: 0
  3844. - serializedVersion: 3
  3845. time: 1.6166667
  3846. value: 0
  3847. inSlope: Infinity
  3848. outSlope: Infinity
  3849. tangentMode: 103
  3850. weightedMode: 0
  3851. inWeight: 0
  3852. outWeight: 0
  3853. - serializedVersion: 3
  3854. time: 2.0666666
  3855. value: 1
  3856. inSlope: Infinity
  3857. outSlope: Infinity
  3858. tangentMode: 103
  3859. weightedMode: 0
  3860. inWeight: 0
  3861. outWeight: 0
  3862. - serializedVersion: 3
  3863. time: 2.1333334
  3864. value: 1
  3865. inSlope: Infinity
  3866. outSlope: Infinity
  3867. tangentMode: 103
  3868. weightedMode: 0
  3869. inWeight: 0
  3870. outWeight: 0
  3871. - serializedVersion: 3
  3872. time: 2.4666667
  3873. value: 1
  3874. inSlope: Infinity
  3875. outSlope: Infinity
  3876. tangentMode: 103
  3877. weightedMode: 0
  3878. inWeight: 0
  3879. outWeight: 0
  3880. m_PreInfinity: 2
  3881. m_PostInfinity: 2
  3882. m_RotationOrder: 4
  3883. attribute: m_IsActive
  3884. path: star3
  3885. classID: 1
  3886. script: {fileID: 0}
  3887. - curve:
  3888. serializedVersion: 2
  3889. m_Curve:
  3890. - serializedVersion: 3
  3891. time: 0
  3892. value: 0
  3893. inSlope: Infinity
  3894. outSlope: Infinity
  3895. tangentMode: 103
  3896. weightedMode: 0
  3897. inWeight: 0
  3898. outWeight: 0
  3899. - serializedVersion: 3
  3900. time: 1.2833333
  3901. value: 0
  3902. inSlope: Infinity
  3903. outSlope: Infinity
  3904. tangentMode: 103
  3905. weightedMode: 0
  3906. inWeight: 0
  3907. outWeight: 0
  3908. - serializedVersion: 3
  3909. time: 1.6166667
  3910. value: 0
  3911. inSlope: Infinity
  3912. outSlope: Infinity
  3913. tangentMode: 103
  3914. weightedMode: 0
  3915. inWeight: 0
  3916. outWeight: 0
  3917. - serializedVersion: 3
  3918. time: 2.05
  3919. value: 1
  3920. inSlope: Infinity
  3921. outSlope: Infinity
  3922. tangentMode: 103
  3923. weightedMode: 0
  3924. inWeight: 0
  3925. outWeight: 0
  3926. - serializedVersion: 3
  3927. time: 2.65
  3928. value: 0
  3929. inSlope: Infinity
  3930. outSlope: Infinity
  3931. tangentMode: 103
  3932. weightedMode: 0
  3933. inWeight: 0
  3934. outWeight: 0
  3935. m_PreInfinity: 2
  3936. m_PostInfinity: 2
  3937. m_RotationOrder: 4
  3938. attribute: m_IsActive
  3939. path: lightMask/light
  3940. classID: 1
  3941. script: {fileID: 0}
  3942. - curve:
  3943. serializedVersion: 2
  3944. m_Curve:
  3945. - serializedVersion: 3
  3946. time: 0
  3947. value: 0
  3948. inSlope: 0
  3949. outSlope: 0
  3950. tangentMode: 136
  3951. weightedMode: 0
  3952. inWeight: 0.33333334
  3953. outWeight: 0.33333334
  3954. - serializedVersion: 3
  3955. time: 1.2166667
  3956. value: 0
  3957. inSlope: 0
  3958. outSlope: 0
  3959. tangentMode: 136
  3960. weightedMode: 0
  3961. inWeight: 0.33333334
  3962. outWeight: 0.33333334
  3963. - serializedVersion: 3
  3964. time: 1.2833333
  3965. value: 0
  3966. inSlope: 0
  3967. outSlope: 0
  3968. tangentMode: 136
  3969. weightedMode: 0
  3970. inWeight: 0.33333334
  3971. outWeight: 0.33333334
  3972. - serializedVersion: 3
  3973. time: 1.6166667
  3974. value: 0
  3975. inSlope: 0
  3976. outSlope: 0
  3977. tangentMode: 136
  3978. weightedMode: 0
  3979. inWeight: 0.33333334
  3980. outWeight: 0.33333334
  3981. - serializedVersion: 3
  3982. time: 2.65
  3983. value: 0
  3984. inSlope: 0
  3985. outSlope: 0
  3986. tangentMode: 136
  3987. weightedMode: 0
  3988. inWeight: 0.33333334
  3989. outWeight: 0.33333334
  3990. m_PreInfinity: 2
  3991. m_PostInfinity: 2
  3992. m_RotationOrder: 4
  3993. attribute: m_AnchoredPosition.x
  3994. path: EvolutionText
  3995. classID: 224
  3996. script: {fileID: 0}
  3997. - curve:
  3998. serializedVersion: 2
  3999. m_Curve:
  4000. - serializedVersion: 3
  4001. time: 0
  4002. value: 0
  4003. inSlope: 0
  4004. outSlope: 0
  4005. tangentMode: 136
  4006. weightedMode: 0
  4007. inWeight: 0.33333334
  4008. outWeight: 0.33333334
  4009. - serializedVersion: 3
  4010. time: 0.68333334
  4011. value: 0
  4012. inSlope: 0
  4013. outSlope: 0
  4014. tangentMode: 136
  4015. weightedMode: 0
  4016. inWeight: 0.33333334
  4017. outWeight: 0.33333334
  4018. - serializedVersion: 3
  4019. time: 1.0333333
  4020. value: 133
  4021. inSlope: 0
  4022. outSlope: 0
  4023. tangentMode: 136
  4024. weightedMode: 0
  4025. inWeight: 0.33333334
  4026. outWeight: 0.33333334
  4027. - serializedVersion: 3
  4028. time: 1.1333333
  4029. value: 133
  4030. inSlope: 0
  4031. outSlope: 0
  4032. tangentMode: 136
  4033. weightedMode: 0
  4034. inWeight: 0.33333334
  4035. outWeight: 0.33333334
  4036. - serializedVersion: 3
  4037. time: 1.2166667
  4038. value: 133
  4039. inSlope: 0
  4040. outSlope: 0
  4041. tangentMode: 136
  4042. weightedMode: 0
  4043. inWeight: 0.33333334
  4044. outWeight: 0.33333334
  4045. - serializedVersion: 3
  4046. time: 1.2833333
  4047. value: 133
  4048. inSlope: 0
  4049. outSlope: 0
  4050. tangentMode: 136
  4051. weightedMode: 0
  4052. inWeight: 0.33333334
  4053. outWeight: 0.33333334
  4054. - serializedVersion: 3
  4055. time: 1.6166667
  4056. value: 133
  4057. inSlope: 0
  4058. outSlope: 0
  4059. tangentMode: 136
  4060. weightedMode: 0
  4061. inWeight: 0.33333334
  4062. outWeight: 0.33333334
  4063. - serializedVersion: 3
  4064. time: 2.65
  4065. value: 133
  4066. inSlope: 0
  4067. outSlope: 0
  4068. tangentMode: 136
  4069. weightedMode: 0
  4070. inWeight: 0.33333334
  4071. outWeight: 0.33333334
  4072. m_PreInfinity: 2
  4073. m_PostInfinity: 2
  4074. m_RotationOrder: 4
  4075. attribute: m_AnchoredPosition.y
  4076. path: EvolutionText
  4077. classID: 224
  4078. script: {fileID: 0}
  4079. - curve:
  4080. serializedVersion: 2
  4081. m_Curve:
  4082. - serializedVersion: 3
  4083. time: 0
  4084. value: 0
  4085. inSlope: 0
  4086. outSlope: 0
  4087. tangentMode: 136
  4088. weightedMode: 0
  4089. inWeight: 0.33333334
  4090. outWeight: 0.33333334
  4091. - serializedVersion: 3
  4092. time: 1.1333333
  4093. value: 0
  4094. inSlope: 0
  4095. outSlope: 0
  4096. tangentMode: 136
  4097. weightedMode: 0
  4098. inWeight: 0.33333334
  4099. outWeight: 0.33333334
  4100. - serializedVersion: 3
  4101. time: 1.2166667
  4102. value: 1
  4103. inSlope: 0
  4104. outSlope: 0
  4105. tangentMode: 136
  4106. weightedMode: 0
  4107. inWeight: 0.33333334
  4108. outWeight: 0.33333334
  4109. - serializedVersion: 3
  4110. time: 1.2833333
  4111. value: 1
  4112. inSlope: 0
  4113. outSlope: 0
  4114. tangentMode: 136
  4115. weightedMode: 0
  4116. inWeight: 0.33333334
  4117. outWeight: 0.33333334
  4118. - serializedVersion: 3
  4119. time: 1.4
  4120. value: 1
  4121. inSlope: 0
  4122. outSlope: 0
  4123. tangentMode: 136
  4124. weightedMode: 0
  4125. inWeight: 0.33333334
  4126. outWeight: 0.33333334
  4127. - serializedVersion: 3
  4128. time: 1.5
  4129. value: 1
  4130. inSlope: 0
  4131. outSlope: 0
  4132. tangentMode: 136
  4133. weightedMode: 0
  4134. inWeight: 0.33333334
  4135. outWeight: 0.33333334
  4136. - serializedVersion: 3
  4137. time: 1.6166667
  4138. value: 1
  4139. inSlope: 0
  4140. outSlope: 0
  4141. tangentMode: 136
  4142. weightedMode: 0
  4143. inWeight: 0.33333334
  4144. outWeight: 0.33333334
  4145. - serializedVersion: 3
  4146. time: 2.65
  4147. value: 1
  4148. inSlope: 0
  4149. outSlope: 0
  4150. tangentMode: 136
  4151. weightedMode: 0
  4152. inWeight: 0.33333334
  4153. outWeight: 0.33333334
  4154. m_PreInfinity: 2
  4155. m_PostInfinity: 2
  4156. m_RotationOrder: 4
  4157. attribute: m_FillAmount
  4158. path: lightBar/light0
  4159. classID: 114
  4160. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  4161. - curve:
  4162. serializedVersion: 2
  4163. m_Curve:
  4164. - serializedVersion: 3
  4165. time: 0
  4166. value: 0
  4167. inSlope: 0
  4168. outSlope: 0
  4169. tangentMode: 136
  4170. weightedMode: 0
  4171. inWeight: 0.33333334
  4172. outWeight: 0.33333334
  4173. - serializedVersion: 3
  4174. time: 1.2166667
  4175. value: 0
  4176. inSlope: 0
  4177. outSlope: 0
  4178. tangentMode: 136
  4179. weightedMode: 0
  4180. inWeight: 0.33333334
  4181. outWeight: 0.33333334
  4182. - serializedVersion: 3
  4183. time: 1.2833333
  4184. value: 1
  4185. inSlope: 0
  4186. outSlope: 0
  4187. tangentMode: 136
  4188. weightedMode: 0
  4189. inWeight: 0.33333334
  4190. outWeight: 0.33333334
  4191. - serializedVersion: 3
  4192. time: 1.4
  4193. value: 1
  4194. inSlope: 0
  4195. outSlope: 0
  4196. tangentMode: 136
  4197. weightedMode: 0
  4198. inWeight: 0.33333334
  4199. outWeight: 0.33333334
  4200. - serializedVersion: 3
  4201. time: 1.5
  4202. value: 1
  4203. inSlope: 0
  4204. outSlope: 0
  4205. tangentMode: 136
  4206. weightedMode: 0
  4207. inWeight: 0.33333334
  4208. outWeight: 0.33333334
  4209. - serializedVersion: 3
  4210. time: 1.6166667
  4211. value: 1
  4212. inSlope: 0
  4213. outSlope: 0
  4214. tangentMode: 136
  4215. weightedMode: 0
  4216. inWeight: 0.33333334
  4217. outWeight: 0.33333334
  4218. - serializedVersion: 3
  4219. time: 2.65
  4220. value: 1
  4221. inSlope: 0
  4222. outSlope: 0
  4223. tangentMode: 136
  4224. weightedMode: 0
  4225. inWeight: 0.33333334
  4226. outWeight: 0.33333334
  4227. m_PreInfinity: 2
  4228. m_PostInfinity: 2
  4229. m_RotationOrder: 4
  4230. attribute: m_FillAmount
  4231. path: lightBar/light1
  4232. classID: 114
  4233. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  4234. - curve:
  4235. serializedVersion: 2
  4236. m_Curve:
  4237. - serializedVersion: 3
  4238. time: 0
  4239. value: 0
  4240. inSlope: 0
  4241. outSlope: 0
  4242. tangentMode: 136
  4243. weightedMode: 0
  4244. inWeight: 0.33333334
  4245. outWeight: 0.33333334
  4246. - serializedVersion: 3
  4247. time: 1.2833333
  4248. value: 0
  4249. inSlope: 0
  4250. outSlope: 0
  4251. tangentMode: 136
  4252. weightedMode: 0
  4253. inWeight: 0.33333334
  4254. outWeight: 0.33333334
  4255. - serializedVersion: 3
  4256. time: 1.4
  4257. value: 1
  4258. inSlope: 0
  4259. outSlope: 0
  4260. tangentMode: 136
  4261. weightedMode: 0
  4262. inWeight: 0.33333334
  4263. outWeight: 0.33333334
  4264. - serializedVersion: 3
  4265. time: 1.5
  4266. value: 1
  4267. inSlope: 0
  4268. outSlope: 0
  4269. tangentMode: 136
  4270. weightedMode: 0
  4271. inWeight: 0.33333334
  4272. outWeight: 0.33333334
  4273. - serializedVersion: 3
  4274. time: 1.6166667
  4275. value: 1
  4276. inSlope: 0
  4277. outSlope: 0
  4278. tangentMode: 136
  4279. weightedMode: 0
  4280. inWeight: 0.33333334
  4281. outWeight: 0.33333334
  4282. - serializedVersion: 3
  4283. time: 2.65
  4284. value: 1
  4285. inSlope: 0
  4286. outSlope: 0
  4287. tangentMode: 136
  4288. weightedMode: 0
  4289. inWeight: 0.33333334
  4290. outWeight: 0.33333334
  4291. m_PreInfinity: 2
  4292. m_PostInfinity: 2
  4293. m_RotationOrder: 4
  4294. attribute: m_FillAmount
  4295. path: lightBar/light2
  4296. classID: 114
  4297. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  4298. - curve:
  4299. serializedVersion: 2
  4300. m_Curve:
  4301. - serializedVersion: 3
  4302. time: 0
  4303. value: 0
  4304. inSlope: 0
  4305. outSlope: 0
  4306. tangentMode: 136
  4307. weightedMode: 0
  4308. inWeight: 0.33333334
  4309. outWeight: 0.33333334
  4310. - serializedVersion: 3
  4311. time: 1.2833333
  4312. value: 0
  4313. inSlope: 0
  4314. outSlope: 0
  4315. tangentMode: 136
  4316. weightedMode: 0
  4317. inWeight: 0.33333334
  4318. outWeight: 0.33333334
  4319. - serializedVersion: 3
  4320. time: 1.4
  4321. value: 0
  4322. inSlope: 0
  4323. outSlope: 0
  4324. tangentMode: 136
  4325. weightedMode: 0
  4326. inWeight: 0.33333334
  4327. outWeight: 0.33333334
  4328. - serializedVersion: 3
  4329. time: 1.5
  4330. value: 1
  4331. inSlope: 0
  4332. outSlope: 0
  4333. tangentMode: 136
  4334. weightedMode: 0
  4335. inWeight: 0.33333334
  4336. outWeight: 0.33333334
  4337. - serializedVersion: 3
  4338. time: 1.6166667
  4339. value: 1
  4340. inSlope: 0
  4341. outSlope: 0
  4342. tangentMode: 136
  4343. weightedMode: 0
  4344. inWeight: 0.33333334
  4345. outWeight: 0.33333334
  4346. - serializedVersion: 3
  4347. time: 2.65
  4348. value: 1
  4349. inSlope: 0
  4350. outSlope: 0
  4351. tangentMode: 136
  4352. weightedMode: 0
  4353. inWeight: 0.33333334
  4354. outWeight: 0.33333334
  4355. m_PreInfinity: 2
  4356. m_PostInfinity: 2
  4357. m_RotationOrder: 4
  4358. attribute: m_FillAmount
  4359. path: lightBar/light3
  4360. classID: 114
  4361. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  4362. - curve:
  4363. serializedVersion: 2
  4364. m_Curve:
  4365. - serializedVersion: 3
  4366. time: 0
  4367. value: 0
  4368. inSlope: 0
  4369. outSlope: 0
  4370. tangentMode: 136
  4371. weightedMode: 0
  4372. inWeight: 0.33333334
  4373. outWeight: 0.33333334
  4374. - serializedVersion: 3
  4375. time: 1.2833333
  4376. value: 0
  4377. inSlope: 0
  4378. outSlope: 0
  4379. tangentMode: 136
  4380. weightedMode: 0
  4381. inWeight: 0.33333334
  4382. outWeight: 0.33333334
  4383. - serializedVersion: 3
  4384. time: 1.4
  4385. value: 0
  4386. inSlope: 0
  4387. outSlope: 0
  4388. tangentMode: 136
  4389. weightedMode: 0
  4390. inWeight: 0.33333334
  4391. outWeight: 0.33333334
  4392. - serializedVersion: 3
  4393. time: 1.5
  4394. value: 0
  4395. inSlope: 0
  4396. outSlope: 0
  4397. tangentMode: 136
  4398. weightedMode: 0
  4399. inWeight: 0.33333334
  4400. outWeight: 0.33333334
  4401. - serializedVersion: 3
  4402. time: 1.6166667
  4403. value: 1
  4404. inSlope: 0
  4405. outSlope: 0
  4406. tangentMode: 136
  4407. weightedMode: 0
  4408. inWeight: 0.33333334
  4409. outWeight: 0.33333334
  4410. - serializedVersion: 3
  4411. time: 2.65
  4412. value: 1
  4413. inSlope: 0
  4414. outSlope: 0
  4415. tangentMode: 136
  4416. weightedMode: 0
  4417. inWeight: 0.33333334
  4418. outWeight: 0.33333334
  4419. m_PreInfinity: 2
  4420. m_PostInfinity: 2
  4421. m_RotationOrder: 4
  4422. attribute: m_FillAmount
  4423. path: lightBar/light4
  4424. classID: 114
  4425. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  4426. - curve:
  4427. serializedVersion: 2
  4428. m_Curve:
  4429. - serializedVersion: 3
  4430. time: 0
  4431. value: 0.53333336
  4432. inSlope: 0
  4433. outSlope: 0
  4434. tangentMode: 136
  4435. weightedMode: 0
  4436. inWeight: 0.33333334
  4437. outWeight: 0.33333334
  4438. - serializedVersion: 3
  4439. time: 0.13333334
  4440. value: 0.53333336
  4441. inSlope: 0
  4442. outSlope: 0
  4443. tangentMode: 136
  4444. weightedMode: 0
  4445. inWeight: 0.33333334
  4446. outWeight: 0.33333334
  4447. - serializedVersion: 3
  4448. time: 2.65
  4449. value: 0.53333336
  4450. inSlope: 0
  4451. outSlope: 0
  4452. tangentMode: 136
  4453. weightedMode: 0
  4454. inWeight: 0.33333334
  4455. outWeight: 0.33333334
  4456. m_PreInfinity: 2
  4457. m_PostInfinity: 2
  4458. m_RotationOrder: 4
  4459. attribute: m_fontColor.r
  4460. path: EvolutionText
  4461. classID: 114
  4462. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  4463. - curve:
  4464. serializedVersion: 2
  4465. m_Curve:
  4466. - serializedVersion: 3
  4467. time: 0
  4468. value: 1
  4469. inSlope: 0
  4470. outSlope: 0
  4471. tangentMode: 136
  4472. weightedMode: 0
  4473. inWeight: 0.33333334
  4474. outWeight: 0.33333334
  4475. - serializedVersion: 3
  4476. time: 0.13333334
  4477. value: 1
  4478. inSlope: 0
  4479. outSlope: 0
  4480. tangentMode: 136
  4481. weightedMode: 0
  4482. inWeight: 0.33333334
  4483. outWeight: 0.33333334
  4484. - serializedVersion: 3
  4485. time: 2.65
  4486. value: 1
  4487. inSlope: 0
  4488. outSlope: 0
  4489. tangentMode: 136
  4490. weightedMode: 0
  4491. inWeight: 0.33333334
  4492. outWeight: 0.33333334
  4493. m_PreInfinity: 2
  4494. m_PostInfinity: 2
  4495. m_RotationOrder: 4
  4496. attribute: m_fontColor.g
  4497. path: EvolutionText
  4498. classID: 114
  4499. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  4500. - curve:
  4501. serializedVersion: 2
  4502. m_Curve:
  4503. - serializedVersion: 3
  4504. time: 0
  4505. value: 0.7368563
  4506. inSlope: 0
  4507. outSlope: 0
  4508. tangentMode: 136
  4509. weightedMode: 0
  4510. inWeight: 0.33333334
  4511. outWeight: 0.33333334
  4512. - serializedVersion: 3
  4513. time: 0.13333334
  4514. value: 0.7368563
  4515. inSlope: 0
  4516. outSlope: 0
  4517. tangentMode: 136
  4518. weightedMode: 0
  4519. inWeight: 0.33333334
  4520. outWeight: 0.33333334
  4521. - serializedVersion: 3
  4522. time: 2.65
  4523. value: 0.7368563
  4524. inSlope: 0
  4525. outSlope: 0
  4526. tangentMode: 136
  4527. weightedMode: 0
  4528. inWeight: 0.33333334
  4529. outWeight: 0.33333334
  4530. m_PreInfinity: 2
  4531. m_PostInfinity: 2
  4532. m_RotationOrder: 4
  4533. attribute: m_fontColor.b
  4534. path: EvolutionText
  4535. classID: 114
  4536. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  4537. - curve:
  4538. serializedVersion: 2
  4539. m_Curve:
  4540. - serializedVersion: 3
  4541. time: 0
  4542. value: 0.078431375
  4543. inSlope: 0
  4544. outSlope: 0
  4545. tangentMode: 136
  4546. weightedMode: 0
  4547. inWeight: 0.33333334
  4548. outWeight: 0.33333334
  4549. - serializedVersion: 3
  4550. time: 0.13333334
  4551. value: 1
  4552. inSlope: 0
  4553. outSlope: 0
  4554. tangentMode: 136
  4555. weightedMode: 0
  4556. inWeight: 0.33333334
  4557. outWeight: 0.33333334
  4558. - serializedVersion: 3
  4559. time: 2.65
  4560. value: 1
  4561. inSlope: 0
  4562. outSlope: 0
  4563. tangentMode: 136
  4564. weightedMode: 0
  4565. inWeight: 0.33333334
  4566. outWeight: 0.33333334
  4567. m_PreInfinity: 2
  4568. m_PostInfinity: 2
  4569. m_RotationOrder: 4
  4570. attribute: m_fontColor.a
  4571. path: EvolutionText
  4572. classID: 114
  4573. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  4574. - curve:
  4575. serializedVersion: 2
  4576. m_Curve:
  4577. - serializedVersion: 3
  4578. time: 0
  4579. value: 310
  4580. inSlope: 0
  4581. outSlope: 0
  4582. tangentMode: 136
  4583. weightedMode: 0
  4584. inWeight: 0.33333334
  4585. outWeight: 0.33333334
  4586. - serializedVersion: 3
  4587. time: 0.68333334
  4588. value: 310
  4589. inSlope: 0
  4590. outSlope: 0
  4591. tangentMode: 136
  4592. weightedMode: 0
  4593. inWeight: 0.33333334
  4594. outWeight: 0.33333334
  4595. - serializedVersion: 3
  4596. time: 1.0333333
  4597. value: 50
  4598. inSlope: 0
  4599. outSlope: 0
  4600. tangentMode: 136
  4601. weightedMode: 0
  4602. inWeight: 0.33333334
  4603. outWeight: 0.33333334
  4604. - serializedVersion: 3
  4605. time: 2.65
  4606. value: 50
  4607. inSlope: 0
  4608. outSlope: 0
  4609. tangentMode: 136
  4610. weightedMode: 0
  4611. inWeight: 0.33333334
  4612. outWeight: 0.33333334
  4613. m_PreInfinity: 2
  4614. m_PostInfinity: 2
  4615. m_RotationOrder: 4
  4616. attribute: m_fontSize
  4617. path: EvolutionText
  4618. classID: 114
  4619. script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
  4620. - curve:
  4621. serializedVersion: 2
  4622. m_Curve:
  4623. - serializedVersion: 3
  4624. time: 0
  4625. value: 9.8
  4626. inSlope: 0
  4627. outSlope: 0
  4628. tangentMode: 136
  4629. weightedMode: 0
  4630. inWeight: 0.33333334
  4631. outWeight: 0.33333334
  4632. - serializedVersion: 3
  4633. time: 2.65
  4634. value: 9.8
  4635. inSlope: 0
  4636. outSlope: 0
  4637. tangentMode: 136
  4638. weightedMode: 0
  4639. inWeight: 0.33333334
  4640. outWeight: 0.33333334
  4641. m_PreInfinity: 2
  4642. m_PostInfinity: 2
  4643. m_RotationOrder: 4
  4644. attribute: m_SizeDelta.x
  4645. path: lightBar/outline0
  4646. classID: 224
  4647. script: {fileID: 0}
  4648. - curve:
  4649. serializedVersion: 2
  4650. m_Curve:
  4651. - serializedVersion: 3
  4652. time: 0
  4653. value: -10
  4654. inSlope: 0
  4655. outSlope: 0
  4656. tangentMode: 136
  4657. weightedMode: 0
  4658. inWeight: 0.33333334
  4659. outWeight: 0.33333334
  4660. - serializedVersion: 3
  4661. time: 1.1333333
  4662. value: 0
  4663. inSlope: 32.87671
  4664. outSlope: 32.87671
  4665. tangentMode: 136
  4666. weightedMode: 0
  4667. inWeight: 0.33333334
  4668. outWeight: 0.33333334
  4669. - serializedVersion: 3
  4670. time: 1.2166667
  4671. value: 94
  4672. inSlope: 0
  4673. outSlope: 0
  4674. tangentMode: 136
  4675. weightedMode: 0
  4676. inWeight: 0.33333334
  4677. outWeight: 0.33333334
  4678. - serializedVersion: 3
  4679. time: 1.2833333
  4680. value: 94
  4681. inSlope: 0
  4682. outSlope: 0
  4683. tangentMode: 136
  4684. weightedMode: 0
  4685. inWeight: 0.33333334
  4686. outWeight: 0.33333334
  4687. - serializedVersion: 3
  4688. time: 2.65
  4689. value: 94
  4690. inSlope: 0
  4691. outSlope: 0
  4692. tangentMode: 136
  4693. weightedMode: 0
  4694. inWeight: 0.33333334
  4695. outWeight: 0.33333334
  4696. m_PreInfinity: 2
  4697. m_PostInfinity: 2
  4698. m_RotationOrder: 4
  4699. attribute: m_SizeDelta.y
  4700. path: lightBar/outline0
  4701. classID: 224
  4702. script: {fileID: 0}
  4703. - curve:
  4704. serializedVersion: 2
  4705. m_Curve:
  4706. - serializedVersion: 3
  4707. time: 0
  4708. value: -10
  4709. inSlope: 0
  4710. outSlope: 0
  4711. tangentMode: 136
  4712. weightedMode: 0
  4713. inWeight: 0.33333334
  4714. outWeight: 0.33333334
  4715. - serializedVersion: 3
  4716. time: 1.2166667
  4717. value: 0
  4718. inSlope: 31.16883
  4719. outSlope: 31.16883
  4720. tangentMode: 136
  4721. weightedMode: 0
  4722. inWeight: 0.33333334
  4723. outWeight: 0.33333334
  4724. - serializedVersion: 3
  4725. time: 1.2833333
  4726. value: 404
  4727. inSlope: 0
  4728. outSlope: 0
  4729. tangentMode: 136
  4730. weightedMode: 0
  4731. inWeight: 0.33333334
  4732. outWeight: 0.33333334
  4733. - serializedVersion: 3
  4734. time: 2.65
  4735. value: 404
  4736. inSlope: 0
  4737. outSlope: 0
  4738. tangentMode: 136
  4739. weightedMode: 0
  4740. inWeight: 0.33333334
  4741. outWeight: 0.33333334
  4742. m_PreInfinity: 2
  4743. m_PostInfinity: 2
  4744. m_RotationOrder: 4
  4745. attribute: m_SizeDelta.x
  4746. path: lightBar/outline1
  4747. classID: 224
  4748. script: {fileID: 0}
  4749. - curve:
  4750. serializedVersion: 2
  4751. m_Curve:
  4752. - serializedVersion: 3
  4753. time: 0
  4754. value: 10
  4755. inSlope: 0
  4756. outSlope: 0
  4757. tangentMode: 136
  4758. weightedMode: 0
  4759. inWeight: 0.33333334
  4760. outWeight: 0.33333334
  4761. - serializedVersion: 3
  4762. time: 2.65
  4763. value: 10
  4764. inSlope: 0
  4765. outSlope: 0
  4766. tangentMode: 136
  4767. weightedMode: 0
  4768. inWeight: 0.33333334
  4769. outWeight: 0.33333334
  4770. m_PreInfinity: 2
  4771. m_PostInfinity: 2
  4772. m_RotationOrder: 4
  4773. attribute: m_SizeDelta.y
  4774. path: lightBar/outline1
  4775. classID: 224
  4776. script: {fileID: 0}
  4777. - curve:
  4778. serializedVersion: 2
  4779. m_Curve:
  4780. - serializedVersion: 3
  4781. time: 0
  4782. value: 9.8
  4783. inSlope: 0
  4784. outSlope: 0
  4785. tangentMode: 136
  4786. weightedMode: 0
  4787. inWeight: 0.33333334
  4788. outWeight: 0.33333334
  4789. - serializedVersion: 3
  4790. time: 2.65
  4791. value: 9.8
  4792. inSlope: 0
  4793. outSlope: 0
  4794. tangentMode: 136
  4795. weightedMode: 0
  4796. inWeight: 0.33333334
  4797. outWeight: 0.33333334
  4798. m_PreInfinity: 2
  4799. m_PostInfinity: 2
  4800. m_RotationOrder: 4
  4801. attribute: m_SizeDelta.x
  4802. path: lightBar/outline2
  4803. classID: 224
  4804. script: {fileID: 0}
  4805. - curve:
  4806. serializedVersion: 2
  4807. m_Curve:
  4808. - serializedVersion: 3
  4809. time: 0
  4810. value: -10
  4811. inSlope: 0
  4812. outSlope: 0
  4813. tangentMode: 136
  4814. weightedMode: 0
  4815. inWeight: 0.33333334
  4816. outWeight: 0.33333334
  4817. - serializedVersion: 3
  4818. time: 1.2833333
  4819. value: 0
  4820. inSlope: 28.57143
  4821. outSlope: 28.57143
  4822. tangentMode: 136
  4823. weightedMode: 0
  4824. inWeight: 0.33333334
  4825. outWeight: 0.33333334
  4826. - serializedVersion: 3
  4827. time: 1.4
  4828. value: 272
  4829. inSlope: 0
  4830. outSlope: 0
  4831. tangentMode: 136
  4832. weightedMode: 0
  4833. inWeight: 0.33333334
  4834. outWeight: 0.33333334
  4835. - serializedVersion: 3
  4836. time: 2.65
  4837. value: 272
  4838. inSlope: 0
  4839. outSlope: 0
  4840. tangentMode: 136
  4841. weightedMode: 0
  4842. inWeight: 0.33333334
  4843. outWeight: 0.33333334
  4844. m_PreInfinity: 2
  4845. m_PostInfinity: 2
  4846. m_RotationOrder: 4
  4847. attribute: m_SizeDelta.y
  4848. path: lightBar/outline2
  4849. classID: 224
  4850. script: {fileID: 0}
  4851. - curve:
  4852. serializedVersion: 2
  4853. m_Curve:
  4854. - serializedVersion: 3
  4855. time: 0
  4856. value: -10
  4857. inSlope: 0
  4858. outSlope: 0
  4859. tangentMode: 136
  4860. weightedMode: 0
  4861. inWeight: 0.33333334
  4862. outWeight: 0.33333334
  4863. - serializedVersion: 3
  4864. time: 1.4
  4865. value: 0
  4866. inSlope: 26.666666
  4867. outSlope: 26.666666
  4868. tangentMode: 136
  4869. weightedMode: 0
  4870. inWeight: 0.33333334
  4871. outWeight: 0.33333334
  4872. - serializedVersion: 3
  4873. time: 1.5
  4874. value: 404
  4875. inSlope: 0
  4876. outSlope: 0
  4877. tangentMode: 136
  4878. weightedMode: 0
  4879. inWeight: 0.33333334
  4880. outWeight: 0.33333334
  4881. - serializedVersion: 3
  4882. time: 2.65
  4883. value: 404
  4884. inSlope: 0
  4885. outSlope: 0
  4886. tangentMode: 136
  4887. weightedMode: 0
  4888. inWeight: 0.33333334
  4889. outWeight: 0.33333334
  4890. m_PreInfinity: 2
  4891. m_PostInfinity: 2
  4892. m_RotationOrder: 4
  4893. attribute: m_SizeDelta.x
  4894. path: lightBar/outline3
  4895. classID: 224
  4896. script: {fileID: 0}
  4897. - curve:
  4898. serializedVersion: 2
  4899. m_Curve:
  4900. - serializedVersion: 3
  4901. time: 0
  4902. value: 10
  4903. inSlope: 0
  4904. outSlope: 0
  4905. tangentMode: 136
  4906. weightedMode: 0
  4907. inWeight: 0.33333334
  4908. outWeight: 0.33333334
  4909. - serializedVersion: 3
  4910. time: 2.65
  4911. value: 10
  4912. inSlope: 0
  4913. outSlope: 0
  4914. tangentMode: 136
  4915. weightedMode: 0
  4916. inWeight: 0.33333334
  4917. outWeight: 0.33333334
  4918. m_PreInfinity: 2
  4919. m_PostInfinity: 2
  4920. m_RotationOrder: 4
  4921. attribute: m_SizeDelta.y
  4922. path: lightBar/outline3
  4923. classID: 224
  4924. script: {fileID: 0}
  4925. - curve:
  4926. serializedVersion: 2
  4927. m_Curve:
  4928. - serializedVersion: 3
  4929. time: 0
  4930. value: 9.8
  4931. inSlope: 0
  4932. outSlope: 0
  4933. tangentMode: 136
  4934. weightedMode: 0
  4935. inWeight: 0.33333334
  4936. outWeight: 0.33333334
  4937. - serializedVersion: 3
  4938. time: 2.65
  4939. value: 9.8
  4940. inSlope: 0
  4941. outSlope: 0
  4942. tangentMode: 136
  4943. weightedMode: 0
  4944. inWeight: 0.33333334
  4945. outWeight: 0.33333334
  4946. m_PreInfinity: 2
  4947. m_PostInfinity: 2
  4948. m_RotationOrder: 4
  4949. attribute: m_SizeDelta.x
  4950. path: lightBar/outline4
  4951. classID: 224
  4952. script: {fileID: 0}
  4953. - curve:
  4954. serializedVersion: 2
  4955. m_Curve:
  4956. - serializedVersion: 3
  4957. time: 0
  4958. value: -10
  4959. inSlope: 0
  4960. outSlope: 0
  4961. tangentMode: 136
  4962. weightedMode: 0
  4963. inWeight: 0.33333334
  4964. outWeight: 0.33333334
  4965. - serializedVersion: 3
  4966. time: 1.5
  4967. value: 0
  4968. inSlope: 24.489796
  4969. outSlope: 24.489796
  4970. tangentMode: 136
  4971. weightedMode: 0
  4972. inWeight: 0.33333334
  4973. outWeight: 0.33333334
  4974. - serializedVersion: 3
  4975. time: 1.6333333
  4976. value: 282
  4977. inSlope: 0
  4978. outSlope: 0
  4979. tangentMode: 136
  4980. weightedMode: 0
  4981. inWeight: 0.33333334
  4982. outWeight: 0.33333334
  4983. - serializedVersion: 3
  4984. time: 2.65
  4985. value: 282
  4986. inSlope: 0
  4987. outSlope: 0
  4988. tangentMode: 136
  4989. weightedMode: 0
  4990. inWeight: 0.33333334
  4991. outWeight: 0.33333334
  4992. m_PreInfinity: 2
  4993. m_PostInfinity: 2
  4994. m_RotationOrder: 4
  4995. attribute: m_SizeDelta.y
  4996. path: lightBar/outline4
  4997. classID: 224
  4998. script: {fileID: 0}
  4999. - curve:
  5000. serializedVersion: 2
  5001. m_Curve:
  5002. - serializedVersion: 3
  5003. time: 0
  5004. value: 0
  5005. inSlope: Infinity
  5006. outSlope: Infinity
  5007. tangentMode: 103
  5008. weightedMode: 0
  5009. inWeight: 0
  5010. outWeight: 0
  5011. - serializedVersion: 3
  5012. time: 1.1333333
  5013. value: 1
  5014. inSlope: Infinity
  5015. outSlope: Infinity
  5016. tangentMode: 103
  5017. weightedMode: 0
  5018. inWeight: 0
  5019. outWeight: 0
  5020. - serializedVersion: 3
  5021. time: 2.65
  5022. value: 0
  5023. inSlope: Infinity
  5024. outSlope: Infinity
  5025. tangentMode: 103
  5026. weightedMode: 0
  5027. inWeight: 0
  5028. outWeight: 0
  5029. m_PreInfinity: 2
  5030. m_PostInfinity: 2
  5031. m_RotationOrder: 4
  5032. attribute: m_IsActive
  5033. path: lightBar/outline0
  5034. classID: 1
  5035. script: {fileID: 0}
  5036. - curve:
  5037. serializedVersion: 2
  5038. m_Curve:
  5039. - serializedVersion: 3
  5040. time: 0
  5041. value: 0
  5042. inSlope: Infinity
  5043. outSlope: Infinity
  5044. tangentMode: 103
  5045. weightedMode: 0
  5046. inWeight: 0
  5047. outWeight: 0
  5048. - serializedVersion: 3
  5049. time: 1.1333333
  5050. value: 1
  5051. inSlope: Infinity
  5052. outSlope: Infinity
  5053. tangentMode: 103
  5054. weightedMode: 0
  5055. inWeight: 0
  5056. outWeight: 0
  5057. - serializedVersion: 3
  5058. time: 2.65
  5059. value: 0
  5060. inSlope: Infinity
  5061. outSlope: Infinity
  5062. tangentMode: 103
  5063. weightedMode: 0
  5064. inWeight: 0
  5065. outWeight: 0
  5066. m_PreInfinity: 2
  5067. m_PostInfinity: 2
  5068. m_RotationOrder: 4
  5069. attribute: m_IsActive
  5070. path: lightBar/outline1
  5071. classID: 1
  5072. script: {fileID: 0}
  5073. - curve:
  5074. serializedVersion: 2
  5075. m_Curve:
  5076. - serializedVersion: 3
  5077. time: 0
  5078. value: 0
  5079. inSlope: Infinity
  5080. outSlope: Infinity
  5081. tangentMode: 103
  5082. weightedMode: 0
  5083. inWeight: 0
  5084. outWeight: 0
  5085. - serializedVersion: 3
  5086. time: 1.1333333
  5087. value: 1
  5088. inSlope: Infinity
  5089. outSlope: Infinity
  5090. tangentMode: 103
  5091. weightedMode: 0
  5092. inWeight: 0
  5093. outWeight: 0
  5094. - serializedVersion: 3
  5095. time: 2.65
  5096. value: 0
  5097. inSlope: Infinity
  5098. outSlope: Infinity
  5099. tangentMode: 103
  5100. weightedMode: 0
  5101. inWeight: 0
  5102. outWeight: 0
  5103. m_PreInfinity: 2
  5104. m_PostInfinity: 2
  5105. m_RotationOrder: 4
  5106. attribute: m_IsActive
  5107. path: lightBar/outline2
  5108. classID: 1
  5109. script: {fileID: 0}
  5110. - curve:
  5111. serializedVersion: 2
  5112. m_Curve:
  5113. - serializedVersion: 3
  5114. time: 0
  5115. value: 0
  5116. inSlope: Infinity
  5117. outSlope: Infinity
  5118. tangentMode: 103
  5119. weightedMode: 0
  5120. inWeight: 0
  5121. outWeight: 0
  5122. - serializedVersion: 3
  5123. time: 1.1333333
  5124. value: 1
  5125. inSlope: Infinity
  5126. outSlope: Infinity
  5127. tangentMode: 103
  5128. weightedMode: 0
  5129. inWeight: 0
  5130. outWeight: 0
  5131. - serializedVersion: 3
  5132. time: 2.65
  5133. value: 0
  5134. inSlope: Infinity
  5135. outSlope: Infinity
  5136. tangentMode: 103
  5137. weightedMode: 0
  5138. inWeight: 0
  5139. outWeight: 0
  5140. m_PreInfinity: 2
  5141. m_PostInfinity: 2
  5142. m_RotationOrder: 4
  5143. attribute: m_IsActive
  5144. path: lightBar/outline3
  5145. classID: 1
  5146. script: {fileID: 0}
  5147. - curve:
  5148. serializedVersion: 2
  5149. m_Curve:
  5150. - serializedVersion: 3
  5151. time: 0
  5152. value: 0
  5153. inSlope: Infinity
  5154. outSlope: Infinity
  5155. tangentMode: 103
  5156. weightedMode: 0
  5157. inWeight: 0
  5158. outWeight: 0
  5159. - serializedVersion: 3
  5160. time: 1.1333333
  5161. value: 1
  5162. inSlope: Infinity
  5163. outSlope: Infinity
  5164. tangentMode: 103
  5165. weightedMode: 0
  5166. inWeight: 0
  5167. outWeight: 0
  5168. - serializedVersion: 3
  5169. time: 2.65
  5170. value: 0
  5171. inSlope: Infinity
  5172. outSlope: Infinity
  5173. tangentMode: 103
  5174. weightedMode: 0
  5175. inWeight: 0
  5176. outWeight: 0
  5177. m_PreInfinity: 2
  5178. m_PostInfinity: 2
  5179. m_RotationOrder: 4
  5180. attribute: m_IsActive
  5181. path: lightBar/outline4
  5182. classID: 1
  5183. script: {fileID: 0}
  5184. - curve:
  5185. serializedVersion: 2
  5186. m_Curve:
  5187. - serializedVersion: 3
  5188. time: 0
  5189. value: 0
  5190. inSlope: Infinity
  5191. outSlope: Infinity
  5192. tangentMode: 103
  5193. weightedMode: 0
  5194. inWeight: 0
  5195. outWeight: 0
  5196. - serializedVersion: 3
  5197. time: 0.25
  5198. value: 1
  5199. inSlope: Infinity
  5200. outSlope: Infinity
  5201. tangentMode: 103
  5202. weightedMode: 0
  5203. inWeight: 0
  5204. outWeight: 0
  5205. - serializedVersion: 3
  5206. time: 2.65
  5207. value: 1
  5208. inSlope: Infinity
  5209. outSlope: Infinity
  5210. tangentMode: 103
  5211. weightedMode: 0
  5212. inWeight: 0
  5213. outWeight: 0
  5214. m_PreInfinity: 2
  5215. m_PostInfinity: 2
  5216. m_RotationOrder: 4
  5217. attribute: m_IsActive
  5218. path: textLight
  5219. classID: 1
  5220. script: {fileID: 0}
  5221. - curve:
  5222. serializedVersion: 2
  5223. m_Curve:
  5224. - serializedVersion: 3
  5225. time: 0
  5226. value: 0.8894458
  5227. inSlope: 0
  5228. outSlope: 0
  5229. tangentMode: 136
  5230. weightedMode: 0
  5231. inWeight: 0.33333334
  5232. outWeight: 0.33333334
  5233. - serializedVersion: 3
  5234. time: 0.71666664
  5235. value: 0.8894458
  5236. inSlope: 0
  5237. outSlope: 0
  5238. tangentMode: 136
  5239. weightedMode: 0
  5240. inWeight: 0.33333334
  5241. outWeight: 0.33333334
  5242. - serializedVersion: 3
  5243. time: 2.65
  5244. value: 0.8894458
  5245. inSlope: 0
  5246. outSlope: 0
  5247. tangentMode: 136
  5248. weightedMode: 0
  5249. inWeight: 0.33333334
  5250. outWeight: 0.33333334
  5251. m_PreInfinity: 2
  5252. m_PostInfinity: 2
  5253. m_RotationOrder: 4
  5254. attribute: m_Color.r
  5255. path: textLight
  5256. classID: 114
  5257. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  5258. - curve:
  5259. serializedVersion: 2
  5260. m_Curve:
  5261. - serializedVersion: 3
  5262. time: 0
  5263. value: 1
  5264. inSlope: 0
  5265. outSlope: 0
  5266. tangentMode: 136
  5267. weightedMode: 0
  5268. inWeight: 0.33333334
  5269. outWeight: 0.33333334
  5270. - serializedVersion: 3
  5271. time: 0.71666664
  5272. value: 1
  5273. inSlope: 0
  5274. outSlope: 0
  5275. tangentMode: 136
  5276. weightedMode: 0
  5277. inWeight: 0.33333334
  5278. outWeight: 0.33333334
  5279. - serializedVersion: 3
  5280. time: 2.65
  5281. value: 1
  5282. inSlope: 0
  5283. outSlope: 0
  5284. tangentMode: 136
  5285. weightedMode: 0
  5286. inWeight: 0.33333334
  5287. outWeight: 0.33333334
  5288. m_PreInfinity: 2
  5289. m_PostInfinity: 2
  5290. m_RotationOrder: 4
  5291. attribute: m_Color.g
  5292. path: textLight
  5293. classID: 114
  5294. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  5295. - curve:
  5296. serializedVersion: 2
  5297. m_Curve:
  5298. - serializedVersion: 3
  5299. time: 0
  5300. value: 0.8820755
  5301. inSlope: 0
  5302. outSlope: 0
  5303. tangentMode: 136
  5304. weightedMode: 0
  5305. inWeight: 0.33333334
  5306. outWeight: 0.33333334
  5307. - serializedVersion: 3
  5308. time: 0.71666664
  5309. value: 0.8820755
  5310. inSlope: 0
  5311. outSlope: 0
  5312. tangentMode: 136
  5313. weightedMode: 0
  5314. inWeight: 0.33333334
  5315. outWeight: 0.33333334
  5316. - serializedVersion: 3
  5317. time: 2.65
  5318. value: 0.8820755
  5319. inSlope: 0
  5320. outSlope: 0
  5321. tangentMode: 136
  5322. weightedMode: 0
  5323. inWeight: 0.33333334
  5324. outWeight: 0.33333334
  5325. m_PreInfinity: 2
  5326. m_PostInfinity: 2
  5327. m_RotationOrder: 4
  5328. attribute: m_Color.b
  5329. path: textLight
  5330. classID: 114
  5331. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  5332. - curve:
  5333. serializedVersion: 2
  5334. m_Curve:
  5335. - serializedVersion: 3
  5336. time: 0
  5337. value: 0.6
  5338. inSlope: 0
  5339. outSlope: 0
  5340. tangentMode: 136
  5341. weightedMode: 0
  5342. inWeight: 0.33333334
  5343. outWeight: 0.33333334
  5344. - serializedVersion: 3
  5345. time: 0.25
  5346. value: 0
  5347. inSlope: 0
  5348. outSlope: 0
  5349. tangentMode: 136
  5350. weightedMode: 0
  5351. inWeight: 0.33333334
  5352. outWeight: 0.33333334
  5353. - serializedVersion: 3
  5354. time: 0.4
  5355. value: 1
  5356. inSlope: 0
  5357. outSlope: 0
  5358. tangentMode: 136
  5359. weightedMode: 0
  5360. inWeight: 0.33333334
  5361. outWeight: 0.33333334
  5362. - serializedVersion: 3
  5363. time: 0.41666666
  5364. value: 1
  5365. inSlope: 0
  5366. outSlope: 0
  5367. tangentMode: 136
  5368. weightedMode: 0
  5369. inWeight: 0.33333334
  5370. outWeight: 0.33333334
  5371. - serializedVersion: 3
  5372. time: 0.71666664
  5373. value: 0
  5374. inSlope: 0
  5375. outSlope: 0
  5376. tangentMode: 136
  5377. weightedMode: 0
  5378. inWeight: 0.33333334
  5379. outWeight: 0.33333334
  5380. - serializedVersion: 3
  5381. time: 0.78333336
  5382. value: 0
  5383. inSlope: 0
  5384. outSlope: 0
  5385. tangentMode: 136
  5386. weightedMode: 0
  5387. inWeight: 0.33333334
  5388. outWeight: 0.33333334
  5389. - serializedVersion: 3
  5390. time: 2.65
  5391. value: 0
  5392. inSlope: 0
  5393. outSlope: 0
  5394. tangentMode: 136
  5395. weightedMode: 0
  5396. inWeight: 0.33333334
  5397. outWeight: 0.33333334
  5398. m_PreInfinity: 2
  5399. m_PostInfinity: 2
  5400. m_RotationOrder: 4
  5401. attribute: m_Color.a
  5402. path: textLight
  5403. classID: 114
  5404. script: {fileID: 11500000, guid: c280d1ddc7af1a04e8f71ea529d0c27f, type: 3}
  5405. m_EulerEditorCurves: []
  5406. m_HasGenericRootTransform: 0
  5407. m_HasMotionFloatCurves: 0
  5408. m_Events:
  5409. - time: 0
  5410. functionName: Set_ULTIMATEEVOLUTION
  5411. data:
  5412. objectReferenceParameter: {fileID: 0}
  5413. floatParameter: 0
  5414. intParameter: 0
  5415. messageOptions: 0
  5416. - time: 0
  5417. functionName: SetMaterialNormalGlow
  5418. data:
  5419. objectReferenceParameter: {fileID: 0}
  5420. floatParameter: 0
  5421. intParameter: 0
  5422. messageOptions: 0
  5423. - time: 0.25
  5424. functionName: SetMaterialLightGlow
  5425. data:
  5426. objectReferenceParameter: {fileID: 0}
  5427. floatParameter: 0
  5428. intParameter: 0
  5429. messageOptions: 0
  5430. - time: 0.25
  5431. functionName: PlayChangeTextSE
  5432. data:
  5433. objectReferenceParameter: {fileID: 0}
  5434. floatParameter: 0
  5435. intParameter: 0
  5436. messageOptions: 0
  5437. - time: 0.41666666
  5438. functionName: Set_BURSTEVOLUTION
  5439. data:
  5440. objectReferenceParameter: {fileID: 0}
  5441. floatParameter: 0
  5442. intParameter: 0
  5443. messageOptions: 0
  5444. - time: 0.41666666
  5445. functionName: SetMaterialNormalGlow
  5446. data:
  5447. objectReferenceParameter: {fileID: 0}
  5448. floatParameter: 0
  5449. intParameter: 0
  5450. messageOptions: 0
  5451. - time: 1.1166667
  5452. functionName: PlayLightningSE
  5453. data:
  5454. objectReferenceParameter: {fileID: 0}
  5455. floatParameter: 0
  5456. intParameter: 0
  5457. messageOptions: 0
  5458. - time: 2.0333333
  5459. functionName: PlaySE
  5460. data:
  5461. objectReferenceParameter: {fileID: 0}
  5462. floatParameter: 0
  5463. intParameter: 0
  5464. messageOptions: 0