ShaPan.anim 64 KB

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