shouqi.anim 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911
  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: shouqi
  10. serializedVersion: 6
  11. m_Legacy: 0
  12. m_Compressed: 0
  13. m_UseHighQualityCurve: 1
  14. m_RotationCurves: []
  15. m_CompressedRotationCurves: []
  16. m_EulerCurves: []
  17. m_PositionCurves: []
  18. m_ScaleCurves:
  19. - curve:
  20. serializedVersion: 2
  21. m_Curve:
  22. - serializedVersion: 3
  23. time: 0
  24. value: {x: 1.3, y: 1.3, z: 1.3}
  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. m_PreInfinity: 2
  32. m_PostInfinity: 2
  33. m_RotationOrder: 4
  34. path: jihuoma
  35. - curve:
  36. serializedVersion: 2
  37. m_Curve:
  38. - serializedVersion: 3
  39. time: 0.43333334
  40. value: {x: 1.3, y: 1.3, z: 1.3}
  41. inSlope: {x: -12.999996, y: -12.999996, z: -2.9999988}
  42. outSlope: {x: -12.999996, y: -12.999996, z: -2.9999988}
  43. tangentMode: 0
  44. weightedMode: 0
  45. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  46. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  47. - serializedVersion: 3
  48. time: 0.53333336
  49. value: {x: 0, y: 0, z: 1}
  50. inSlope: {x: -12.999996, y: -12.999996, z: -2.9999988}
  51. outSlope: {x: -12.999996, y: -12.999996, z: -2.9999988}
  52. tangentMode: 0
  53. weightedMode: 0
  54. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  55. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  56. m_PreInfinity: 2
  57. m_PostInfinity: 2
  58. m_RotationOrder: 4
  59. path: quanfuzhuce
  60. - curve:
  61. serializedVersion: 2
  62. m_Curve:
  63. - serializedVersion: 3
  64. time: 0.23333333
  65. value: {x: 1.3, y: 1.3, z: 1.3}
  66. inSlope: {x: -12.999998, y: -12.999998, z: -2.9999993}
  67. outSlope: {x: -12.999998, y: -12.999998, z: -2.9999993}
  68. tangentMode: 0
  69. weightedMode: 0
  70. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  71. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  72. - serializedVersion: 3
  73. time: 0.33333334
  74. value: {x: 0, y: 0, z: 1}
  75. inSlope: {x: -12.999998, y: -12.999998, z: -2.9999993}
  76. outSlope: {x: -12.999998, y: -12.999998, z: -2.9999993}
  77. tangentMode: 0
  78. weightedMode: 0
  79. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  80. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  81. m_PreInfinity: 2
  82. m_PostInfinity: 2
  83. m_RotationOrder: 4
  84. path: shouchonglibao
  85. - curve:
  86. serializedVersion: 2
  87. m_Curve:
  88. - serializedVersion: 3
  89. time: 0.33333334
  90. value: {x: 1.3, y: 1.3, z: 1.3}
  91. inSlope: {x: -13, y: -13, z: -2.9999998}
  92. outSlope: {x: -13, y: -13, z: -2.9999998}
  93. tangentMode: 0
  94. weightedMode: 0
  95. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  96. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  97. - serializedVersion: 3
  98. time: 0.43333334
  99. value: {x: 0, y: 0, z: 1}
  100. inSlope: {x: -13, y: -13, z: -2.9999998}
  101. outSlope: {x: -13, y: -13, z: -2.9999998}
  102. tangentMode: 0
  103. weightedMode: 0
  104. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  105. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  106. m_PreInfinity: 2
  107. m_PostInfinity: 2
  108. m_RotationOrder: 4
  109. path: tilizengsong
  110. - curve:
  111. serializedVersion: 2
  112. m_Curve:
  113. - serializedVersion: 3
  114. time: 0.1
  115. value: {x: 1.3, y: 1.3, z: 1.3}
  116. inSlope: {x: -9.75, y: -9.75, z: -9.75}
  117. outSlope: {x: -9.75, y: -9.75, z: -9.75}
  118. tangentMode: 0
  119. weightedMode: 0
  120. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  121. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  122. - serializedVersion: 3
  123. time: 0.23333333
  124. value: {x: 0, y: 0, z: 0}
  125. inSlope: {x: -9.75, y: -9.75, z: -9.75}
  126. outSlope: {x: -9.75, y: -9.75, z: -9.75}
  127. tangentMode: 0
  128. weightedMode: 0
  129. inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  130. outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
  131. m_PreInfinity: 2
  132. m_PostInfinity: 2
  133. m_RotationOrder: 4
  134. path: zaixianlibao
  135. m_FloatCurves:
  136. - curve:
  137. serializedVersion: 2
  138. m_Curve:
  139. - serializedVersion: 3
  140. time: 0
  141. value: 0
  142. inSlope: 0
  143. outSlope: 0
  144. tangentMode: 34
  145. weightedMode: 0
  146. inWeight: 0.33333334
  147. outWeight: 0.33333334
  148. - serializedVersion: 3
  149. time: 0.53333336
  150. value: 0
  151. inSlope: -0.000038166047
  152. outSlope: 14.0598755
  153. tangentMode: 1
  154. weightedMode: 0
  155. inWeight: 0.33333334
  156. outWeight: 0.33333334
  157. - serializedVersion: 3
  158. time: 0.6666667
  159. value: -152
  160. inSlope: -1140.0001
  161. outSlope: -1140.0001
  162. tangentMode: 34
  163. weightedMode: 0
  164. inWeight: 0.33333334
  165. outWeight: 0.33333334
  166. m_PreInfinity: 2
  167. m_PostInfinity: 2
  168. m_RotationOrder: 4
  169. attribute: m_AnchoredPosition.x
  170. path: jihuoma
  171. classID: 224
  172. script: {fileID: 0}
  173. - curve:
  174. serializedVersion: 2
  175. m_Curve:
  176. - serializedVersion: 3
  177. time: 0
  178. value: 0
  179. inSlope: 0
  180. outSlope: 0
  181. tangentMode: 34
  182. weightedMode: 0
  183. inWeight: 0.33333334
  184. outWeight: 0.33333334
  185. - serializedVersion: 3
  186. time: 0.6666667
  187. value: 0
  188. inSlope: 0
  189. outSlope: 0
  190. tangentMode: 34
  191. weightedMode: 0
  192. inWeight: 0.33333334
  193. outWeight: 0.33333334
  194. m_PreInfinity: 2
  195. m_PostInfinity: 2
  196. m_RotationOrder: 4
  197. attribute: m_AnchoredPosition.y
  198. path: jihuoma
  199. classID: 224
  200. script: {fileID: 0}
  201. - curve:
  202. serializedVersion: 2
  203. m_Curve:
  204. - serializedVersion: 3
  205. time: 0
  206. value: 1
  207. inSlope: 0
  208. outSlope: 0
  209. tangentMode: 34
  210. weightedMode: 0
  211. inWeight: 0.33333334
  212. outWeight: 0.33333334
  213. - serializedVersion: 3
  214. time: 0.1
  215. value: 1
  216. inSlope: 0
  217. outSlope: 0
  218. tangentMode: 34
  219. weightedMode: 0
  220. inWeight: 0.33333334
  221. outWeight: 0.33333334
  222. - serializedVersion: 3
  223. time: 0.23333333
  224. value: 1
  225. inSlope: 0
  226. outSlope: 0
  227. tangentMode: 34
  228. weightedMode: 0
  229. inWeight: 0.33333334
  230. outWeight: 0.33333334
  231. - serializedVersion: 3
  232. time: 0.33333334
  233. value: 1
  234. inSlope: 0
  235. outSlope: 0
  236. tangentMode: 34
  237. weightedMode: 0
  238. inWeight: 0.33333334
  239. outWeight: 0.33333334
  240. - serializedVersion: 3
  241. time: 0.43333334
  242. value: 1
  243. inSlope: -4.999999
  244. outSlope: -4.999999
  245. tangentMode: 34
  246. weightedMode: 0
  247. inWeight: 0.33333334
  248. outWeight: 0.33333334
  249. - serializedVersion: 3
  250. time: 0.53333336
  251. value: 0
  252. inSlope: 0.000002861023
  253. outSlope: 0.000002861023
  254. tangentMode: 34
  255. weightedMode: 0
  256. inWeight: 0.33333334
  257. outWeight: 0.33333334
  258. - serializedVersion: 3
  259. time: 0.6333333
  260. value: 1
  261. inSlope: -9.999986
  262. outSlope: -9.999986
  263. tangentMode: 34
  264. weightedMode: 0
  265. inWeight: 0.33333334
  266. outWeight: 0.33333334
  267. - serializedVersion: 3
  268. time: 0.6666667
  269. value: 0
  270. inSlope: -29.999975
  271. outSlope: -29.999975
  272. tangentMode: 34
  273. weightedMode: 0
  274. inWeight: 0.33333334
  275. outWeight: 0.33333334
  276. m_PreInfinity: 2
  277. m_PostInfinity: 2
  278. m_RotationOrder: 4
  279. attribute: m_Color.a
  280. path: shouchonglibao
  281. classID: 114
  282. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  283. - curve:
  284. serializedVersion: 2
  285. m_Curve:
  286. - serializedVersion: 3
  287. time: 0
  288. value: 1
  289. inSlope: 0
  290. outSlope: 0
  291. tangentMode: 34
  292. weightedMode: 0
  293. inWeight: 0.33333334
  294. outWeight: 0.33333334
  295. - serializedVersion: 3
  296. time: 0.1
  297. value: 1
  298. inSlope: 0
  299. outSlope: 0
  300. tangentMode: 34
  301. weightedMode: 0
  302. inWeight: 0.33333334
  303. outWeight: 0.33333334
  304. - serializedVersion: 3
  305. time: 0.23333333
  306. value: 1
  307. inSlope: 0
  308. outSlope: 0
  309. tangentMode: 34
  310. weightedMode: 0
  311. inWeight: 0.33333334
  312. outWeight: 0.33333334
  313. - serializedVersion: 3
  314. time: 0.33333334
  315. value: 1
  316. inSlope: 0
  317. outSlope: 0
  318. tangentMode: 34
  319. weightedMode: 0
  320. inWeight: 0.33333334
  321. outWeight: 0.33333334
  322. - serializedVersion: 3
  323. time: 0.43333334
  324. value: 1
  325. inSlope: -4.999999
  326. outSlope: -4.999999
  327. tangentMode: 34
  328. weightedMode: 0
  329. inWeight: 0.33333334
  330. outWeight: 0.33333334
  331. - serializedVersion: 3
  332. time: 0.53333336
  333. value: 0
  334. inSlope: 0.000002861023
  335. outSlope: 0.000002861023
  336. tangentMode: 34
  337. weightedMode: 0
  338. inWeight: 0.33333334
  339. outWeight: 0.33333334
  340. - serializedVersion: 3
  341. time: 0.6333333
  342. value: 1
  343. inSlope: -9.999986
  344. outSlope: -9.999986
  345. tangentMode: 34
  346. weightedMode: 0
  347. inWeight: 0.33333334
  348. outWeight: 0.33333334
  349. - serializedVersion: 3
  350. time: 0.6666667
  351. value: 0
  352. inSlope: -29.999975
  353. outSlope: -29.999975
  354. tangentMode: 34
  355. weightedMode: 0
  356. inWeight: 0.33333334
  357. outWeight: 0.33333334
  358. m_PreInfinity: 2
  359. m_PostInfinity: 2
  360. m_RotationOrder: 4
  361. attribute: m_Color.a
  362. path: zaixianlibao
  363. classID: 114
  364. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  365. - curve:
  366. serializedVersion: 2
  367. m_Curve:
  368. - serializedVersion: 3
  369. time: 0
  370. value: 1
  371. inSlope: 0
  372. outSlope: 0
  373. tangentMode: 34
  374. weightedMode: 0
  375. inWeight: 0.33333334
  376. outWeight: 0.33333334
  377. - serializedVersion: 3
  378. time: 0.1
  379. value: 1
  380. inSlope: 0
  381. outSlope: 0
  382. tangentMode: 34
  383. weightedMode: 0
  384. inWeight: 0.33333334
  385. outWeight: 0.33333334
  386. - serializedVersion: 3
  387. time: 0.23333333
  388. value: 1
  389. inSlope: 0
  390. outSlope: 0
  391. tangentMode: 34
  392. weightedMode: 0
  393. inWeight: 0.33333334
  394. outWeight: 0.33333334
  395. - serializedVersion: 3
  396. time: 0.33333334
  397. value: 1
  398. inSlope: 0
  399. outSlope: 0
  400. tangentMode: 34
  401. weightedMode: 0
  402. inWeight: 0.33333334
  403. outWeight: 0.33333334
  404. - serializedVersion: 3
  405. time: 0.43333334
  406. value: 1
  407. inSlope: -4.999999
  408. outSlope: -4.999999
  409. tangentMode: 34
  410. weightedMode: 0
  411. inWeight: 0.33333334
  412. outWeight: 0.33333334
  413. - serializedVersion: 3
  414. time: 0.53333336
  415. value: 0
  416. inSlope: 0.000002861023
  417. outSlope: 0.000002861023
  418. tangentMode: 34
  419. weightedMode: 0
  420. inWeight: 0.33333334
  421. outWeight: 0.33333334
  422. - serializedVersion: 3
  423. time: 0.6333333
  424. value: 1
  425. inSlope: -9.999986
  426. outSlope: -9.999986
  427. tangentMode: 34
  428. weightedMode: 0
  429. inWeight: 0.33333334
  430. outWeight: 0.33333334
  431. - serializedVersion: 3
  432. time: 0.6666667
  433. value: 0
  434. inSlope: -29.999975
  435. outSlope: -29.999975
  436. tangentMode: 34
  437. weightedMode: 0
  438. inWeight: 0.33333334
  439. outWeight: 0.33333334
  440. m_PreInfinity: 2
  441. m_PostInfinity: 2
  442. m_RotationOrder: 4
  443. attribute: m_Color.a
  444. path: quanfuzhuce
  445. classID: 114
  446. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  447. - curve:
  448. serializedVersion: 2
  449. m_Curve:
  450. - serializedVersion: 3
  451. time: 0
  452. value: 1
  453. inSlope: 0
  454. outSlope: 0
  455. tangentMode: 34
  456. weightedMode: 0
  457. inWeight: 0.33333334
  458. outWeight: 0.33333334
  459. - serializedVersion: 3
  460. time: 0.1
  461. value: 1
  462. inSlope: 0
  463. outSlope: 0
  464. tangentMode: 34
  465. weightedMode: 0
  466. inWeight: 0.33333334
  467. outWeight: 0.33333334
  468. - serializedVersion: 3
  469. time: 0.23333333
  470. value: 1
  471. inSlope: 0
  472. outSlope: 0
  473. tangentMode: 34
  474. weightedMode: 0
  475. inWeight: 0.33333334
  476. outWeight: 0.33333334
  477. - serializedVersion: 3
  478. time: 0.33333334
  479. value: 1
  480. inSlope: 0
  481. outSlope: 0
  482. tangentMode: 34
  483. weightedMode: 0
  484. inWeight: 0.33333334
  485. outWeight: 0.33333334
  486. - serializedVersion: 3
  487. time: 0.43333334
  488. value: 1
  489. inSlope: -4.999999
  490. outSlope: -4.999999
  491. tangentMode: 34
  492. weightedMode: 0
  493. inWeight: 0.33333334
  494. outWeight: 0.33333334
  495. - serializedVersion: 3
  496. time: 0.53333336
  497. value: 0
  498. inSlope: 0.000002861023
  499. outSlope: 0.000002861023
  500. tangentMode: 34
  501. weightedMode: 0
  502. inWeight: 0.33333334
  503. outWeight: 0.33333334
  504. - serializedVersion: 3
  505. time: 0.6333333
  506. value: 1
  507. inSlope: -9.999986
  508. outSlope: -9.999986
  509. tangentMode: 34
  510. weightedMode: 0
  511. inWeight: 0.33333334
  512. outWeight: 0.33333334
  513. - serializedVersion: 3
  514. time: 0.6666667
  515. value: 0
  516. inSlope: -29.999975
  517. outSlope: -29.999975
  518. tangentMode: 34
  519. weightedMode: 0
  520. inWeight: 0.33333334
  521. outWeight: 0.33333334
  522. m_PreInfinity: 2
  523. m_PostInfinity: 2
  524. m_RotationOrder: 4
  525. attribute: m_Color.a
  526. path: tilizengsong
  527. classID: 114
  528. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  529. - curve:
  530. serializedVersion: 2
  531. m_Curve:
  532. - serializedVersion: 3
  533. time: 0
  534. value: 1
  535. inSlope: 0
  536. outSlope: 0
  537. tangentMode: 34
  538. weightedMode: 0
  539. inWeight: 0.33333334
  540. outWeight: 0.33333334
  541. - serializedVersion: 3
  542. time: 0.1
  543. value: 1
  544. inSlope: 0
  545. outSlope: 0
  546. tangentMode: 34
  547. weightedMode: 0
  548. inWeight: 0.33333334
  549. outWeight: 0.33333334
  550. - serializedVersion: 3
  551. time: 0.23333333
  552. value: 1
  553. inSlope: 0
  554. outSlope: 0
  555. tangentMode: 34
  556. weightedMode: 0
  557. inWeight: 0.33333334
  558. outWeight: 0.33333334
  559. - serializedVersion: 3
  560. time: 0.33333334
  561. value: 1
  562. inSlope: 0
  563. outSlope: 0
  564. tangentMode: 34
  565. weightedMode: 0
  566. inWeight: 0.33333334
  567. outWeight: 0.33333334
  568. - serializedVersion: 3
  569. time: 0.43333334
  570. value: 1
  571. inSlope: 0
  572. outSlope: 0
  573. tangentMode: 34
  574. weightedMode: 0
  575. inWeight: 0.33333334
  576. outWeight: 0.33333334
  577. - serializedVersion: 3
  578. time: 0.53333336
  579. value: 1
  580. inSlope: 0
  581. outSlope: 0
  582. tangentMode: 34
  583. weightedMode: 0
  584. inWeight: 0.33333334
  585. outWeight: 0.33333334
  586. - serializedVersion: 3
  587. time: 0.6333333
  588. value: 1
  589. inSlope: -14.999988
  590. outSlope: -14.999988
  591. tangentMode: 34
  592. weightedMode: 0
  593. inWeight: 0.33333334
  594. outWeight: 0.33333334
  595. - serializedVersion: 3
  596. time: 0.6666667
  597. value: 0
  598. inSlope: -29.999975
  599. outSlope: -29.999975
  600. tangentMode: 34
  601. weightedMode: 0
  602. inWeight: 0.33333334
  603. outWeight: 0.33333334
  604. m_PreInfinity: 2
  605. m_PostInfinity: 2
  606. m_RotationOrder: 4
  607. attribute: m_Color.a
  608. path: jihuoma
  609. classID: 114
  610. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  611. - curve:
  612. serializedVersion: 2
  613. m_Curve:
  614. - serializedVersion: 3
  615. time: 0
  616. value: 1
  617. inSlope: Infinity
  618. outSlope: Infinity
  619. tangentMode: 103
  620. weightedMode: 0
  621. inWeight: 0.33333334
  622. outWeight: 0.33333334
  623. - serializedVersion: 3
  624. time: 0.6666667
  625. value: 0
  626. inSlope: Infinity
  627. outSlope: Infinity
  628. tangentMode: 103
  629. weightedMode: 0
  630. inWeight: 0.33333334
  631. outWeight: 0.33333334
  632. m_PreInfinity: 2
  633. m_PostInfinity: 2
  634. m_RotationOrder: 4
  635. attribute: m_IsActive
  636. path: shouchonglibao
  637. classID: 1
  638. script: {fileID: 0}
  639. - curve:
  640. serializedVersion: 2
  641. m_Curve:
  642. - serializedVersion: 3
  643. time: 0
  644. value: 1
  645. inSlope: Infinity
  646. outSlope: Infinity
  647. tangentMode: 103
  648. weightedMode: 0
  649. inWeight: 0.33333334
  650. outWeight: 0.33333334
  651. - serializedVersion: 3
  652. time: 0.6666667
  653. value: 0
  654. inSlope: Infinity
  655. outSlope: Infinity
  656. tangentMode: 103
  657. weightedMode: 0
  658. inWeight: 0.33333334
  659. outWeight: 0.33333334
  660. m_PreInfinity: 2
  661. m_PostInfinity: 2
  662. m_RotationOrder: 4
  663. attribute: m_IsActive
  664. path: zaixianlibao
  665. classID: 1
  666. script: {fileID: 0}
  667. - curve:
  668. serializedVersion: 2
  669. m_Curve:
  670. - serializedVersion: 3
  671. time: 0
  672. value: 1
  673. inSlope: Infinity
  674. outSlope: Infinity
  675. tangentMode: 103
  676. weightedMode: 0
  677. inWeight: 0.33333334
  678. outWeight: 0.33333334
  679. - serializedVersion: 3
  680. time: 0.6666667
  681. value: 0
  682. inSlope: Infinity
  683. outSlope: Infinity
  684. tangentMode: 103
  685. weightedMode: 0
  686. inWeight: 0.33333334
  687. outWeight: 0.33333334
  688. m_PreInfinity: 2
  689. m_PostInfinity: 2
  690. m_RotationOrder: 4
  691. attribute: m_IsActive
  692. path: quanfuzhuce
  693. classID: 1
  694. script: {fileID: 0}
  695. - curve:
  696. serializedVersion: 2
  697. m_Curve:
  698. - serializedVersion: 3
  699. time: 0
  700. value: 1
  701. inSlope: Infinity
  702. outSlope: Infinity
  703. tangentMode: 103
  704. weightedMode: 0
  705. inWeight: 0.33333334
  706. outWeight: 0.33333334
  707. - serializedVersion: 3
  708. time: 0.6666667
  709. value: 0
  710. inSlope: Infinity
  711. outSlope: Infinity
  712. tangentMode: 103
  713. weightedMode: 0
  714. inWeight: 0.33333334
  715. outWeight: 0.33333334
  716. m_PreInfinity: 2
  717. m_PostInfinity: 2
  718. m_RotationOrder: 4
  719. attribute: m_IsActive
  720. path: tilizengsong
  721. classID: 1
  722. script: {fileID: 0}
  723. - curve:
  724. serializedVersion: 2
  725. m_Curve:
  726. - serializedVersion: 3
  727. time: 0
  728. value: 1
  729. inSlope: Infinity
  730. outSlope: Infinity
  731. tangentMode: 103
  732. weightedMode: 0
  733. inWeight: 0.33333334
  734. outWeight: 0.33333334
  735. - serializedVersion: 3
  736. time: 0.6666667
  737. value: 0
  738. inSlope: Infinity
  739. outSlope: Infinity
  740. tangentMode: 103
  741. weightedMode: 0
  742. inWeight: 0.33333334
  743. outWeight: 0.33333334
  744. m_PreInfinity: 2
  745. m_PostInfinity: 2
  746. m_RotationOrder: 4
  747. attribute: m_IsActive
  748. path: jihuoma
  749. classID: 1
  750. script: {fileID: 0}
  751. m_PPtrCurves: []
  752. m_SampleRate: 30
  753. m_WrapMode: 0
  754. m_Bounds:
  755. m_Center: {x: 0, y: 0, z: 0}
  756. m_Extent: {x: 0, y: 0, z: 0}
  757. m_ClipBindingConstant:
  758. genericBindings:
  759. - serializedVersion: 2
  760. path: 360288330
  761. attribute: 3
  762. script: {fileID: 0}
  763. typeID: 4
  764. customType: 0
  765. isPPtrCurve: 0
  766. - serializedVersion: 2
  767. path: 746247812
  768. attribute: 3
  769. script: {fileID: 0}
  770. typeID: 4
  771. customType: 0
  772. isPPtrCurve: 0
  773. - serializedVersion: 2
  774. path: 2738888072
  775. attribute: 3
  776. script: {fileID: 0}
  777. typeID: 4
  778. customType: 0
  779. isPPtrCurve: 0
  780. - serializedVersion: 2
  781. path: 1655972154
  782. attribute: 3
  783. script: {fileID: 0}
  784. typeID: 4
  785. customType: 0
  786. isPPtrCurve: 0
  787. - serializedVersion: 2
  788. path: 3248436828
  789. attribute: 1460864421
  790. script: {fileID: 0}
  791. typeID: 224
  792. customType: 28
  793. isPPtrCurve: 0
  794. - serializedVersion: 2
  795. path: 746247812
  796. attribute: 304273561
  797. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  798. typeID: 114
  799. customType: 0
  800. isPPtrCurve: 0
  801. - serializedVersion: 2
  802. path: 1655972154
  803. attribute: 304273561
  804. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  805. typeID: 114
  806. customType: 0
  807. isPPtrCurve: 0
  808. - serializedVersion: 2
  809. path: 360288330
  810. attribute: 304273561
  811. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  812. typeID: 114
  813. customType: 0
  814. isPPtrCurve: 0
  815. - serializedVersion: 2
  816. path: 2738888072
  817. attribute: 304273561
  818. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  819. typeID: 114
  820. customType: 0
  821. isPPtrCurve: 0
  822. - serializedVersion: 2
  823. path: 3248436828
  824. attribute: 304273561
  825. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  826. typeID: 114
  827. customType: 0
  828. isPPtrCurve: 0
  829. - serializedVersion: 2
  830. path: 746247812
  831. attribute: 2086281974
  832. script: {fileID: 0}
  833. typeID: 1
  834. customType: 0
  835. isPPtrCurve: 0
  836. - serializedVersion: 2
  837. path: 1655972154
  838. attribute: 2086281974
  839. script: {fileID: 0}
  840. typeID: 1
  841. customType: 0
  842. isPPtrCurve: 0
  843. - serializedVersion: 2
  844. path: 360288330
  845. attribute: 2086281974
  846. script: {fileID: 0}
  847. typeID: 1
  848. customType: 0
  849. isPPtrCurve: 0
  850. - serializedVersion: 2
  851. path: 2738888072
  852. attribute: 2086281974
  853. script: {fileID: 0}
  854. typeID: 1
  855. customType: 0
  856. isPPtrCurve: 0
  857. - serializedVersion: 2
  858. path: 3248436828
  859. attribute: 2086281974
  860. script: {fileID: 0}
  861. typeID: 1
  862. customType: 0
  863. isPPtrCurve: 0
  864. - serializedVersion: 2
  865. path: 3248436828
  866. attribute: 3
  867. script: {fileID: 0}
  868. typeID: 4
  869. customType: 0
  870. isPPtrCurve: 0
  871. - serializedVersion: 2
  872. path: 3248436828
  873. attribute: 538195251
  874. script: {fileID: 0}
  875. typeID: 224
  876. customType: 28
  877. isPPtrCurve: 0
  878. pptrCurveMapping: []
  879. m_AnimationClipSettings:
  880. serializedVersion: 2
  881. m_AdditiveReferencePoseClip: {fileID: 0}
  882. m_AdditiveReferencePoseTime: 0
  883. m_StartTime: 0
  884. m_StopTime: 0.6666667
  885. m_OrientationOffsetY: 0
  886. m_Level: 0
  887. m_CycleOffset: 0
  888. m_HasAdditiveReferencePose: 0
  889. m_LoopTime: 0
  890. m_LoopBlend: 0
  891. m_LoopBlendOrientation: 0
  892. m_LoopBlendPositionY: 0
  893. m_LoopBlendPositionXZ: 0
  894. m_KeepOriginalOrientation: 0
  895. m_KeepOriginalPositionY: 1
  896. m_KeepOriginalPositionXZ: 0
  897. m_HeightFromFeet: 0
  898. m_Mirror: 0
  899. m_EditorCurves:
  900. - curve:
  901. serializedVersion: 2
  902. m_Curve:
  903. - serializedVersion: 3
  904. time: 0
  905. value: 0
  906. inSlope: 0
  907. outSlope: 0
  908. tangentMode: 34
  909. weightedMode: 0
  910. inWeight: 0.33333334
  911. outWeight: 0.33333334
  912. - serializedVersion: 3
  913. time: 0.53333336
  914. value: 0
  915. inSlope: -0.000038166047
  916. outSlope: 14.0598755
  917. tangentMode: 1
  918. weightedMode: 0
  919. inWeight: 0.33333334
  920. outWeight: 0.33333334
  921. - serializedVersion: 3
  922. time: 0.6666667
  923. value: -152
  924. inSlope: -1140.0001
  925. outSlope: -1140.0001
  926. tangentMode: 34
  927. weightedMode: 0
  928. inWeight: 0.33333334
  929. outWeight: 0.33333334
  930. m_PreInfinity: 2
  931. m_PostInfinity: 2
  932. m_RotationOrder: 4
  933. attribute: m_AnchoredPosition.x
  934. path: jihuoma
  935. classID: 224
  936. script: {fileID: 0}
  937. - curve:
  938. serializedVersion: 2
  939. m_Curve:
  940. - serializedVersion: 3
  941. time: 0
  942. value: 0
  943. inSlope: 0
  944. outSlope: 0
  945. tangentMode: 34
  946. weightedMode: 0
  947. inWeight: 0.33333334
  948. outWeight: 0.33333334
  949. - serializedVersion: 3
  950. time: 0.6666667
  951. value: 0
  952. inSlope: 0
  953. outSlope: 0
  954. tangentMode: 34
  955. weightedMode: 0
  956. inWeight: 0.33333334
  957. outWeight: 0.33333334
  958. m_PreInfinity: 2
  959. m_PostInfinity: 2
  960. m_RotationOrder: 4
  961. attribute: m_AnchoredPosition.y
  962. path: jihuoma
  963. classID: 224
  964. script: {fileID: 0}
  965. - curve:
  966. serializedVersion: 2
  967. m_Curve:
  968. - serializedVersion: 3
  969. time: 0
  970. value: 1.3
  971. inSlope: 0
  972. outSlope: 0
  973. tangentMode: 34
  974. weightedMode: 0
  975. inWeight: 0.33333334
  976. outWeight: 0.33333334
  977. m_PreInfinity: 2
  978. m_PostInfinity: 2
  979. m_RotationOrder: 4
  980. attribute: m_LocalScale.x
  981. path: jihuoma
  982. classID: 224
  983. script: {fileID: 0}
  984. - curve:
  985. serializedVersion: 2
  986. m_Curve:
  987. - serializedVersion: 3
  988. time: 0
  989. value: 1.3
  990. inSlope: 0
  991. outSlope: 0
  992. tangentMode: 34
  993. weightedMode: 0
  994. inWeight: 0.33333334
  995. outWeight: 0.33333334
  996. m_PreInfinity: 2
  997. m_PostInfinity: 2
  998. m_RotationOrder: 4
  999. attribute: m_LocalScale.y
  1000. path: jihuoma
  1001. classID: 224
  1002. script: {fileID: 0}
  1003. - curve:
  1004. serializedVersion: 2
  1005. m_Curve:
  1006. - serializedVersion: 3
  1007. time: 0
  1008. value: 1.3
  1009. inSlope: 0
  1010. outSlope: 0
  1011. tangentMode: 34
  1012. weightedMode: 0
  1013. inWeight: 0.33333334
  1014. outWeight: 0.33333334
  1015. m_PreInfinity: 2
  1016. m_PostInfinity: 2
  1017. m_RotationOrder: 4
  1018. attribute: m_LocalScale.z
  1019. path: jihuoma
  1020. classID: 224
  1021. script: {fileID: 0}
  1022. - curve:
  1023. serializedVersion: 2
  1024. m_Curve:
  1025. - serializedVersion: 3
  1026. time: 0.43333334
  1027. value: 1.3
  1028. inSlope: -12.999996
  1029. outSlope: -12.999996
  1030. tangentMode: 34
  1031. weightedMode: 0
  1032. inWeight: 0.33333334
  1033. outWeight: 0.33333334
  1034. - serializedVersion: 3
  1035. time: 0.53333336
  1036. value: 0
  1037. inSlope: -12.999996
  1038. outSlope: -12.999996
  1039. tangentMode: 34
  1040. weightedMode: 0
  1041. inWeight: 0.33333334
  1042. outWeight: 0.33333334
  1043. m_PreInfinity: 2
  1044. m_PostInfinity: 2
  1045. m_RotationOrder: 4
  1046. attribute: m_LocalScale.x
  1047. path: quanfuzhuce
  1048. classID: 224
  1049. script: {fileID: 0}
  1050. - curve:
  1051. serializedVersion: 2
  1052. m_Curve:
  1053. - serializedVersion: 3
  1054. time: 0.43333334
  1055. value: 1.3
  1056. inSlope: -12.999996
  1057. outSlope: -12.999996
  1058. tangentMode: 34
  1059. weightedMode: 0
  1060. inWeight: 0.33333334
  1061. outWeight: 0.33333334
  1062. - serializedVersion: 3
  1063. time: 0.53333336
  1064. value: 0
  1065. inSlope: -12.999996
  1066. outSlope: -12.999996
  1067. tangentMode: 34
  1068. weightedMode: 0
  1069. inWeight: 0.33333334
  1070. outWeight: 0.33333334
  1071. m_PreInfinity: 2
  1072. m_PostInfinity: 2
  1073. m_RotationOrder: 4
  1074. attribute: m_LocalScale.y
  1075. path: quanfuzhuce
  1076. classID: 224
  1077. script: {fileID: 0}
  1078. - curve:
  1079. serializedVersion: 2
  1080. m_Curve:
  1081. - serializedVersion: 3
  1082. time: 0.43333334
  1083. value: 1.3
  1084. inSlope: -2.9999988
  1085. outSlope: -2.9999988
  1086. tangentMode: 34
  1087. weightedMode: 0
  1088. inWeight: 0.33333334
  1089. outWeight: 0.33333334
  1090. - serializedVersion: 3
  1091. time: 0.53333336
  1092. value: 1
  1093. inSlope: -2.9999988
  1094. outSlope: -2.9999988
  1095. tangentMode: 34
  1096. weightedMode: 0
  1097. inWeight: 0.33333334
  1098. outWeight: 0.33333334
  1099. m_PreInfinity: 2
  1100. m_PostInfinity: 2
  1101. m_RotationOrder: 4
  1102. attribute: m_LocalScale.z
  1103. path: quanfuzhuce
  1104. classID: 224
  1105. script: {fileID: 0}
  1106. - curve:
  1107. serializedVersion: 2
  1108. m_Curve:
  1109. - serializedVersion: 3
  1110. time: 0.23333333
  1111. value: 1.3
  1112. inSlope: -12.999998
  1113. outSlope: -12.999998
  1114. tangentMode: 34
  1115. weightedMode: 0
  1116. inWeight: 0.33333334
  1117. outWeight: 0.33333334
  1118. - serializedVersion: 3
  1119. time: 0.33333334
  1120. value: 0
  1121. inSlope: -12.999998
  1122. outSlope: -12.999998
  1123. tangentMode: 34
  1124. weightedMode: 0
  1125. inWeight: 0.33333334
  1126. outWeight: 0.33333334
  1127. m_PreInfinity: 2
  1128. m_PostInfinity: 2
  1129. m_RotationOrder: 4
  1130. attribute: m_LocalScale.x
  1131. path: shouchonglibao
  1132. classID: 224
  1133. script: {fileID: 0}
  1134. - curve:
  1135. serializedVersion: 2
  1136. m_Curve:
  1137. - serializedVersion: 3
  1138. time: 0.23333333
  1139. value: 1.3
  1140. inSlope: -12.999998
  1141. outSlope: -12.999998
  1142. tangentMode: 34
  1143. weightedMode: 0
  1144. inWeight: 0.33333334
  1145. outWeight: 0.33333334
  1146. - serializedVersion: 3
  1147. time: 0.33333334
  1148. value: 0
  1149. inSlope: -12.999998
  1150. outSlope: -12.999998
  1151. tangentMode: 34
  1152. weightedMode: 0
  1153. inWeight: 0.33333334
  1154. outWeight: 0.33333334
  1155. m_PreInfinity: 2
  1156. m_PostInfinity: 2
  1157. m_RotationOrder: 4
  1158. attribute: m_LocalScale.y
  1159. path: shouchonglibao
  1160. classID: 224
  1161. script: {fileID: 0}
  1162. - curve:
  1163. serializedVersion: 2
  1164. m_Curve:
  1165. - serializedVersion: 3
  1166. time: 0.23333333
  1167. value: 1.3
  1168. inSlope: -2.9999993
  1169. outSlope: -2.9999993
  1170. tangentMode: 34
  1171. weightedMode: 0
  1172. inWeight: 0.33333334
  1173. outWeight: 0.33333334
  1174. - serializedVersion: 3
  1175. time: 0.33333334
  1176. value: 1
  1177. inSlope: -2.9999993
  1178. outSlope: -2.9999993
  1179. tangentMode: 34
  1180. weightedMode: 0
  1181. inWeight: 0.33333334
  1182. outWeight: 0.33333334
  1183. m_PreInfinity: 2
  1184. m_PostInfinity: 2
  1185. m_RotationOrder: 4
  1186. attribute: m_LocalScale.z
  1187. path: shouchonglibao
  1188. classID: 224
  1189. script: {fileID: 0}
  1190. - curve:
  1191. serializedVersion: 2
  1192. m_Curve:
  1193. - serializedVersion: 3
  1194. time: 0.33333334
  1195. value: 1.3
  1196. inSlope: -13
  1197. outSlope: -13
  1198. tangentMode: 34
  1199. weightedMode: 0
  1200. inWeight: 0.33333334
  1201. outWeight: 0.33333334
  1202. - serializedVersion: 3
  1203. time: 0.43333334
  1204. value: 0
  1205. inSlope: -13
  1206. outSlope: -13
  1207. tangentMode: 34
  1208. weightedMode: 0
  1209. inWeight: 0.33333334
  1210. outWeight: 0.33333334
  1211. m_PreInfinity: 2
  1212. m_PostInfinity: 2
  1213. m_RotationOrder: 4
  1214. attribute: m_LocalScale.x
  1215. path: tilizengsong
  1216. classID: 224
  1217. script: {fileID: 0}
  1218. - curve:
  1219. serializedVersion: 2
  1220. m_Curve:
  1221. - serializedVersion: 3
  1222. time: 0.33333334
  1223. value: 1.3
  1224. inSlope: -13
  1225. outSlope: -13
  1226. tangentMode: 34
  1227. weightedMode: 0
  1228. inWeight: 0.33333334
  1229. outWeight: 0.33333334
  1230. - serializedVersion: 3
  1231. time: 0.43333334
  1232. value: 0
  1233. inSlope: -13
  1234. outSlope: -13
  1235. tangentMode: 34
  1236. weightedMode: 0
  1237. inWeight: 0.33333334
  1238. outWeight: 0.33333334
  1239. m_PreInfinity: 2
  1240. m_PostInfinity: 2
  1241. m_RotationOrder: 4
  1242. attribute: m_LocalScale.y
  1243. path: tilizengsong
  1244. classID: 224
  1245. script: {fileID: 0}
  1246. - curve:
  1247. serializedVersion: 2
  1248. m_Curve:
  1249. - serializedVersion: 3
  1250. time: 0.33333334
  1251. value: 1.3
  1252. inSlope: -2.9999998
  1253. outSlope: -2.9999998
  1254. tangentMode: 34
  1255. weightedMode: 0
  1256. inWeight: 0.33333334
  1257. outWeight: 0.33333334
  1258. - serializedVersion: 3
  1259. time: 0.43333334
  1260. value: 1
  1261. inSlope: -2.9999998
  1262. outSlope: -2.9999998
  1263. tangentMode: 34
  1264. weightedMode: 0
  1265. inWeight: 0.33333334
  1266. outWeight: 0.33333334
  1267. m_PreInfinity: 2
  1268. m_PostInfinity: 2
  1269. m_RotationOrder: 4
  1270. attribute: m_LocalScale.z
  1271. path: tilizengsong
  1272. classID: 224
  1273. script: {fileID: 0}
  1274. - curve:
  1275. serializedVersion: 2
  1276. m_Curve:
  1277. - serializedVersion: 3
  1278. time: 0.1
  1279. value: 1.3
  1280. inSlope: -9.75
  1281. outSlope: -9.75
  1282. tangentMode: 34
  1283. weightedMode: 0
  1284. inWeight: 0.33333334
  1285. outWeight: 0.33333334
  1286. - serializedVersion: 3
  1287. time: 0.23333333
  1288. value: 0
  1289. inSlope: -9.75
  1290. outSlope: -9.75
  1291. tangentMode: 34
  1292. weightedMode: 0
  1293. inWeight: 0.33333334
  1294. outWeight: 0.33333334
  1295. m_PreInfinity: 2
  1296. m_PostInfinity: 2
  1297. m_RotationOrder: 4
  1298. attribute: m_LocalScale.x
  1299. path: zaixianlibao
  1300. classID: 224
  1301. script: {fileID: 0}
  1302. - curve:
  1303. serializedVersion: 2
  1304. m_Curve:
  1305. - serializedVersion: 3
  1306. time: 0.1
  1307. value: 1.3
  1308. inSlope: -9.75
  1309. outSlope: -9.75
  1310. tangentMode: 34
  1311. weightedMode: 0
  1312. inWeight: 0.33333334
  1313. outWeight: 0.33333334
  1314. - serializedVersion: 3
  1315. time: 0.23333333
  1316. value: 0
  1317. inSlope: -9.75
  1318. outSlope: -9.75
  1319. tangentMode: 34
  1320. weightedMode: 0
  1321. inWeight: 0.33333334
  1322. outWeight: 0.33333334
  1323. m_PreInfinity: 2
  1324. m_PostInfinity: 2
  1325. m_RotationOrder: 4
  1326. attribute: m_LocalScale.y
  1327. path: zaixianlibao
  1328. classID: 224
  1329. script: {fileID: 0}
  1330. - curve:
  1331. serializedVersion: 2
  1332. m_Curve:
  1333. - serializedVersion: 3
  1334. time: 0.1
  1335. value: 1.3
  1336. inSlope: -9.75
  1337. outSlope: -9.75
  1338. tangentMode: 34
  1339. weightedMode: 0
  1340. inWeight: 0.33333334
  1341. outWeight: 0.33333334
  1342. - serializedVersion: 3
  1343. time: 0.23333333
  1344. value: 0
  1345. inSlope: -9.75
  1346. outSlope: -9.75
  1347. tangentMode: 34
  1348. weightedMode: 0
  1349. inWeight: 0.33333334
  1350. outWeight: 0.33333334
  1351. m_PreInfinity: 2
  1352. m_PostInfinity: 2
  1353. m_RotationOrder: 4
  1354. attribute: m_LocalScale.z
  1355. path: zaixianlibao
  1356. classID: 224
  1357. script: {fileID: 0}
  1358. - curve:
  1359. serializedVersion: 2
  1360. m_Curve:
  1361. - serializedVersion: 3
  1362. time: 0
  1363. value: 1
  1364. inSlope: 0
  1365. outSlope: 0
  1366. tangentMode: 34
  1367. weightedMode: 0
  1368. inWeight: 0.33333334
  1369. outWeight: 0.33333334
  1370. - serializedVersion: 3
  1371. time: 0.1
  1372. value: 1
  1373. inSlope: 0
  1374. outSlope: 0
  1375. tangentMode: 34
  1376. weightedMode: 0
  1377. inWeight: 0.33333334
  1378. outWeight: 0.33333334
  1379. - serializedVersion: 3
  1380. time: 0.23333333
  1381. value: 1
  1382. inSlope: 0
  1383. outSlope: 0
  1384. tangentMode: 34
  1385. weightedMode: 0
  1386. inWeight: 0.33333334
  1387. outWeight: 0.33333334
  1388. - serializedVersion: 3
  1389. time: 0.33333334
  1390. value: 1
  1391. inSlope: 0
  1392. outSlope: 0
  1393. tangentMode: 34
  1394. weightedMode: 0
  1395. inWeight: 0.33333334
  1396. outWeight: 0.33333334
  1397. - serializedVersion: 3
  1398. time: 0.43333334
  1399. value: 1
  1400. inSlope: -4.999999
  1401. outSlope: -4.999999
  1402. tangentMode: 34
  1403. weightedMode: 0
  1404. inWeight: 0.33333334
  1405. outWeight: 0.33333334
  1406. - serializedVersion: 3
  1407. time: 0.53333336
  1408. value: 0
  1409. inSlope: 0.000002861023
  1410. outSlope: 0.000002861023
  1411. tangentMode: 34
  1412. weightedMode: 0
  1413. inWeight: 0.33333334
  1414. outWeight: 0.33333334
  1415. - serializedVersion: 3
  1416. time: 0.6333333
  1417. value: 1
  1418. inSlope: -9.999986
  1419. outSlope: -9.999986
  1420. tangentMode: 34
  1421. weightedMode: 0
  1422. inWeight: 0.33333334
  1423. outWeight: 0.33333334
  1424. - serializedVersion: 3
  1425. time: 0.6666667
  1426. value: 0
  1427. inSlope: -29.999975
  1428. outSlope: -29.999975
  1429. tangentMode: 34
  1430. weightedMode: 0
  1431. inWeight: 0.33333334
  1432. outWeight: 0.33333334
  1433. m_PreInfinity: 2
  1434. m_PostInfinity: 2
  1435. m_RotationOrder: 4
  1436. attribute: m_Color.a
  1437. path: shouchonglibao
  1438. classID: 114
  1439. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1440. - curve:
  1441. serializedVersion: 2
  1442. m_Curve:
  1443. - serializedVersion: 3
  1444. time: 0
  1445. value: 1
  1446. inSlope: 0
  1447. outSlope: 0
  1448. tangentMode: 34
  1449. weightedMode: 0
  1450. inWeight: 0.33333334
  1451. outWeight: 0.33333334
  1452. - serializedVersion: 3
  1453. time: 0.1
  1454. value: 1
  1455. inSlope: 0
  1456. outSlope: 0
  1457. tangentMode: 34
  1458. weightedMode: 0
  1459. inWeight: 0.33333334
  1460. outWeight: 0.33333334
  1461. - serializedVersion: 3
  1462. time: 0.23333333
  1463. value: 1
  1464. inSlope: 0
  1465. outSlope: 0
  1466. tangentMode: 34
  1467. weightedMode: 0
  1468. inWeight: 0.33333334
  1469. outWeight: 0.33333334
  1470. - serializedVersion: 3
  1471. time: 0.33333334
  1472. value: 1
  1473. inSlope: 0
  1474. outSlope: 0
  1475. tangentMode: 34
  1476. weightedMode: 0
  1477. inWeight: 0.33333334
  1478. outWeight: 0.33333334
  1479. - serializedVersion: 3
  1480. time: 0.43333334
  1481. value: 1
  1482. inSlope: -4.999999
  1483. outSlope: -4.999999
  1484. tangentMode: 34
  1485. weightedMode: 0
  1486. inWeight: 0.33333334
  1487. outWeight: 0.33333334
  1488. - serializedVersion: 3
  1489. time: 0.53333336
  1490. value: 0
  1491. inSlope: 0.000002861023
  1492. outSlope: 0.000002861023
  1493. tangentMode: 34
  1494. weightedMode: 0
  1495. inWeight: 0.33333334
  1496. outWeight: 0.33333334
  1497. - serializedVersion: 3
  1498. time: 0.6333333
  1499. value: 1
  1500. inSlope: -9.999986
  1501. outSlope: -9.999986
  1502. tangentMode: 34
  1503. weightedMode: 0
  1504. inWeight: 0.33333334
  1505. outWeight: 0.33333334
  1506. - serializedVersion: 3
  1507. time: 0.6666667
  1508. value: 0
  1509. inSlope: -29.999975
  1510. outSlope: -29.999975
  1511. tangentMode: 34
  1512. weightedMode: 0
  1513. inWeight: 0.33333334
  1514. outWeight: 0.33333334
  1515. m_PreInfinity: 2
  1516. m_PostInfinity: 2
  1517. m_RotationOrder: 4
  1518. attribute: m_Color.a
  1519. path: zaixianlibao
  1520. classID: 114
  1521. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1522. - curve:
  1523. serializedVersion: 2
  1524. m_Curve:
  1525. - serializedVersion: 3
  1526. time: 0
  1527. value: 1
  1528. inSlope: 0
  1529. outSlope: 0
  1530. tangentMode: 34
  1531. weightedMode: 0
  1532. inWeight: 0.33333334
  1533. outWeight: 0.33333334
  1534. - serializedVersion: 3
  1535. time: 0.1
  1536. value: 1
  1537. inSlope: 0
  1538. outSlope: 0
  1539. tangentMode: 34
  1540. weightedMode: 0
  1541. inWeight: 0.33333334
  1542. outWeight: 0.33333334
  1543. - serializedVersion: 3
  1544. time: 0.23333333
  1545. value: 1
  1546. inSlope: 0
  1547. outSlope: 0
  1548. tangentMode: 34
  1549. weightedMode: 0
  1550. inWeight: 0.33333334
  1551. outWeight: 0.33333334
  1552. - serializedVersion: 3
  1553. time: 0.33333334
  1554. value: 1
  1555. inSlope: 0
  1556. outSlope: 0
  1557. tangentMode: 34
  1558. weightedMode: 0
  1559. inWeight: 0.33333334
  1560. outWeight: 0.33333334
  1561. - serializedVersion: 3
  1562. time: 0.43333334
  1563. value: 1
  1564. inSlope: -4.999999
  1565. outSlope: -4.999999
  1566. tangentMode: 34
  1567. weightedMode: 0
  1568. inWeight: 0.33333334
  1569. outWeight: 0.33333334
  1570. - serializedVersion: 3
  1571. time: 0.53333336
  1572. value: 0
  1573. inSlope: 0.000002861023
  1574. outSlope: 0.000002861023
  1575. tangentMode: 34
  1576. weightedMode: 0
  1577. inWeight: 0.33333334
  1578. outWeight: 0.33333334
  1579. - serializedVersion: 3
  1580. time: 0.6333333
  1581. value: 1
  1582. inSlope: -9.999986
  1583. outSlope: -9.999986
  1584. tangentMode: 34
  1585. weightedMode: 0
  1586. inWeight: 0.33333334
  1587. outWeight: 0.33333334
  1588. - serializedVersion: 3
  1589. time: 0.6666667
  1590. value: 0
  1591. inSlope: -29.999975
  1592. outSlope: -29.999975
  1593. tangentMode: 34
  1594. weightedMode: 0
  1595. inWeight: 0.33333334
  1596. outWeight: 0.33333334
  1597. m_PreInfinity: 2
  1598. m_PostInfinity: 2
  1599. m_RotationOrder: 4
  1600. attribute: m_Color.a
  1601. path: quanfuzhuce
  1602. classID: 114
  1603. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1604. - curve:
  1605. serializedVersion: 2
  1606. m_Curve:
  1607. - serializedVersion: 3
  1608. time: 0
  1609. value: 1
  1610. inSlope: 0
  1611. outSlope: 0
  1612. tangentMode: 34
  1613. weightedMode: 0
  1614. inWeight: 0.33333334
  1615. outWeight: 0.33333334
  1616. - serializedVersion: 3
  1617. time: 0.1
  1618. value: 1
  1619. inSlope: 0
  1620. outSlope: 0
  1621. tangentMode: 34
  1622. weightedMode: 0
  1623. inWeight: 0.33333334
  1624. outWeight: 0.33333334
  1625. - serializedVersion: 3
  1626. time: 0.23333333
  1627. value: 1
  1628. inSlope: 0
  1629. outSlope: 0
  1630. tangentMode: 34
  1631. weightedMode: 0
  1632. inWeight: 0.33333334
  1633. outWeight: 0.33333334
  1634. - serializedVersion: 3
  1635. time: 0.33333334
  1636. value: 1
  1637. inSlope: 0
  1638. outSlope: 0
  1639. tangentMode: 34
  1640. weightedMode: 0
  1641. inWeight: 0.33333334
  1642. outWeight: 0.33333334
  1643. - serializedVersion: 3
  1644. time: 0.43333334
  1645. value: 1
  1646. inSlope: -4.999999
  1647. outSlope: -4.999999
  1648. tangentMode: 34
  1649. weightedMode: 0
  1650. inWeight: 0.33333334
  1651. outWeight: 0.33333334
  1652. - serializedVersion: 3
  1653. time: 0.53333336
  1654. value: 0
  1655. inSlope: 0.000002861023
  1656. outSlope: 0.000002861023
  1657. tangentMode: 34
  1658. weightedMode: 0
  1659. inWeight: 0.33333334
  1660. outWeight: 0.33333334
  1661. - serializedVersion: 3
  1662. time: 0.6333333
  1663. value: 1
  1664. inSlope: -9.999986
  1665. outSlope: -9.999986
  1666. tangentMode: 34
  1667. weightedMode: 0
  1668. inWeight: 0.33333334
  1669. outWeight: 0.33333334
  1670. - serializedVersion: 3
  1671. time: 0.6666667
  1672. value: 0
  1673. inSlope: -29.999975
  1674. outSlope: -29.999975
  1675. tangentMode: 34
  1676. weightedMode: 0
  1677. inWeight: 0.33333334
  1678. outWeight: 0.33333334
  1679. m_PreInfinity: 2
  1680. m_PostInfinity: 2
  1681. m_RotationOrder: 4
  1682. attribute: m_Color.a
  1683. path: tilizengsong
  1684. classID: 114
  1685. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1686. - curve:
  1687. serializedVersion: 2
  1688. m_Curve:
  1689. - serializedVersion: 3
  1690. time: 0
  1691. value: 1
  1692. inSlope: 0
  1693. outSlope: 0
  1694. tangentMode: 34
  1695. weightedMode: 0
  1696. inWeight: 0.33333334
  1697. outWeight: 0.33333334
  1698. - serializedVersion: 3
  1699. time: 0.1
  1700. value: 1
  1701. inSlope: 0
  1702. outSlope: 0
  1703. tangentMode: 34
  1704. weightedMode: 0
  1705. inWeight: 0.33333334
  1706. outWeight: 0.33333334
  1707. - serializedVersion: 3
  1708. time: 0.23333333
  1709. value: 1
  1710. inSlope: 0
  1711. outSlope: 0
  1712. tangentMode: 34
  1713. weightedMode: 0
  1714. inWeight: 0.33333334
  1715. outWeight: 0.33333334
  1716. - serializedVersion: 3
  1717. time: 0.33333334
  1718. value: 1
  1719. inSlope: 0
  1720. outSlope: 0
  1721. tangentMode: 34
  1722. weightedMode: 0
  1723. inWeight: 0.33333334
  1724. outWeight: 0.33333334
  1725. - serializedVersion: 3
  1726. time: 0.43333334
  1727. value: 1
  1728. inSlope: 0
  1729. outSlope: 0
  1730. tangentMode: 34
  1731. weightedMode: 0
  1732. inWeight: 0.33333334
  1733. outWeight: 0.33333334
  1734. - serializedVersion: 3
  1735. time: 0.53333336
  1736. value: 1
  1737. inSlope: 0
  1738. outSlope: 0
  1739. tangentMode: 34
  1740. weightedMode: 0
  1741. inWeight: 0.33333334
  1742. outWeight: 0.33333334
  1743. - serializedVersion: 3
  1744. time: 0.6333333
  1745. value: 1
  1746. inSlope: -14.999988
  1747. outSlope: -14.999988
  1748. tangentMode: 34
  1749. weightedMode: 0
  1750. inWeight: 0.33333334
  1751. outWeight: 0.33333334
  1752. - serializedVersion: 3
  1753. time: 0.6666667
  1754. value: 0
  1755. inSlope: -29.999975
  1756. outSlope: -29.999975
  1757. tangentMode: 34
  1758. weightedMode: 0
  1759. inWeight: 0.33333334
  1760. outWeight: 0.33333334
  1761. m_PreInfinity: 2
  1762. m_PostInfinity: 2
  1763. m_RotationOrder: 4
  1764. attribute: m_Color.a
  1765. path: jihuoma
  1766. classID: 114
  1767. script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1768. - curve:
  1769. serializedVersion: 2
  1770. m_Curve:
  1771. - serializedVersion: 3
  1772. time: 0
  1773. value: 1
  1774. inSlope: Infinity
  1775. outSlope: Infinity
  1776. tangentMode: 103
  1777. weightedMode: 0
  1778. inWeight: 0.33333334
  1779. outWeight: 0.33333334
  1780. - serializedVersion: 3
  1781. time: 0.6666667
  1782. value: 0
  1783. inSlope: Infinity
  1784. outSlope: Infinity
  1785. tangentMode: 103
  1786. weightedMode: 0
  1787. inWeight: 0.33333334
  1788. outWeight: 0.33333334
  1789. m_PreInfinity: 2
  1790. m_PostInfinity: 2
  1791. m_RotationOrder: 4
  1792. attribute: m_IsActive
  1793. path: shouchonglibao
  1794. classID: 1
  1795. script: {fileID: 0}
  1796. - curve:
  1797. serializedVersion: 2
  1798. m_Curve:
  1799. - serializedVersion: 3
  1800. time: 0
  1801. value: 1
  1802. inSlope: Infinity
  1803. outSlope: Infinity
  1804. tangentMode: 103
  1805. weightedMode: 0
  1806. inWeight: 0.33333334
  1807. outWeight: 0.33333334
  1808. - serializedVersion: 3
  1809. time: 0.6666667
  1810. value: 0
  1811. inSlope: Infinity
  1812. outSlope: Infinity
  1813. tangentMode: 103
  1814. weightedMode: 0
  1815. inWeight: 0.33333334
  1816. outWeight: 0.33333334
  1817. m_PreInfinity: 2
  1818. m_PostInfinity: 2
  1819. m_RotationOrder: 4
  1820. attribute: m_IsActive
  1821. path: zaixianlibao
  1822. classID: 1
  1823. script: {fileID: 0}
  1824. - curve:
  1825. serializedVersion: 2
  1826. m_Curve:
  1827. - serializedVersion: 3
  1828. time: 0
  1829. value: 1
  1830. inSlope: Infinity
  1831. outSlope: Infinity
  1832. tangentMode: 103
  1833. weightedMode: 0
  1834. inWeight: 0.33333334
  1835. outWeight: 0.33333334
  1836. - serializedVersion: 3
  1837. time: 0.6666667
  1838. value: 0
  1839. inSlope: Infinity
  1840. outSlope: Infinity
  1841. tangentMode: 103
  1842. weightedMode: 0
  1843. inWeight: 0.33333334
  1844. outWeight: 0.33333334
  1845. m_PreInfinity: 2
  1846. m_PostInfinity: 2
  1847. m_RotationOrder: 4
  1848. attribute: m_IsActive
  1849. path: quanfuzhuce
  1850. classID: 1
  1851. script: {fileID: 0}
  1852. - curve:
  1853. serializedVersion: 2
  1854. m_Curve:
  1855. - serializedVersion: 3
  1856. time: 0
  1857. value: 1
  1858. inSlope: Infinity
  1859. outSlope: Infinity
  1860. tangentMode: 103
  1861. weightedMode: 0
  1862. inWeight: 0.33333334
  1863. outWeight: 0.33333334
  1864. - serializedVersion: 3
  1865. time: 0.6666667
  1866. value: 0
  1867. inSlope: Infinity
  1868. outSlope: Infinity
  1869. tangentMode: 103
  1870. weightedMode: 0
  1871. inWeight: 0.33333334
  1872. outWeight: 0.33333334
  1873. m_PreInfinity: 2
  1874. m_PostInfinity: 2
  1875. m_RotationOrder: 4
  1876. attribute: m_IsActive
  1877. path: tilizengsong
  1878. classID: 1
  1879. script: {fileID: 0}
  1880. - curve:
  1881. serializedVersion: 2
  1882. m_Curve:
  1883. - serializedVersion: 3
  1884. time: 0
  1885. value: 1
  1886. inSlope: Infinity
  1887. outSlope: Infinity
  1888. tangentMode: 103
  1889. weightedMode: 0
  1890. inWeight: 0.33333334
  1891. outWeight: 0.33333334
  1892. - serializedVersion: 3
  1893. time: 0.6666667
  1894. value: 0
  1895. inSlope: Infinity
  1896. outSlope: Infinity
  1897. tangentMode: 103
  1898. weightedMode: 0
  1899. inWeight: 0.33333334
  1900. outWeight: 0.33333334
  1901. m_PreInfinity: 2
  1902. m_PostInfinity: 2
  1903. m_RotationOrder: 4
  1904. attribute: m_IsActive
  1905. path: jihuoma
  1906. classID: 1
  1907. script: {fileID: 0}
  1908. m_EulerEditorCurves: []
  1909. m_HasGenericRootTransform: 0
  1910. m_HasMotionFloatCurves: 0
  1911. m_Events: []