tanchu.anim 46 KB

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