DigiXrosEffectObjects.anim 73 KB

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