FX_Leaves_Blossom_01.prefab 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1001 &100100000
  4. Prefab:
  5. m_ObjectHideFlags: 1
  6. serializedVersion: 2
  7. m_Modification:
  8. m_TransformParent: {fileID: 0}
  9. m_Modifications: []
  10. m_RemovedComponents: []
  11. m_ParentPrefab: {fileID: 0}
  12. m_RootGameObject: {fileID: 1139958743464902}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1139958743464902
  15. GameObject:
  16. m_ObjectHideFlags: 0
  17. m_PrefabParentObject: {fileID: 0}
  18. m_PrefabInternal: {fileID: 100100000}
  19. serializedVersion: 5
  20. m_Component:
  21. - component: {fileID: 4191490092441662}
  22. - component: {fileID: 198733207495284474}
  23. - component: {fileID: 199744793079097426}
  24. m_Layer: 0
  25. m_Name: FX_Leaves_Blossom_01
  26. m_TagString: Untagged
  27. m_Icon: {fileID: 0}
  28. m_NavMeshLayer: 0
  29. m_StaticEditorFlags: 0
  30. m_IsActive: 1
  31. --- !u!4 &4191490092441662
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1139958743464902}
  37. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  38. m_LocalPosition: {x: 0, y: 0, z: 0}
  39. m_LocalScale: {x: 1, y: 1, z: 1}
  40. m_Children: []
  41. m_Father: {fileID: 0}
  42. m_RootOrder: 0
  43. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  44. --- !u!198 &198733207495284474
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1139958743464902}
  50. serializedVersion: 5
  51. lengthInSec: 5
  52. simulationSpeed: 1
  53. looping: 1
  54. prewarm: 1
  55. playOnAwake: 1
  56. useUnscaledTime: 0
  57. autoRandomSeed: 1
  58. useRigidbodyForVelocity: 1
  59. startDelay:
  60. serializedVersion: 2
  61. minMaxState: 0
  62. scalar: 0
  63. minScalar: 0
  64. maxCurve:
  65. serializedVersion: 2
  66. m_Curve:
  67. - serializedVersion: 2
  68. time: 0
  69. value: 0
  70. inSlope: 0
  71. outSlope: 0
  72. tangentMode: 0
  73. - serializedVersion: 2
  74. time: 1
  75. value: 0
  76. inSlope: 0
  77. outSlope: 0
  78. tangentMode: 0
  79. m_PreInfinity: 2
  80. m_PostInfinity: 2
  81. m_RotationOrder: 4
  82. minCurve:
  83. serializedVersion: 2
  84. m_Curve:
  85. - serializedVersion: 2
  86. time: 0
  87. value: 0
  88. inSlope: 0
  89. outSlope: 0
  90. tangentMode: 0
  91. - serializedVersion: 2
  92. time: 1
  93. value: 0
  94. inSlope: 0
  95. outSlope: 0
  96. tangentMode: 0
  97. m_PreInfinity: 2
  98. m_PostInfinity: 2
  99. m_RotationOrder: 4
  100. moveWithTransform: 0
  101. moveWithCustomTransform: {fileID: 0}
  102. scalingMode: 1
  103. randomSeed: -242560670
  104. InitialModule:
  105. serializedVersion: 3
  106. enabled: 1
  107. startLifetime:
  108. serializedVersion: 2
  109. minMaxState: 0
  110. scalar: 10
  111. minScalar: 5
  112. maxCurve:
  113. serializedVersion: 2
  114. m_Curve:
  115. - serializedVersion: 2
  116. time: 0
  117. value: 1
  118. inSlope: 0
  119. outSlope: 0
  120. tangentMode: 0
  121. - serializedVersion: 2
  122. time: 1
  123. value: 1
  124. inSlope: 0
  125. outSlope: 0
  126. tangentMode: 0
  127. m_PreInfinity: 2
  128. m_PostInfinity: 2
  129. m_RotationOrder: 4
  130. minCurve:
  131. serializedVersion: 2
  132. m_Curve:
  133. - serializedVersion: 2
  134. time: 0
  135. value: 0
  136. inSlope: 0
  137. outSlope: 0
  138. tangentMode: 0
  139. - serializedVersion: 2
  140. time: 1
  141. value: 0
  142. inSlope: 0
  143. outSlope: 0
  144. tangentMode: 0
  145. m_PreInfinity: 2
  146. m_PostInfinity: 2
  147. m_RotationOrder: 4
  148. startSpeed:
  149. serializedVersion: 2
  150. minMaxState: 0
  151. scalar: 0
  152. minScalar: 5
  153. maxCurve:
  154. serializedVersion: 2
  155. m_Curve:
  156. - serializedVersion: 2
  157. time: 0
  158. value: 1
  159. inSlope: 0
  160. outSlope: 0
  161. tangentMode: 0
  162. - serializedVersion: 2
  163. time: 1
  164. value: 1
  165. inSlope: 0
  166. outSlope: 0
  167. tangentMode: 0
  168. m_PreInfinity: 2
  169. m_PostInfinity: 2
  170. m_RotationOrder: 4
  171. minCurve:
  172. serializedVersion: 2
  173. m_Curve:
  174. - serializedVersion: 2
  175. time: 0
  176. value: 0
  177. inSlope: 0
  178. outSlope: 0
  179. tangentMode: 0
  180. - serializedVersion: 2
  181. time: 1
  182. value: 0
  183. inSlope: 0
  184. outSlope: 0
  185. tangentMode: 0
  186. m_PreInfinity: 2
  187. m_PostInfinity: 2
  188. m_RotationOrder: 4
  189. startColor:
  190. serializedVersion: 2
  191. minMaxState: 0
  192. minColor: {r: 1, g: 1, b: 1, a: 1}
  193. maxColor: {r: 1, g: 1, b: 1, a: 1}
  194. maxGradient:
  195. serializedVersion: 2
  196. key0: {r: 1, g: 1, b: 1, a: 1}
  197. key1: {r: 1, g: 1, b: 1, a: 1}
  198. key2: {r: 0, g: 0, b: 0, a: 0}
  199. key3: {r: 0, g: 0, b: 0, a: 0}
  200. key4: {r: 0, g: 0, b: 0, a: 0}
  201. key5: {r: 0, g: 0, b: 0, a: 0}
  202. key6: {r: 0, g: 0, b: 0, a: 0}
  203. key7: {r: 0, g: 0, b: 0, a: 0}
  204. ctime0: 0
  205. ctime1: 65535
  206. ctime2: 0
  207. ctime3: 0
  208. ctime4: 0
  209. ctime5: 0
  210. ctime6: 0
  211. ctime7: 0
  212. atime0: 0
  213. atime1: 65535
  214. atime2: 0
  215. atime3: 0
  216. atime4: 0
  217. atime5: 0
  218. atime6: 0
  219. atime7: 0
  220. m_Mode: 0
  221. m_NumColorKeys: 2
  222. m_NumAlphaKeys: 2
  223. minGradient:
  224. serializedVersion: 2
  225. key0: {r: 1, g: 1, b: 1, a: 1}
  226. key1: {r: 1, g: 1, b: 1, a: 1}
  227. key2: {r: 0, g: 0, b: 0, a: 0}
  228. key3: {r: 0, g: 0, b: 0, a: 0}
  229. key4: {r: 0, g: 0, b: 0, a: 0}
  230. key5: {r: 0, g: 0, b: 0, a: 0}
  231. key6: {r: 0, g: 0, b: 0, a: 0}
  232. key7: {r: 0, g: 0, b: 0, a: 0}
  233. ctime0: 0
  234. ctime1: 65535
  235. ctime2: 0
  236. ctime3: 0
  237. ctime4: 0
  238. ctime5: 0
  239. ctime6: 0
  240. ctime7: 0
  241. atime0: 0
  242. atime1: 65535
  243. atime2: 0
  244. atime3: 0
  245. atime4: 0
  246. atime5: 0
  247. atime6: 0
  248. atime7: 0
  249. m_Mode: 0
  250. m_NumColorKeys: 2
  251. m_NumAlphaKeys: 2
  252. startSize:
  253. serializedVersion: 2
  254. minMaxState: 3
  255. scalar: 0.1
  256. minScalar: 0.05
  257. maxCurve:
  258. serializedVersion: 2
  259. m_Curve:
  260. - serializedVersion: 2
  261. time: 0
  262. value: 1
  263. inSlope: 0
  264. outSlope: 0
  265. tangentMode: 0
  266. - serializedVersion: 2
  267. time: 1
  268. value: 1
  269. inSlope: 0
  270. outSlope: 0
  271. tangentMode: 0
  272. m_PreInfinity: 2
  273. m_PostInfinity: 2
  274. m_RotationOrder: 4
  275. minCurve:
  276. serializedVersion: 2
  277. m_Curve:
  278. - serializedVersion: 2
  279. time: 0
  280. value: 0
  281. inSlope: 0
  282. outSlope: 0
  283. tangentMode: 0
  284. - serializedVersion: 2
  285. time: 1
  286. value: 0
  287. inSlope: 0
  288. outSlope: 0
  289. tangentMode: 0
  290. m_PreInfinity: 2
  291. m_PostInfinity: 2
  292. m_RotationOrder: 4
  293. startSizeY:
  294. serializedVersion: 2
  295. minMaxState: 3
  296. scalar: 1
  297. minScalar: 1
  298. maxCurve:
  299. serializedVersion: 2
  300. m_Curve:
  301. - serializedVersion: 2
  302. time: 0
  303. value: 1
  304. inSlope: 0
  305. outSlope: 0
  306. tangentMode: 0
  307. - serializedVersion: 2
  308. time: 1
  309. value: 1
  310. inSlope: 0
  311. outSlope: 0
  312. tangentMode: 0
  313. m_PreInfinity: 2
  314. m_PostInfinity: 2
  315. m_RotationOrder: 4
  316. minCurve:
  317. serializedVersion: 2
  318. m_Curve:
  319. - serializedVersion: 2
  320. time: 0
  321. value: 0
  322. inSlope: 0
  323. outSlope: 0
  324. tangentMode: 0
  325. - serializedVersion: 2
  326. time: 1
  327. value: 0
  328. inSlope: 0
  329. outSlope: 0
  330. tangentMode: 0
  331. m_PreInfinity: 2
  332. m_PostInfinity: 2
  333. m_RotationOrder: 4
  334. startSizeZ:
  335. serializedVersion: 2
  336. minMaxState: 3
  337. scalar: 1
  338. minScalar: 1
  339. maxCurve:
  340. serializedVersion: 2
  341. m_Curve:
  342. - serializedVersion: 2
  343. time: 0
  344. value: 1
  345. inSlope: 0
  346. outSlope: 0
  347. tangentMode: 0
  348. - serializedVersion: 2
  349. time: 1
  350. value: 1
  351. inSlope: 0
  352. outSlope: 0
  353. tangentMode: 0
  354. m_PreInfinity: 2
  355. m_PostInfinity: 2
  356. m_RotationOrder: 4
  357. minCurve:
  358. serializedVersion: 2
  359. m_Curve:
  360. - serializedVersion: 2
  361. time: 0
  362. value: 0
  363. inSlope: 0
  364. outSlope: 0
  365. tangentMode: 0
  366. - serializedVersion: 2
  367. time: 1
  368. value: 0
  369. inSlope: 0
  370. outSlope: 0
  371. tangentMode: 0
  372. m_PreInfinity: 2
  373. m_PostInfinity: 2
  374. m_RotationOrder: 4
  375. startRotationX:
  376. serializedVersion: 2
  377. minMaxState: 3
  378. scalar: 0
  379. minScalar: 0
  380. maxCurve:
  381. serializedVersion: 2
  382. m_Curve:
  383. - serializedVersion: 2
  384. time: 0
  385. value: 0
  386. inSlope: 0
  387. outSlope: 0
  388. tangentMode: 0
  389. m_PreInfinity: 2
  390. m_PostInfinity: 2
  391. m_RotationOrder: 0
  392. minCurve:
  393. serializedVersion: 2
  394. m_Curve:
  395. - serializedVersion: 2
  396. time: 0
  397. value: 0
  398. inSlope: 0
  399. outSlope: 0
  400. tangentMode: 0
  401. m_PreInfinity: 2
  402. m_PostInfinity: 2
  403. m_RotationOrder: 0
  404. startRotationY:
  405. serializedVersion: 2
  406. minMaxState: 3
  407. scalar: 0
  408. minScalar: 0
  409. maxCurve:
  410. serializedVersion: 2
  411. m_Curve:
  412. - serializedVersion: 2
  413. time: 0
  414. value: 0
  415. inSlope: 0
  416. outSlope: 0
  417. tangentMode: 0
  418. m_PreInfinity: 2
  419. m_PostInfinity: 2
  420. m_RotationOrder: 0
  421. minCurve:
  422. serializedVersion: 2
  423. m_Curve:
  424. - serializedVersion: 2
  425. time: 0
  426. value: 0
  427. inSlope: 0
  428. outSlope: 0
  429. tangentMode: 0
  430. m_PreInfinity: 2
  431. m_PostInfinity: 2
  432. m_RotationOrder: 0
  433. startRotation:
  434. serializedVersion: 2
  435. minMaxState: 3
  436. scalar: 0
  437. minScalar: 0
  438. maxCurve:
  439. serializedVersion: 2
  440. m_Curve:
  441. - serializedVersion: 2
  442. time: 0
  443. value: 0
  444. inSlope: 0
  445. outSlope: 0
  446. tangentMode: 0
  447. m_PreInfinity: 2
  448. m_PostInfinity: 2
  449. m_RotationOrder: 0
  450. minCurve:
  451. serializedVersion: 2
  452. m_Curve:
  453. - serializedVersion: 2
  454. time: 0
  455. value: 0
  456. inSlope: 0
  457. outSlope: 0
  458. tangentMode: 0
  459. m_PreInfinity: 2
  460. m_PostInfinity: 2
  461. m_RotationOrder: 0
  462. randomizeRotationDirection: 1
  463. maxNumParticles: 1000
  464. size3D: 0
  465. rotation3D: 0
  466. gravityModifier:
  467. serializedVersion: 2
  468. minMaxState: 0
  469. scalar: 0.01
  470. minScalar: 0
  471. maxCurve:
  472. serializedVersion: 2
  473. m_Curve:
  474. - serializedVersion: 2
  475. time: 0
  476. value: 1
  477. inSlope: 0
  478. outSlope: 0
  479. tangentMode: 0
  480. - serializedVersion: 2
  481. time: 1
  482. value: 1
  483. inSlope: 0
  484. outSlope: 0
  485. tangentMode: 0
  486. m_PreInfinity: 2
  487. m_PostInfinity: 2
  488. m_RotationOrder: 4
  489. minCurve:
  490. serializedVersion: 2
  491. m_Curve:
  492. - serializedVersion: 2
  493. time: 0
  494. value: 0
  495. inSlope: 0
  496. outSlope: 0
  497. tangentMode: 0
  498. - serializedVersion: 2
  499. time: 1
  500. value: 0
  501. inSlope: 0
  502. outSlope: 0
  503. tangentMode: 0
  504. m_PreInfinity: 2
  505. m_PostInfinity: 2
  506. m_RotationOrder: 4
  507. ShapeModule:
  508. serializedVersion: 5
  509. enabled: 1
  510. type: 0
  511. angle: 25
  512. length: 5
  513. boxThickness: {x: 0, y: 0, z: 0}
  514. radiusThickness: 1
  515. donutRadius: 0.2
  516. m_Position: {x: 0, y: 2.5, z: 0}
  517. m_Rotation: {x: 0, y: 0, z: 0}
  518. m_Scale: {x: 1, y: 1, z: 1}
  519. placementMode: 0
  520. m_Mesh: {fileID: 0}
  521. m_MeshRenderer: {fileID: 0}
  522. m_SkinnedMeshRenderer: {fileID: 0}
  523. m_MeshMaterialIndex: 0
  524. m_MeshNormalOffset: 0
  525. m_UseMeshMaterialIndex: 0
  526. m_UseMeshColors: 1
  527. alignToDirection: 0
  528. randomDirectionAmount: 1
  529. sphericalDirectionAmount: 0
  530. randomPositionAmount: 1
  531. radius:
  532. value: 1
  533. mode: 0
  534. spread: 0
  535. speed:
  536. serializedVersion: 2
  537. minMaxState: 0
  538. scalar: 1
  539. minScalar: 1
  540. maxCurve:
  541. serializedVersion: 2
  542. m_Curve:
  543. - serializedVersion: 2
  544. time: 0
  545. value: 1
  546. inSlope: 0
  547. outSlope: 0
  548. tangentMode: 0
  549. - serializedVersion: 2
  550. time: 1
  551. value: 1
  552. inSlope: 0
  553. outSlope: 0
  554. tangentMode: 0
  555. m_PreInfinity: 2
  556. m_PostInfinity: 2
  557. m_RotationOrder: 4
  558. minCurve:
  559. serializedVersion: 2
  560. m_Curve:
  561. - serializedVersion: 2
  562. time: 0
  563. value: 0
  564. inSlope: 0
  565. outSlope: 0
  566. tangentMode: 0
  567. - serializedVersion: 2
  568. time: 1
  569. value: 0
  570. inSlope: 0
  571. outSlope: 0
  572. tangentMode: 0
  573. m_PreInfinity: 2
  574. m_PostInfinity: 2
  575. m_RotationOrder: 4
  576. arc:
  577. value: 360
  578. mode: 0
  579. spread: 0
  580. speed:
  581. serializedVersion: 2
  582. minMaxState: 0
  583. scalar: 1
  584. minScalar: 1
  585. maxCurve:
  586. serializedVersion: 2
  587. m_Curve:
  588. - serializedVersion: 2
  589. time: 0
  590. value: 1
  591. inSlope: 0
  592. outSlope: 0
  593. tangentMode: 0
  594. - serializedVersion: 2
  595. time: 1
  596. value: 1
  597. inSlope: 0
  598. outSlope: 0
  599. tangentMode: 0
  600. m_PreInfinity: 2
  601. m_PostInfinity: 2
  602. m_RotationOrder: 4
  603. minCurve:
  604. serializedVersion: 2
  605. m_Curve:
  606. - serializedVersion: 2
  607. time: 0
  608. value: 0
  609. inSlope: 0
  610. outSlope: 0
  611. tangentMode: 0
  612. - serializedVersion: 2
  613. time: 1
  614. value: 0
  615. inSlope: 0
  616. outSlope: 0
  617. tangentMode: 0
  618. m_PreInfinity: 2
  619. m_PostInfinity: 2
  620. m_RotationOrder: 4
  621. EmissionModule:
  622. enabled: 1
  623. serializedVersion: 4
  624. rateOverTime:
  625. serializedVersion: 2
  626. minMaxState: 0
  627. scalar: 5
  628. minScalar: 10
  629. maxCurve:
  630. serializedVersion: 2
  631. m_Curve:
  632. - serializedVersion: 2
  633. time: 0
  634. value: 1
  635. inSlope: 0
  636. outSlope: 0
  637. tangentMode: 0
  638. - serializedVersion: 2
  639. time: 1
  640. value: 1
  641. inSlope: 0
  642. outSlope: 0
  643. tangentMode: 0
  644. m_PreInfinity: 2
  645. m_PostInfinity: 2
  646. m_RotationOrder: 4
  647. minCurve:
  648. serializedVersion: 2
  649. m_Curve:
  650. - serializedVersion: 2
  651. time: 0
  652. value: 0
  653. inSlope: 0
  654. outSlope: 0
  655. tangentMode: 0
  656. - serializedVersion: 2
  657. time: 1
  658. value: 0
  659. inSlope: 0
  660. outSlope: 0
  661. tangentMode: 0
  662. m_PreInfinity: 2
  663. m_PostInfinity: 2
  664. m_RotationOrder: 4
  665. rateOverDistance:
  666. serializedVersion: 2
  667. minMaxState: 0
  668. scalar: 0
  669. minScalar: 0
  670. maxCurve:
  671. serializedVersion: 2
  672. m_Curve:
  673. - serializedVersion: 2
  674. time: 0
  675. value: 1
  676. inSlope: 0
  677. outSlope: 0
  678. tangentMode: 0
  679. - serializedVersion: 2
  680. time: 1
  681. value: 1
  682. inSlope: 0
  683. outSlope: 0
  684. tangentMode: 0
  685. m_PreInfinity: 2
  686. m_PostInfinity: 2
  687. m_RotationOrder: 4
  688. minCurve:
  689. serializedVersion: 2
  690. m_Curve:
  691. - serializedVersion: 2
  692. time: 0
  693. value: 0
  694. inSlope: 0
  695. outSlope: 0
  696. tangentMode: 0
  697. - serializedVersion: 2
  698. time: 1
  699. value: 0
  700. inSlope: 0
  701. outSlope: 0
  702. tangentMode: 0
  703. m_PreInfinity: 2
  704. m_PostInfinity: 2
  705. m_RotationOrder: 4
  706. m_BurstCount: 0
  707. m_Bursts: []
  708. SizeModule:
  709. enabled: 1
  710. curve:
  711. serializedVersion: 2
  712. minMaxState: 1
  713. scalar: 1
  714. minScalar: 1
  715. maxCurve:
  716. serializedVersion: 2
  717. m_Curve:
  718. - serializedVersion: 2
  719. time: 0
  720. value: 0
  721. inSlope: 0
  722. outSlope: 0
  723. tangentMode: 0
  724. - serializedVersion: 2
  725. time: 0.06560636
  726. value: 1
  727. inSlope: 0
  728. outSlope: 0
  729. tangentMode: 0
  730. - serializedVersion: 2
  731. time: 0.9582505
  732. value: 1
  733. inSlope: 0
  734. outSlope: 0
  735. tangentMode: 0
  736. - serializedVersion: 2
  737. time: 1
  738. value: 0
  739. inSlope: 0
  740. outSlope: 0
  741. tangentMode: 0
  742. m_PreInfinity: 2
  743. m_PostInfinity: 2
  744. m_RotationOrder: 0
  745. minCurve:
  746. serializedVersion: 2
  747. m_Curve:
  748. - serializedVersion: 2
  749. time: 0
  750. value: 0
  751. inSlope: 0
  752. outSlope: 0
  753. tangentMode: 0
  754. - serializedVersion: 2
  755. time: 1
  756. value: 0
  757. inSlope: 0
  758. outSlope: 0
  759. tangentMode: 0
  760. m_PreInfinity: 2
  761. m_PostInfinity: 2
  762. m_RotationOrder: 4
  763. y:
  764. serializedVersion: 2
  765. minMaxState: 1
  766. scalar: 1
  767. minScalar: 1
  768. maxCurve:
  769. serializedVersion: 2
  770. m_Curve:
  771. - serializedVersion: 2
  772. time: 0
  773. value: 1
  774. inSlope: 0
  775. outSlope: 0
  776. tangentMode: 0
  777. - serializedVersion: 2
  778. time: 1
  779. value: 1
  780. inSlope: 0
  781. outSlope: 0
  782. tangentMode: 0
  783. m_PreInfinity: 2
  784. m_PostInfinity: 2
  785. m_RotationOrder: 4
  786. minCurve:
  787. serializedVersion: 2
  788. m_Curve:
  789. - serializedVersion: 2
  790. time: 0
  791. value: 0
  792. inSlope: 0
  793. outSlope: 0
  794. tangentMode: 0
  795. - serializedVersion: 2
  796. time: 1
  797. value: 0
  798. inSlope: 0
  799. outSlope: 0
  800. tangentMode: 0
  801. m_PreInfinity: 2
  802. m_PostInfinity: 2
  803. m_RotationOrder: 4
  804. z:
  805. serializedVersion: 2
  806. minMaxState: 1
  807. scalar: 1
  808. minScalar: 1
  809. maxCurve:
  810. serializedVersion: 2
  811. m_Curve:
  812. - serializedVersion: 2
  813. time: 0
  814. value: 1
  815. inSlope: 0
  816. outSlope: 0
  817. tangentMode: 0
  818. - serializedVersion: 2
  819. time: 1
  820. value: 1
  821. inSlope: 0
  822. outSlope: 0
  823. tangentMode: 0
  824. m_PreInfinity: 2
  825. m_PostInfinity: 2
  826. m_RotationOrder: 4
  827. minCurve:
  828. serializedVersion: 2
  829. m_Curve:
  830. - serializedVersion: 2
  831. time: 0
  832. value: 0
  833. inSlope: 0
  834. outSlope: 0
  835. tangentMode: 0
  836. - serializedVersion: 2
  837. time: 1
  838. value: 0
  839. inSlope: 0
  840. outSlope: 0
  841. tangentMode: 0
  842. m_PreInfinity: 2
  843. m_PostInfinity: 2
  844. m_RotationOrder: 4
  845. separateAxes: 0
  846. RotationModule:
  847. enabled: 1
  848. x:
  849. serializedVersion: 2
  850. minMaxState: 3
  851. scalar: 0
  852. minScalar: 0
  853. maxCurve:
  854. serializedVersion: 2
  855. m_Curve:
  856. - serializedVersion: 2
  857. time: 0
  858. value: 0
  859. inSlope: 0
  860. outSlope: 0
  861. tangentMode: 0
  862. m_PreInfinity: 2
  863. m_PostInfinity: 2
  864. m_RotationOrder: 0
  865. minCurve:
  866. serializedVersion: 2
  867. m_Curve:
  868. - serializedVersion: 2
  869. time: 0
  870. value: 0
  871. inSlope: 0
  872. outSlope: 0
  873. tangentMode: 0
  874. m_PreInfinity: 2
  875. m_PostInfinity: 2
  876. m_RotationOrder: 0
  877. y:
  878. serializedVersion: 2
  879. minMaxState: 3
  880. scalar: 0
  881. minScalar: 0
  882. maxCurve:
  883. serializedVersion: 2
  884. m_Curve:
  885. - serializedVersion: 2
  886. time: 0
  887. value: 0
  888. inSlope: 0
  889. outSlope: 0
  890. tangentMode: 0
  891. m_PreInfinity: 2
  892. m_PostInfinity: 2
  893. m_RotationOrder: 0
  894. minCurve:
  895. serializedVersion: 2
  896. m_Curve:
  897. - serializedVersion: 2
  898. time: 0
  899. value: 0
  900. inSlope: 0
  901. outSlope: 0
  902. tangentMode: 0
  903. m_PreInfinity: 2
  904. m_PostInfinity: 2
  905. m_RotationOrder: 0
  906. curve:
  907. serializedVersion: 2
  908. minMaxState: 3
  909. scalar: 1.5707963
  910. minScalar: 0.2617994
  911. maxCurve:
  912. serializedVersion: 2
  913. m_Curve:
  914. - serializedVersion: 2
  915. time: 0
  916. value: 1
  917. inSlope: 0
  918. outSlope: 0
  919. tangentMode: 0
  920. m_PreInfinity: 2
  921. m_PostInfinity: 2
  922. m_RotationOrder: 0
  923. minCurve:
  924. serializedVersion: 2
  925. m_Curve:
  926. - serializedVersion: 2
  927. time: 0
  928. value: 0.16666669
  929. inSlope: 0
  930. outSlope: 0
  931. tangentMode: 0
  932. m_PreInfinity: 2
  933. m_PostInfinity: 2
  934. m_RotationOrder: 0
  935. separateAxes: 0
  936. ColorModule:
  937. enabled: 1
  938. gradient:
  939. serializedVersion: 2
  940. minMaxState: 1
  941. minColor: {r: 1, g: 1, b: 1, a: 1}
  942. maxColor: {r: 1, g: 1, b: 1, a: 1}
  943. maxGradient:
  944. serializedVersion: 2
  945. key0: {r: 1, g: 0.8455882, b: 0.9701825, a: 0}
  946. key1: {r: 1, g: 0.8455882, b: 0.9701825, a: 1}
  947. key2: {r: 0, g: 0, b: 0, a: 1}
  948. key3: {r: 0, g: 0, b: 0, a: 0}
  949. key4: {r: 0, g: 0, b: 0, a: 0}
  950. key5: {r: 0, g: 0, b: 0, a: 0}
  951. key6: {r: 0, g: 0, b: 0, a: 0}
  952. key7: {r: 0, g: 0, b: 0, a: 0}
  953. ctime0: 0
  954. ctime1: 65535
  955. ctime2: 0
  956. ctime3: 0
  957. ctime4: 0
  958. ctime5: 0
  959. ctime6: 0
  960. ctime7: 0
  961. atime0: 0
  962. atime1: 4955
  963. atime2: 61470
  964. atime3: 65535
  965. atime4: 0
  966. atime5: 0
  967. atime6: 0
  968. atime7: 0
  969. m_Mode: 0
  970. m_NumColorKeys: 2
  971. m_NumAlphaKeys: 4
  972. minGradient:
  973. serializedVersion: 2
  974. key0: {r: 1, g: 1, b: 1, a: 1}
  975. key1: {r: 1, g: 1, b: 1, a: 1}
  976. key2: {r: 0, g: 0, b: 0, a: 0}
  977. key3: {r: 0, g: 0, b: 0, a: 0}
  978. key4: {r: 0, g: 0, b: 0, a: 0}
  979. key5: {r: 0, g: 0, b: 0, a: 0}
  980. key6: {r: 0, g: 0, b: 0, a: 0}
  981. key7: {r: 0, g: 0, b: 0, a: 0}
  982. ctime0: 0
  983. ctime1: 65535
  984. ctime2: 0
  985. ctime3: 0
  986. ctime4: 0
  987. ctime5: 0
  988. ctime6: 0
  989. ctime7: 0
  990. atime0: 0
  991. atime1: 65535
  992. atime2: 0
  993. atime3: 0
  994. atime4: 0
  995. atime5: 0
  996. atime6: 0
  997. atime7: 0
  998. m_Mode: 0
  999. m_NumColorKeys: 2
  1000. m_NumAlphaKeys: 2
  1001. UVModule:
  1002. enabled: 0
  1003. mode: 0
  1004. frameOverTime:
  1005. serializedVersion: 2
  1006. minMaxState: 1
  1007. scalar: 0.9999
  1008. minScalar: 0.9999
  1009. maxCurve:
  1010. serializedVersion: 2
  1011. m_Curve:
  1012. - serializedVersion: 2
  1013. time: 0
  1014. value: 0
  1015. inSlope: 0
  1016. outSlope: 1
  1017. tangentMode: 0
  1018. - serializedVersion: 2
  1019. time: 1
  1020. value: 1
  1021. inSlope: 1
  1022. outSlope: 0
  1023. tangentMode: 0
  1024. m_PreInfinity: 2
  1025. m_PostInfinity: 2
  1026. m_RotationOrder: 4
  1027. minCurve:
  1028. serializedVersion: 2
  1029. m_Curve:
  1030. - serializedVersion: 2
  1031. time: 0
  1032. value: 0
  1033. inSlope: 0
  1034. outSlope: 1
  1035. tangentMode: 0
  1036. - serializedVersion: 2
  1037. time: 1
  1038. value: 1
  1039. inSlope: 1
  1040. outSlope: 0
  1041. tangentMode: 0
  1042. m_PreInfinity: 2
  1043. m_PostInfinity: 2
  1044. m_RotationOrder: 4
  1045. startFrame:
  1046. serializedVersion: 2
  1047. minMaxState: 0
  1048. scalar: 0
  1049. minScalar: 0
  1050. maxCurve:
  1051. serializedVersion: 2
  1052. m_Curve:
  1053. - serializedVersion: 2
  1054. time: 0
  1055. value: 1
  1056. inSlope: 0
  1057. outSlope: 0
  1058. tangentMode: 0
  1059. - serializedVersion: 2
  1060. time: 1
  1061. value: 1
  1062. inSlope: 0
  1063. outSlope: 0
  1064. tangentMode: 0
  1065. m_PreInfinity: 2
  1066. m_PostInfinity: 2
  1067. m_RotationOrder: 4
  1068. minCurve:
  1069. serializedVersion: 2
  1070. m_Curve:
  1071. - serializedVersion: 2
  1072. time: 0
  1073. value: 0
  1074. inSlope: 0
  1075. outSlope: 0
  1076. tangentMode: 0
  1077. - serializedVersion: 2
  1078. time: 1
  1079. value: 0
  1080. inSlope: 0
  1081. outSlope: 0
  1082. tangentMode: 0
  1083. m_PreInfinity: 2
  1084. m_PostInfinity: 2
  1085. m_RotationOrder: 4
  1086. tilesX: 1
  1087. tilesY: 1
  1088. animationType: 0
  1089. rowIndex: 0
  1090. cycles: 1
  1091. uvChannelMask: -1
  1092. flipU: 0
  1093. flipV: 0
  1094. randomRow: 1
  1095. sprites:
  1096. - sprite: {fileID: 0}
  1097. VelocityModule:
  1098. enabled: 0
  1099. x:
  1100. serializedVersion: 2
  1101. minMaxState: 0
  1102. scalar: 1
  1103. minScalar: 0
  1104. maxCurve:
  1105. serializedVersion: 2
  1106. m_Curve:
  1107. - serializedVersion: 2
  1108. time: 0
  1109. value: 1
  1110. inSlope: 0
  1111. outSlope: 0
  1112. tangentMode: 0
  1113. - serializedVersion: 2
  1114. time: 1
  1115. value: 1
  1116. inSlope: 0
  1117. outSlope: 0
  1118. tangentMode: 0
  1119. m_PreInfinity: 2
  1120. m_PostInfinity: 2
  1121. m_RotationOrder: 4
  1122. minCurve:
  1123. serializedVersion: 2
  1124. m_Curve:
  1125. - serializedVersion: 2
  1126. time: 0
  1127. value: 0
  1128. inSlope: 0
  1129. outSlope: 0
  1130. tangentMode: 0
  1131. - serializedVersion: 2
  1132. time: 1
  1133. value: 0
  1134. inSlope: 0
  1135. outSlope: 0
  1136. tangentMode: 0
  1137. m_PreInfinity: 2
  1138. m_PostInfinity: 2
  1139. m_RotationOrder: 4
  1140. y:
  1141. serializedVersion: 2
  1142. minMaxState: 0
  1143. scalar: 0
  1144. minScalar: 0
  1145. maxCurve:
  1146. serializedVersion: 2
  1147. m_Curve:
  1148. - serializedVersion: 2
  1149. time: 0
  1150. value: 1
  1151. inSlope: 0
  1152. outSlope: 0
  1153. tangentMode: 0
  1154. - serializedVersion: 2
  1155. time: 1
  1156. value: 1
  1157. inSlope: 0
  1158. outSlope: 0
  1159. tangentMode: 0
  1160. m_PreInfinity: 2
  1161. m_PostInfinity: 2
  1162. m_RotationOrder: 4
  1163. minCurve:
  1164. serializedVersion: 2
  1165. m_Curve:
  1166. - serializedVersion: 2
  1167. time: 0
  1168. value: 0
  1169. inSlope: 0
  1170. outSlope: 0
  1171. tangentMode: 0
  1172. - serializedVersion: 2
  1173. time: 1
  1174. value: 0
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 0
  1178. m_PreInfinity: 2
  1179. m_PostInfinity: 2
  1180. m_RotationOrder: 4
  1181. z:
  1182. serializedVersion: 2
  1183. minMaxState: 0
  1184. scalar: 0
  1185. minScalar: 0
  1186. maxCurve:
  1187. serializedVersion: 2
  1188. m_Curve:
  1189. - serializedVersion: 2
  1190. time: 0
  1191. value: 1
  1192. inSlope: 0
  1193. outSlope: 0
  1194. tangentMode: 0
  1195. - serializedVersion: 2
  1196. time: 1
  1197. value: 1
  1198. inSlope: 0
  1199. outSlope: 0
  1200. tangentMode: 0
  1201. m_PreInfinity: 2
  1202. m_PostInfinity: 2
  1203. m_RotationOrder: 4
  1204. minCurve:
  1205. serializedVersion: 2
  1206. m_Curve:
  1207. - serializedVersion: 2
  1208. time: 0
  1209. value: 0
  1210. inSlope: 0
  1211. outSlope: 0
  1212. tangentMode: 0
  1213. - serializedVersion: 2
  1214. time: 1
  1215. value: 0
  1216. inSlope: 0
  1217. outSlope: 0
  1218. tangentMode: 0
  1219. m_PreInfinity: 2
  1220. m_PostInfinity: 2
  1221. m_RotationOrder: 4
  1222. inWorldSpace: 0
  1223. InheritVelocityModule:
  1224. enabled: 0
  1225. m_Mode: 0
  1226. m_Curve:
  1227. serializedVersion: 2
  1228. minMaxState: 0
  1229. scalar: 0
  1230. minScalar: 0
  1231. maxCurve:
  1232. serializedVersion: 2
  1233. m_Curve:
  1234. - serializedVersion: 2
  1235. time: 0
  1236. value: 1
  1237. inSlope: 0
  1238. outSlope: 0
  1239. tangentMode: 0
  1240. - serializedVersion: 2
  1241. time: 1
  1242. value: 1
  1243. inSlope: 0
  1244. outSlope: 0
  1245. tangentMode: 0
  1246. m_PreInfinity: 2
  1247. m_PostInfinity: 2
  1248. m_RotationOrder: 4
  1249. minCurve:
  1250. serializedVersion: 2
  1251. m_Curve:
  1252. - serializedVersion: 2
  1253. time: 0
  1254. value: 0
  1255. inSlope: 0
  1256. outSlope: 0
  1257. tangentMode: 0
  1258. - serializedVersion: 2
  1259. time: 1
  1260. value: 0
  1261. inSlope: 0
  1262. outSlope: 0
  1263. tangentMode: 0
  1264. m_PreInfinity: 2
  1265. m_PostInfinity: 2
  1266. m_RotationOrder: 4
  1267. ForceModule:
  1268. enabled: 0
  1269. x:
  1270. serializedVersion: 2
  1271. minMaxState: 0
  1272. scalar: 0
  1273. minScalar: 0
  1274. maxCurve:
  1275. serializedVersion: 2
  1276. m_Curve:
  1277. - serializedVersion: 2
  1278. time: 0
  1279. value: 1
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 0
  1283. - serializedVersion: 2
  1284. time: 1
  1285. value: 1
  1286. inSlope: 0
  1287. outSlope: 0
  1288. tangentMode: 0
  1289. m_PreInfinity: 2
  1290. m_PostInfinity: 2
  1291. m_RotationOrder: 4
  1292. minCurve:
  1293. serializedVersion: 2
  1294. m_Curve:
  1295. - serializedVersion: 2
  1296. time: 0
  1297. value: 0
  1298. inSlope: 0
  1299. outSlope: 0
  1300. tangentMode: 0
  1301. - serializedVersion: 2
  1302. time: 1
  1303. value: 0
  1304. inSlope: 0
  1305. outSlope: 0
  1306. tangentMode: 0
  1307. m_PreInfinity: 2
  1308. m_PostInfinity: 2
  1309. m_RotationOrder: 4
  1310. y:
  1311. serializedVersion: 2
  1312. minMaxState: 0
  1313. scalar: 0
  1314. minScalar: 0
  1315. maxCurve:
  1316. serializedVersion: 2
  1317. m_Curve:
  1318. - serializedVersion: 2
  1319. time: 0
  1320. value: 1
  1321. inSlope: 0
  1322. outSlope: 0
  1323. tangentMode: 0
  1324. - serializedVersion: 2
  1325. time: 1
  1326. value: 1
  1327. inSlope: 0
  1328. outSlope: 0
  1329. tangentMode: 0
  1330. m_PreInfinity: 2
  1331. m_PostInfinity: 2
  1332. m_RotationOrder: 4
  1333. minCurve:
  1334. serializedVersion: 2
  1335. m_Curve:
  1336. - serializedVersion: 2
  1337. time: 0
  1338. value: 0
  1339. inSlope: 0
  1340. outSlope: 0
  1341. tangentMode: 0
  1342. - serializedVersion: 2
  1343. time: 1
  1344. value: 0
  1345. inSlope: 0
  1346. outSlope: 0
  1347. tangentMode: 0
  1348. m_PreInfinity: 2
  1349. m_PostInfinity: 2
  1350. m_RotationOrder: 4
  1351. z:
  1352. serializedVersion: 2
  1353. minMaxState: 0
  1354. scalar: 0
  1355. minScalar: 0
  1356. maxCurve:
  1357. serializedVersion: 2
  1358. m_Curve:
  1359. - serializedVersion: 2
  1360. time: 0
  1361. value: 1
  1362. inSlope: 0
  1363. outSlope: 0
  1364. tangentMode: 0
  1365. - serializedVersion: 2
  1366. time: 1
  1367. value: 1
  1368. inSlope: 0
  1369. outSlope: 0
  1370. tangentMode: 0
  1371. m_PreInfinity: 2
  1372. m_PostInfinity: 2
  1373. m_RotationOrder: 4
  1374. minCurve:
  1375. serializedVersion: 2
  1376. m_Curve:
  1377. - serializedVersion: 2
  1378. time: 0
  1379. value: 0
  1380. inSlope: 0
  1381. outSlope: 0
  1382. tangentMode: 0
  1383. - serializedVersion: 2
  1384. time: 1
  1385. value: 0
  1386. inSlope: 0
  1387. outSlope: 0
  1388. tangentMode: 0
  1389. m_PreInfinity: 2
  1390. m_PostInfinity: 2
  1391. m_RotationOrder: 4
  1392. inWorldSpace: 0
  1393. randomizePerFrame: 0
  1394. ExternalForcesModule:
  1395. enabled: 0
  1396. multiplier: 1
  1397. ClampVelocityModule:
  1398. enabled: 0
  1399. x:
  1400. serializedVersion: 2
  1401. minMaxState: 0
  1402. scalar: 1
  1403. minScalar: 1
  1404. maxCurve:
  1405. serializedVersion: 2
  1406. m_Curve:
  1407. - serializedVersion: 2
  1408. time: 0
  1409. value: 1
  1410. inSlope: 0
  1411. outSlope: 0
  1412. tangentMode: 0
  1413. - serializedVersion: 2
  1414. time: 1
  1415. value: 1
  1416. inSlope: 0
  1417. outSlope: 0
  1418. tangentMode: 0
  1419. m_PreInfinity: 2
  1420. m_PostInfinity: 2
  1421. m_RotationOrder: 4
  1422. minCurve:
  1423. serializedVersion: 2
  1424. m_Curve:
  1425. - serializedVersion: 2
  1426. time: 0
  1427. value: 0
  1428. inSlope: 0
  1429. outSlope: 0
  1430. tangentMode: 0
  1431. - serializedVersion: 2
  1432. time: 1
  1433. value: 0
  1434. inSlope: 0
  1435. outSlope: 0
  1436. tangentMode: 0
  1437. m_PreInfinity: 2
  1438. m_PostInfinity: 2
  1439. m_RotationOrder: 4
  1440. y:
  1441. serializedVersion: 2
  1442. minMaxState: 0
  1443. scalar: 1
  1444. minScalar: 1
  1445. maxCurve:
  1446. serializedVersion: 2
  1447. m_Curve:
  1448. - serializedVersion: 2
  1449. time: 0
  1450. value: 1
  1451. inSlope: 0
  1452. outSlope: 0
  1453. tangentMode: 0
  1454. - serializedVersion: 2
  1455. time: 1
  1456. value: 1
  1457. inSlope: 0
  1458. outSlope: 0
  1459. tangentMode: 0
  1460. m_PreInfinity: 2
  1461. m_PostInfinity: 2
  1462. m_RotationOrder: 4
  1463. minCurve:
  1464. serializedVersion: 2
  1465. m_Curve:
  1466. - serializedVersion: 2
  1467. time: 0
  1468. value: 0
  1469. inSlope: 0
  1470. outSlope: 0
  1471. tangentMode: 0
  1472. - serializedVersion: 2
  1473. time: 1
  1474. value: 0
  1475. inSlope: 0
  1476. outSlope: 0
  1477. tangentMode: 0
  1478. m_PreInfinity: 2
  1479. m_PostInfinity: 2
  1480. m_RotationOrder: 4
  1481. z:
  1482. serializedVersion: 2
  1483. minMaxState: 0
  1484. scalar: 1
  1485. minScalar: 1
  1486. maxCurve:
  1487. serializedVersion: 2
  1488. m_Curve:
  1489. - serializedVersion: 2
  1490. time: 0
  1491. value: 1
  1492. inSlope: 0
  1493. outSlope: 0
  1494. tangentMode: 0
  1495. - serializedVersion: 2
  1496. time: 1
  1497. value: 1
  1498. inSlope: 0
  1499. outSlope: 0
  1500. tangentMode: 0
  1501. m_PreInfinity: 2
  1502. m_PostInfinity: 2
  1503. m_RotationOrder: 4
  1504. minCurve:
  1505. serializedVersion: 2
  1506. m_Curve:
  1507. - serializedVersion: 2
  1508. time: 0
  1509. value: 0
  1510. inSlope: 0
  1511. outSlope: 0
  1512. tangentMode: 0
  1513. - serializedVersion: 2
  1514. time: 1
  1515. value: 0
  1516. inSlope: 0
  1517. outSlope: 0
  1518. tangentMode: 0
  1519. m_PreInfinity: 2
  1520. m_PostInfinity: 2
  1521. m_RotationOrder: 4
  1522. magnitude:
  1523. serializedVersion: 2
  1524. minMaxState: 0
  1525. scalar: 1
  1526. minScalar: 1
  1527. maxCurve:
  1528. serializedVersion: 2
  1529. m_Curve:
  1530. - serializedVersion: 2
  1531. time: 0
  1532. value: 1
  1533. inSlope: 0
  1534. outSlope: 0
  1535. tangentMode: 0
  1536. - serializedVersion: 2
  1537. time: 1
  1538. value: 1
  1539. inSlope: 0
  1540. outSlope: 0
  1541. tangentMode: 0
  1542. m_PreInfinity: 2
  1543. m_PostInfinity: 2
  1544. m_RotationOrder: 4
  1545. minCurve:
  1546. serializedVersion: 2
  1547. m_Curve:
  1548. - serializedVersion: 2
  1549. time: 0
  1550. value: 0
  1551. inSlope: 0
  1552. outSlope: 0
  1553. tangentMode: 0
  1554. - serializedVersion: 2
  1555. time: 1
  1556. value: 0
  1557. inSlope: 0
  1558. outSlope: 0
  1559. tangentMode: 0
  1560. m_PreInfinity: 2
  1561. m_PostInfinity: 2
  1562. m_RotationOrder: 4
  1563. separateAxis: 0
  1564. inWorldSpace: 0
  1565. dampen: 1
  1566. NoiseModule:
  1567. enabled: 1
  1568. strength:
  1569. serializedVersion: 2
  1570. minMaxState: 0
  1571. scalar: 0.4
  1572. minScalar: 1
  1573. maxCurve:
  1574. serializedVersion: 2
  1575. m_Curve:
  1576. - serializedVersion: 2
  1577. time: 0
  1578. value: 1
  1579. inSlope: 0
  1580. outSlope: 0
  1581. tangentMode: 0
  1582. - serializedVersion: 2
  1583. time: 1
  1584. value: 1
  1585. inSlope: 0
  1586. outSlope: 0
  1587. tangentMode: 0
  1588. m_PreInfinity: 2
  1589. m_PostInfinity: 2
  1590. m_RotationOrder: 4
  1591. minCurve:
  1592. serializedVersion: 2
  1593. m_Curve:
  1594. - serializedVersion: 2
  1595. time: 0
  1596. value: 0
  1597. inSlope: 0
  1598. outSlope: 0
  1599. tangentMode: 0
  1600. - serializedVersion: 2
  1601. time: 1
  1602. value: 0
  1603. inSlope: 0
  1604. outSlope: 0
  1605. tangentMode: 0
  1606. m_PreInfinity: 2
  1607. m_PostInfinity: 2
  1608. m_RotationOrder: 4
  1609. strengthY:
  1610. serializedVersion: 2
  1611. minMaxState: 0
  1612. scalar: 0
  1613. minScalar: 1
  1614. maxCurve:
  1615. serializedVersion: 2
  1616. m_Curve:
  1617. - serializedVersion: 2
  1618. time: 0
  1619. value: 1
  1620. inSlope: 0
  1621. outSlope: 0
  1622. tangentMode: 0
  1623. - serializedVersion: 2
  1624. time: 1
  1625. value: 1
  1626. inSlope: 0
  1627. outSlope: 0
  1628. tangentMode: 0
  1629. m_PreInfinity: 2
  1630. m_PostInfinity: 2
  1631. m_RotationOrder: 4
  1632. minCurve:
  1633. serializedVersion: 2
  1634. m_Curve:
  1635. - serializedVersion: 2
  1636. time: 0
  1637. value: 0
  1638. inSlope: 0
  1639. outSlope: 0
  1640. tangentMode: 0
  1641. - serializedVersion: 2
  1642. time: 1
  1643. value: 0
  1644. inSlope: 0
  1645. outSlope: 0
  1646. tangentMode: 0
  1647. m_PreInfinity: 2
  1648. m_PostInfinity: 2
  1649. m_RotationOrder: 4
  1650. strengthZ:
  1651. serializedVersion: 2
  1652. minMaxState: 0
  1653. scalar: 0.4
  1654. minScalar: 1
  1655. maxCurve:
  1656. serializedVersion: 2
  1657. m_Curve:
  1658. - serializedVersion: 2
  1659. time: 0
  1660. value: 1
  1661. inSlope: 0
  1662. outSlope: 0
  1663. tangentMode: 0
  1664. - serializedVersion: 2
  1665. time: 1
  1666. value: 1
  1667. inSlope: 0
  1668. outSlope: 0
  1669. tangentMode: 0
  1670. m_PreInfinity: 2
  1671. m_PostInfinity: 2
  1672. m_RotationOrder: 4
  1673. minCurve:
  1674. serializedVersion: 2
  1675. m_Curve:
  1676. - serializedVersion: 2
  1677. time: 0
  1678. value: 0
  1679. inSlope: 0
  1680. outSlope: 0
  1681. tangentMode: 0
  1682. - serializedVersion: 2
  1683. time: 1
  1684. value: 0
  1685. inSlope: 0
  1686. outSlope: 0
  1687. tangentMode: 0
  1688. m_PreInfinity: 2
  1689. m_PostInfinity: 2
  1690. m_RotationOrder: 4
  1691. separateAxes: 1
  1692. frequency: 0.3
  1693. damping: 1
  1694. octaves: 1
  1695. octaveMultiplier: 0.5
  1696. octaveScale: 2
  1697. quality: 2
  1698. scrollSpeed:
  1699. serializedVersion: 2
  1700. minMaxState: 0
  1701. scalar: 1
  1702. minScalar: 0
  1703. maxCurve:
  1704. serializedVersion: 2
  1705. m_Curve:
  1706. - serializedVersion: 2
  1707. time: 0
  1708. value: 1
  1709. inSlope: 0
  1710. outSlope: 0
  1711. tangentMode: 0
  1712. - serializedVersion: 2
  1713. time: 1
  1714. value: 1
  1715. inSlope: 0
  1716. outSlope: 0
  1717. tangentMode: 0
  1718. m_PreInfinity: 2
  1719. m_PostInfinity: 2
  1720. m_RotationOrder: 4
  1721. minCurve:
  1722. serializedVersion: 2
  1723. m_Curve:
  1724. - serializedVersion: 2
  1725. time: 0
  1726. value: 0
  1727. inSlope: 0
  1728. outSlope: 0
  1729. tangentMode: 0
  1730. - serializedVersion: 2
  1731. time: 1
  1732. value: 0
  1733. inSlope: 0
  1734. outSlope: 0
  1735. tangentMode: 0
  1736. m_PreInfinity: 2
  1737. m_PostInfinity: 2
  1738. m_RotationOrder: 4
  1739. remap:
  1740. serializedVersion: 2
  1741. minMaxState: 1
  1742. scalar: 1
  1743. minScalar: 1
  1744. maxCurve:
  1745. serializedVersion: 2
  1746. m_Curve:
  1747. - serializedVersion: 2
  1748. time: 0
  1749. value: -1
  1750. inSlope: 0
  1751. outSlope: 2
  1752. tangentMode: 0
  1753. - serializedVersion: 2
  1754. time: 1
  1755. value: 1
  1756. inSlope: 2
  1757. outSlope: 0
  1758. tangentMode: 0
  1759. m_PreInfinity: 2
  1760. m_PostInfinity: 2
  1761. m_RotationOrder: 4
  1762. minCurve:
  1763. serializedVersion: 2
  1764. m_Curve:
  1765. - serializedVersion: 2
  1766. time: 0
  1767. value: 0
  1768. inSlope: 0
  1769. outSlope: 0
  1770. tangentMode: 0
  1771. - serializedVersion: 2
  1772. time: 1
  1773. value: 0
  1774. inSlope: 0
  1775. outSlope: 0
  1776. tangentMode: 0
  1777. m_PreInfinity: 2
  1778. m_PostInfinity: 2
  1779. m_RotationOrder: 4
  1780. remapY:
  1781. serializedVersion: 2
  1782. minMaxState: 1
  1783. scalar: 1
  1784. minScalar: 1
  1785. maxCurve:
  1786. serializedVersion: 2
  1787. m_Curve:
  1788. - serializedVersion: 2
  1789. time: 0
  1790. value: -1
  1791. inSlope: 0
  1792. outSlope: 2
  1793. tangentMode: 0
  1794. - serializedVersion: 2
  1795. time: 1
  1796. value: 1
  1797. inSlope: 2
  1798. outSlope: 0
  1799. tangentMode: 0
  1800. m_PreInfinity: 2
  1801. m_PostInfinity: 2
  1802. m_RotationOrder: 4
  1803. minCurve:
  1804. serializedVersion: 2
  1805. m_Curve:
  1806. - serializedVersion: 2
  1807. time: 0
  1808. value: 0
  1809. inSlope: 0
  1810. outSlope: 0
  1811. tangentMode: 0
  1812. - serializedVersion: 2
  1813. time: 1
  1814. value: 0
  1815. inSlope: 0
  1816. outSlope: 0
  1817. tangentMode: 0
  1818. m_PreInfinity: 2
  1819. m_PostInfinity: 2
  1820. m_RotationOrder: 4
  1821. remapZ:
  1822. serializedVersion: 2
  1823. minMaxState: 1
  1824. scalar: 1
  1825. minScalar: 1
  1826. maxCurve:
  1827. serializedVersion: 2
  1828. m_Curve:
  1829. - serializedVersion: 2
  1830. time: 0
  1831. value: -1
  1832. inSlope: 0
  1833. outSlope: 2
  1834. tangentMode: 0
  1835. - serializedVersion: 2
  1836. time: 1
  1837. value: 1
  1838. inSlope: 2
  1839. outSlope: 0
  1840. tangentMode: 0
  1841. m_PreInfinity: 2
  1842. m_PostInfinity: 2
  1843. m_RotationOrder: 4
  1844. minCurve:
  1845. serializedVersion: 2
  1846. m_Curve:
  1847. - serializedVersion: 2
  1848. time: 0
  1849. value: 0
  1850. inSlope: 0
  1851. outSlope: 0
  1852. tangentMode: 0
  1853. - serializedVersion: 2
  1854. time: 1
  1855. value: 0
  1856. inSlope: 0
  1857. outSlope: 0
  1858. tangentMode: 0
  1859. m_PreInfinity: 2
  1860. m_PostInfinity: 2
  1861. m_RotationOrder: 4
  1862. remapEnabled: 0
  1863. positionAmount:
  1864. serializedVersion: 2
  1865. minMaxState: 0
  1866. scalar: 1
  1867. minScalar: 1
  1868. maxCurve:
  1869. serializedVersion: 2
  1870. m_Curve:
  1871. - serializedVersion: 2
  1872. time: 0
  1873. value: 1
  1874. inSlope: 0
  1875. outSlope: 0
  1876. tangentMode: 0
  1877. - serializedVersion: 2
  1878. time: 1
  1879. value: 1
  1880. inSlope: 0
  1881. outSlope: 0
  1882. tangentMode: 0
  1883. m_PreInfinity: 2
  1884. m_PostInfinity: 2
  1885. m_RotationOrder: 4
  1886. minCurve:
  1887. serializedVersion: 2
  1888. m_Curve:
  1889. - serializedVersion: 2
  1890. time: 0
  1891. value: 1
  1892. inSlope: 0
  1893. outSlope: 0
  1894. tangentMode: 0
  1895. - serializedVersion: 2
  1896. time: 1
  1897. value: 1
  1898. inSlope: 0
  1899. outSlope: 0
  1900. tangentMode: 0
  1901. m_PreInfinity: 2
  1902. m_PostInfinity: 2
  1903. m_RotationOrder: 4
  1904. rotationAmount:
  1905. serializedVersion: 2
  1906. minMaxState: 0
  1907. scalar: 0
  1908. minScalar: 0
  1909. maxCurve:
  1910. serializedVersion: 2
  1911. m_Curve:
  1912. - serializedVersion: 2
  1913. time: 0
  1914. value: 0
  1915. inSlope: 0
  1916. outSlope: 0
  1917. tangentMode: 0
  1918. - serializedVersion: 2
  1919. time: 1
  1920. value: 0
  1921. inSlope: 0
  1922. outSlope: 0
  1923. tangentMode: 0
  1924. m_PreInfinity: 2
  1925. m_PostInfinity: 2
  1926. m_RotationOrder: 4
  1927. minCurve:
  1928. serializedVersion: 2
  1929. m_Curve:
  1930. - serializedVersion: 2
  1931. time: 0
  1932. value: 0
  1933. inSlope: 0
  1934. outSlope: 0
  1935. tangentMode: 0
  1936. - serializedVersion: 2
  1937. time: 1
  1938. value: 0
  1939. inSlope: 0
  1940. outSlope: 0
  1941. tangentMode: 0
  1942. m_PreInfinity: 2
  1943. m_PostInfinity: 2
  1944. m_RotationOrder: 4
  1945. sizeAmount:
  1946. serializedVersion: 2
  1947. minMaxState: 0
  1948. scalar: 0
  1949. minScalar: 0
  1950. maxCurve:
  1951. serializedVersion: 2
  1952. m_Curve:
  1953. - serializedVersion: 2
  1954. time: 0
  1955. value: 0
  1956. inSlope: 0
  1957. outSlope: 0
  1958. tangentMode: 0
  1959. - serializedVersion: 2
  1960. time: 1
  1961. value: 0
  1962. inSlope: 0
  1963. outSlope: 0
  1964. tangentMode: 0
  1965. m_PreInfinity: 2
  1966. m_PostInfinity: 2
  1967. m_RotationOrder: 4
  1968. minCurve:
  1969. serializedVersion: 2
  1970. m_Curve:
  1971. - serializedVersion: 2
  1972. time: 0
  1973. value: 0
  1974. inSlope: 0
  1975. outSlope: 0
  1976. tangentMode: 0
  1977. - serializedVersion: 2
  1978. time: 1
  1979. value: 0
  1980. inSlope: 0
  1981. outSlope: 0
  1982. tangentMode: 0
  1983. m_PreInfinity: 2
  1984. m_PostInfinity: 2
  1985. m_RotationOrder: 4
  1986. SizeBySpeedModule:
  1987. enabled: 0
  1988. curve:
  1989. serializedVersion: 2
  1990. minMaxState: 1
  1991. scalar: 1
  1992. minScalar: 1
  1993. maxCurve:
  1994. serializedVersion: 2
  1995. m_Curve:
  1996. - serializedVersion: 2
  1997. time: 0
  1998. value: 1
  1999. inSlope: 0
  2000. outSlope: 0
  2001. tangentMode: 0
  2002. - serializedVersion: 2
  2003. time: 1
  2004. value: 1
  2005. inSlope: 0
  2006. outSlope: 0
  2007. tangentMode: 0
  2008. m_PreInfinity: 2
  2009. m_PostInfinity: 2
  2010. m_RotationOrder: 4
  2011. minCurve:
  2012. serializedVersion: 2
  2013. m_Curve:
  2014. - serializedVersion: 2
  2015. time: 0
  2016. value: 0
  2017. inSlope: 0
  2018. outSlope: 0
  2019. tangentMode: 0
  2020. - serializedVersion: 2
  2021. time: 1
  2022. value: 0
  2023. inSlope: 0
  2024. outSlope: 0
  2025. tangentMode: 0
  2026. m_PreInfinity: 2
  2027. m_PostInfinity: 2
  2028. m_RotationOrder: 4
  2029. y:
  2030. serializedVersion: 2
  2031. minMaxState: 1
  2032. scalar: 1
  2033. minScalar: 1
  2034. maxCurve:
  2035. serializedVersion: 2
  2036. m_Curve:
  2037. - serializedVersion: 2
  2038. time: 0
  2039. value: 1
  2040. inSlope: 0
  2041. outSlope: 0
  2042. tangentMode: 0
  2043. - serializedVersion: 2
  2044. time: 1
  2045. value: 1
  2046. inSlope: 0
  2047. outSlope: 0
  2048. tangentMode: 0
  2049. m_PreInfinity: 2
  2050. m_PostInfinity: 2
  2051. m_RotationOrder: 4
  2052. minCurve:
  2053. serializedVersion: 2
  2054. m_Curve:
  2055. - serializedVersion: 2
  2056. time: 0
  2057. value: 0
  2058. inSlope: 0
  2059. outSlope: 0
  2060. tangentMode: 0
  2061. - serializedVersion: 2
  2062. time: 1
  2063. value: 0
  2064. inSlope: 0
  2065. outSlope: 0
  2066. tangentMode: 0
  2067. m_PreInfinity: 2
  2068. m_PostInfinity: 2
  2069. m_RotationOrder: 4
  2070. z:
  2071. serializedVersion: 2
  2072. minMaxState: 1
  2073. scalar: 1
  2074. minScalar: 1
  2075. maxCurve:
  2076. serializedVersion: 2
  2077. m_Curve:
  2078. - serializedVersion: 2
  2079. time: 0
  2080. value: 1
  2081. inSlope: 0
  2082. outSlope: 0
  2083. tangentMode: 0
  2084. - serializedVersion: 2
  2085. time: 1
  2086. value: 1
  2087. inSlope: 0
  2088. outSlope: 0
  2089. tangentMode: 0
  2090. m_PreInfinity: 2
  2091. m_PostInfinity: 2
  2092. m_RotationOrder: 4
  2093. minCurve:
  2094. serializedVersion: 2
  2095. m_Curve:
  2096. - serializedVersion: 2
  2097. time: 0
  2098. value: 0
  2099. inSlope: 0
  2100. outSlope: 0
  2101. tangentMode: 0
  2102. - serializedVersion: 2
  2103. time: 1
  2104. value: 0
  2105. inSlope: 0
  2106. outSlope: 0
  2107. tangentMode: 0
  2108. m_PreInfinity: 2
  2109. m_PostInfinity: 2
  2110. m_RotationOrder: 4
  2111. range: {x: 0, y: 1}
  2112. separateAxes: 0
  2113. RotationBySpeedModule:
  2114. enabled: 0
  2115. x:
  2116. serializedVersion: 2
  2117. minMaxState: 0
  2118. scalar: 0
  2119. minScalar: 0
  2120. maxCurve:
  2121. serializedVersion: 2
  2122. m_Curve:
  2123. - serializedVersion: 2
  2124. time: 0
  2125. value: 1
  2126. inSlope: 0
  2127. outSlope: 0
  2128. tangentMode: 0
  2129. - serializedVersion: 2
  2130. time: 1
  2131. value: 1
  2132. inSlope: 0
  2133. outSlope: 0
  2134. tangentMode: 0
  2135. m_PreInfinity: 2
  2136. m_PostInfinity: 2
  2137. m_RotationOrder: 4
  2138. minCurve:
  2139. serializedVersion: 2
  2140. m_Curve:
  2141. - serializedVersion: 2
  2142. time: 0
  2143. value: 0
  2144. inSlope: 0
  2145. outSlope: 0
  2146. tangentMode: 0
  2147. - serializedVersion: 2
  2148. time: 1
  2149. value: 0
  2150. inSlope: 0
  2151. outSlope: 0
  2152. tangentMode: 0
  2153. m_PreInfinity: 2
  2154. m_PostInfinity: 2
  2155. m_RotationOrder: 4
  2156. y:
  2157. serializedVersion: 2
  2158. minMaxState: 0
  2159. scalar: 0
  2160. minScalar: 0
  2161. maxCurve:
  2162. serializedVersion: 2
  2163. m_Curve:
  2164. - serializedVersion: 2
  2165. time: 0
  2166. value: 1
  2167. inSlope: 0
  2168. outSlope: 0
  2169. tangentMode: 0
  2170. - serializedVersion: 2
  2171. time: 1
  2172. value: 1
  2173. inSlope: 0
  2174. outSlope: 0
  2175. tangentMode: 0
  2176. m_PreInfinity: 2
  2177. m_PostInfinity: 2
  2178. m_RotationOrder: 4
  2179. minCurve:
  2180. serializedVersion: 2
  2181. m_Curve:
  2182. - serializedVersion: 2
  2183. time: 0
  2184. value: 0
  2185. inSlope: 0
  2186. outSlope: 0
  2187. tangentMode: 0
  2188. - serializedVersion: 2
  2189. time: 1
  2190. value: 0
  2191. inSlope: 0
  2192. outSlope: 0
  2193. tangentMode: 0
  2194. m_PreInfinity: 2
  2195. m_PostInfinity: 2
  2196. m_RotationOrder: 4
  2197. curve:
  2198. serializedVersion: 2
  2199. minMaxState: 0
  2200. scalar: 0.7853982
  2201. minScalar: 0.7853982
  2202. maxCurve:
  2203. serializedVersion: 2
  2204. m_Curve:
  2205. - serializedVersion: 2
  2206. time: 0
  2207. value: 1
  2208. inSlope: 0
  2209. outSlope: 0
  2210. tangentMode: 0
  2211. - serializedVersion: 2
  2212. time: 1
  2213. value: 1
  2214. inSlope: 0
  2215. outSlope: 0
  2216. tangentMode: 0
  2217. m_PreInfinity: 2
  2218. m_PostInfinity: 2
  2219. m_RotationOrder: 4
  2220. minCurve:
  2221. serializedVersion: 2
  2222. m_Curve:
  2223. - serializedVersion: 2
  2224. time: 0
  2225. value: 0
  2226. inSlope: 0
  2227. outSlope: 0
  2228. tangentMode: 0
  2229. - serializedVersion: 2
  2230. time: 1
  2231. value: 0
  2232. inSlope: 0
  2233. outSlope: 0
  2234. tangentMode: 0
  2235. m_PreInfinity: 2
  2236. m_PostInfinity: 2
  2237. m_RotationOrder: 4
  2238. separateAxes: 0
  2239. range: {x: 0, y: 1}
  2240. ColorBySpeedModule:
  2241. enabled: 0
  2242. gradient:
  2243. serializedVersion: 2
  2244. minMaxState: 1
  2245. minColor: {r: 1, g: 1, b: 1, a: 1}
  2246. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2247. maxGradient:
  2248. serializedVersion: 2
  2249. key0: {r: 1, g: 1, b: 1, a: 1}
  2250. key1: {r: 1, g: 1, b: 1, a: 1}
  2251. key2: {r: 0, g: 0, b: 0, a: 0}
  2252. key3: {r: 0, g: 0, b: 0, a: 0}
  2253. key4: {r: 0, g: 0, b: 0, a: 0}
  2254. key5: {r: 0, g: 0, b: 0, a: 0}
  2255. key6: {r: 0, g: 0, b: 0, a: 0}
  2256. key7: {r: 0, g: 0, b: 0, a: 0}
  2257. ctime0: 0
  2258. ctime1: 65535
  2259. ctime2: 0
  2260. ctime3: 0
  2261. ctime4: 0
  2262. ctime5: 0
  2263. ctime6: 0
  2264. ctime7: 0
  2265. atime0: 0
  2266. atime1: 65535
  2267. atime2: 0
  2268. atime3: 0
  2269. atime4: 0
  2270. atime5: 0
  2271. atime6: 0
  2272. atime7: 0
  2273. m_Mode: 0
  2274. m_NumColorKeys: 2
  2275. m_NumAlphaKeys: 2
  2276. minGradient:
  2277. serializedVersion: 2
  2278. key0: {r: 1, g: 1, b: 1, a: 1}
  2279. key1: {r: 1, g: 1, b: 1, a: 1}
  2280. key2: {r: 0, g: 0, b: 0, a: 0}
  2281. key3: {r: 0, g: 0, b: 0, a: 0}
  2282. key4: {r: 0, g: 0, b: 0, a: 0}
  2283. key5: {r: 0, g: 0, b: 0, a: 0}
  2284. key6: {r: 0, g: 0, b: 0, a: 0}
  2285. key7: {r: 0, g: 0, b: 0, a: 0}
  2286. ctime0: 0
  2287. ctime1: 65535
  2288. ctime2: 0
  2289. ctime3: 0
  2290. ctime4: 0
  2291. ctime5: 0
  2292. ctime6: 0
  2293. ctime7: 0
  2294. atime0: 0
  2295. atime1: 65535
  2296. atime2: 0
  2297. atime3: 0
  2298. atime4: 0
  2299. atime5: 0
  2300. atime6: 0
  2301. atime7: 0
  2302. m_Mode: 0
  2303. m_NumColorKeys: 2
  2304. m_NumAlphaKeys: 2
  2305. range: {x: 0, y: 1}
  2306. CollisionModule:
  2307. enabled: 0
  2308. serializedVersion: 3
  2309. type: 0
  2310. collisionMode: 0
  2311. colliderForce: 0
  2312. multiplyColliderForceByParticleSize: 0
  2313. multiplyColliderForceByParticleSpeed: 0
  2314. multiplyColliderForceByCollisionAngle: 1
  2315. plane0: {fileID: 0}
  2316. plane1: {fileID: 0}
  2317. plane2: {fileID: 0}
  2318. plane3: {fileID: 0}
  2319. plane4: {fileID: 0}
  2320. plane5: {fileID: 0}
  2321. m_Dampen:
  2322. serializedVersion: 2
  2323. minMaxState: 0
  2324. scalar: 0
  2325. minScalar: 0
  2326. maxCurve:
  2327. serializedVersion: 2
  2328. m_Curve:
  2329. - serializedVersion: 2
  2330. time: 0
  2331. value: 1
  2332. inSlope: 0
  2333. outSlope: 0
  2334. tangentMode: 0
  2335. - serializedVersion: 2
  2336. time: 1
  2337. value: 1
  2338. inSlope: 0
  2339. outSlope: 0
  2340. tangentMode: 0
  2341. m_PreInfinity: 2
  2342. m_PostInfinity: 2
  2343. m_RotationOrder: 4
  2344. minCurve:
  2345. serializedVersion: 2
  2346. m_Curve:
  2347. - serializedVersion: 2
  2348. time: 0
  2349. value: 0
  2350. inSlope: 0
  2351. outSlope: 0
  2352. tangentMode: 0
  2353. - serializedVersion: 2
  2354. time: 1
  2355. value: 0
  2356. inSlope: 0
  2357. outSlope: 0
  2358. tangentMode: 0
  2359. m_PreInfinity: 2
  2360. m_PostInfinity: 2
  2361. m_RotationOrder: 4
  2362. m_Bounce:
  2363. serializedVersion: 2
  2364. minMaxState: 0
  2365. scalar: 1
  2366. minScalar: 1
  2367. maxCurve:
  2368. serializedVersion: 2
  2369. m_Curve:
  2370. - serializedVersion: 2
  2371. time: 0
  2372. value: 1
  2373. inSlope: 0
  2374. outSlope: 0
  2375. tangentMode: 0
  2376. - serializedVersion: 2
  2377. time: 1
  2378. value: 1
  2379. inSlope: 0
  2380. outSlope: 0
  2381. tangentMode: 0
  2382. m_PreInfinity: 2
  2383. m_PostInfinity: 2
  2384. m_RotationOrder: 4
  2385. minCurve:
  2386. serializedVersion: 2
  2387. m_Curve:
  2388. - serializedVersion: 2
  2389. time: 0
  2390. value: 0
  2391. inSlope: 0
  2392. outSlope: 0
  2393. tangentMode: 0
  2394. - serializedVersion: 2
  2395. time: 1
  2396. value: 0
  2397. inSlope: 0
  2398. outSlope: 0
  2399. tangentMode: 0
  2400. m_PreInfinity: 2
  2401. m_PostInfinity: 2
  2402. m_RotationOrder: 4
  2403. m_EnergyLossOnCollision:
  2404. serializedVersion: 2
  2405. minMaxState: 0
  2406. scalar: 0
  2407. minScalar: 0
  2408. maxCurve:
  2409. serializedVersion: 2
  2410. m_Curve:
  2411. - serializedVersion: 2
  2412. time: 0
  2413. value: 1
  2414. inSlope: 0
  2415. outSlope: 0
  2416. tangentMode: 0
  2417. - serializedVersion: 2
  2418. time: 1
  2419. value: 1
  2420. inSlope: 0
  2421. outSlope: 0
  2422. tangentMode: 0
  2423. m_PreInfinity: 2
  2424. m_PostInfinity: 2
  2425. m_RotationOrder: 4
  2426. minCurve:
  2427. serializedVersion: 2
  2428. m_Curve:
  2429. - serializedVersion: 2
  2430. time: 0
  2431. value: 0
  2432. inSlope: 0
  2433. outSlope: 0
  2434. tangentMode: 0
  2435. - serializedVersion: 2
  2436. time: 1
  2437. value: 0
  2438. inSlope: 0
  2439. outSlope: 0
  2440. tangentMode: 0
  2441. m_PreInfinity: 2
  2442. m_PostInfinity: 2
  2443. m_RotationOrder: 4
  2444. minKillSpeed: 0
  2445. maxKillSpeed: 10000
  2446. radiusScale: 1
  2447. collidesWith:
  2448. serializedVersion: 2
  2449. m_Bits: 4294967295
  2450. maxCollisionShapes: 256
  2451. quality: 0
  2452. voxelSize: 0.5
  2453. collisionMessages: 0
  2454. collidesWithDynamic: 1
  2455. interiorCollisions: 1
  2456. TriggerModule:
  2457. enabled: 0
  2458. collisionShape0: {fileID: 0}
  2459. collisionShape1: {fileID: 0}
  2460. collisionShape2: {fileID: 0}
  2461. collisionShape3: {fileID: 0}
  2462. collisionShape4: {fileID: 0}
  2463. collisionShape5: {fileID: 0}
  2464. inside: 1
  2465. outside: 0
  2466. enter: 0
  2467. exit: 0
  2468. radiusScale: 1
  2469. SubModule:
  2470. serializedVersion: 2
  2471. enabled: 0
  2472. subEmitters:
  2473. - emitter: {fileID: 0}
  2474. type: 0
  2475. properties: 0
  2476. LightsModule:
  2477. enabled: 0
  2478. ratio: 0
  2479. light: {fileID: 0}
  2480. randomDistribution: 1
  2481. color: 1
  2482. range: 1
  2483. intensity: 1
  2484. rangeCurve:
  2485. serializedVersion: 2
  2486. minMaxState: 0
  2487. scalar: 1
  2488. minScalar: 1
  2489. maxCurve:
  2490. serializedVersion: 2
  2491. m_Curve:
  2492. - serializedVersion: 2
  2493. time: 0
  2494. value: 1
  2495. inSlope: 0
  2496. outSlope: 0
  2497. tangentMode: 0
  2498. - serializedVersion: 2
  2499. time: 1
  2500. value: 1
  2501. inSlope: 0
  2502. outSlope: 0
  2503. tangentMode: 0
  2504. m_PreInfinity: 2
  2505. m_PostInfinity: 2
  2506. m_RotationOrder: 4
  2507. minCurve:
  2508. serializedVersion: 2
  2509. m_Curve:
  2510. - serializedVersion: 2
  2511. time: 0
  2512. value: 0
  2513. inSlope: 0
  2514. outSlope: 0
  2515. tangentMode: 0
  2516. - serializedVersion: 2
  2517. time: 1
  2518. value: 0
  2519. inSlope: 0
  2520. outSlope: 0
  2521. tangentMode: 0
  2522. m_PreInfinity: 2
  2523. m_PostInfinity: 2
  2524. m_RotationOrder: 4
  2525. intensityCurve:
  2526. serializedVersion: 2
  2527. minMaxState: 0
  2528. scalar: 1
  2529. minScalar: 1
  2530. maxCurve:
  2531. serializedVersion: 2
  2532. m_Curve:
  2533. - serializedVersion: 2
  2534. time: 0
  2535. value: 1
  2536. inSlope: 0
  2537. outSlope: 0
  2538. tangentMode: 0
  2539. - serializedVersion: 2
  2540. time: 1
  2541. value: 1
  2542. inSlope: 0
  2543. outSlope: 0
  2544. tangentMode: 0
  2545. m_PreInfinity: 2
  2546. m_PostInfinity: 2
  2547. m_RotationOrder: 4
  2548. minCurve:
  2549. serializedVersion: 2
  2550. m_Curve:
  2551. - serializedVersion: 2
  2552. time: 0
  2553. value: 0
  2554. inSlope: 0
  2555. outSlope: 0
  2556. tangentMode: 0
  2557. - serializedVersion: 2
  2558. time: 1
  2559. value: 0
  2560. inSlope: 0
  2561. outSlope: 0
  2562. tangentMode: 0
  2563. m_PreInfinity: 2
  2564. m_PostInfinity: 2
  2565. m_RotationOrder: 4
  2566. maxLights: 20
  2567. TrailModule:
  2568. enabled: 0
  2569. ratio: 1
  2570. lifetime:
  2571. serializedVersion: 2
  2572. minMaxState: 0
  2573. scalar: 1
  2574. minScalar: 1
  2575. maxCurve:
  2576. serializedVersion: 2
  2577. m_Curve:
  2578. - serializedVersion: 2
  2579. time: 0
  2580. value: 1
  2581. inSlope: 0
  2582. outSlope: 0
  2583. tangentMode: 0
  2584. - serializedVersion: 2
  2585. time: 1
  2586. value: 1
  2587. inSlope: 0
  2588. outSlope: 0
  2589. tangentMode: 0
  2590. m_PreInfinity: 2
  2591. m_PostInfinity: 2
  2592. m_RotationOrder: 4
  2593. minCurve:
  2594. serializedVersion: 2
  2595. m_Curve:
  2596. - serializedVersion: 2
  2597. time: 0
  2598. value: 0
  2599. inSlope: 0
  2600. outSlope: 0
  2601. tangentMode: 0
  2602. - serializedVersion: 2
  2603. time: 1
  2604. value: 0
  2605. inSlope: 0
  2606. outSlope: 0
  2607. tangentMode: 0
  2608. m_PreInfinity: 2
  2609. m_PostInfinity: 2
  2610. m_RotationOrder: 4
  2611. minVertexDistance: 0.2
  2612. textureMode: 0
  2613. worldSpace: 0
  2614. dieWithParticles: 1
  2615. sizeAffectsWidth: 1
  2616. sizeAffectsLifetime: 0
  2617. inheritParticleColor: 1
  2618. generateLightingData: 0
  2619. colorOverLifetime:
  2620. serializedVersion: 2
  2621. minMaxState: 0
  2622. minColor: {r: 1, g: 1, b: 1, a: 1}
  2623. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2624. maxGradient:
  2625. serializedVersion: 2
  2626. key0: {r: 1, g: 1, b: 1, a: 1}
  2627. key1: {r: 1, g: 1, b: 1, a: 1}
  2628. key2: {r: 0, g: 0, b: 0, a: 0}
  2629. key3: {r: 0, g: 0, b: 0, a: 0}
  2630. key4: {r: 0, g: 0, b: 0, a: 0}
  2631. key5: {r: 0, g: 0, b: 0, a: 0}
  2632. key6: {r: 0, g: 0, b: 0, a: 0}
  2633. key7: {r: 0, g: 0, b: 0, a: 0}
  2634. ctime0: 0
  2635. ctime1: 65535
  2636. ctime2: 0
  2637. ctime3: 0
  2638. ctime4: 0
  2639. ctime5: 0
  2640. ctime6: 0
  2641. ctime7: 0
  2642. atime0: 0
  2643. atime1: 65535
  2644. atime2: 0
  2645. atime3: 0
  2646. atime4: 0
  2647. atime5: 0
  2648. atime6: 0
  2649. atime7: 0
  2650. m_Mode: 0
  2651. m_NumColorKeys: 2
  2652. m_NumAlphaKeys: 2
  2653. minGradient:
  2654. serializedVersion: 2
  2655. key0: {r: 1, g: 1, b: 1, a: 1}
  2656. key1: {r: 1, g: 1, b: 1, a: 1}
  2657. key2: {r: 0, g: 0, b: 0, a: 0}
  2658. key3: {r: 0, g: 0, b: 0, a: 0}
  2659. key4: {r: 0, g: 0, b: 0, a: 0}
  2660. key5: {r: 0, g: 0, b: 0, a: 0}
  2661. key6: {r: 0, g: 0, b: 0, a: 0}
  2662. key7: {r: 0, g: 0, b: 0, a: 0}
  2663. ctime0: 0
  2664. ctime1: 65535
  2665. ctime2: 0
  2666. ctime3: 0
  2667. ctime4: 0
  2668. ctime5: 0
  2669. ctime6: 0
  2670. ctime7: 0
  2671. atime0: 0
  2672. atime1: 65535
  2673. atime2: 0
  2674. atime3: 0
  2675. atime4: 0
  2676. atime5: 0
  2677. atime6: 0
  2678. atime7: 0
  2679. m_Mode: 0
  2680. m_NumColorKeys: 2
  2681. m_NumAlphaKeys: 2
  2682. widthOverTrail:
  2683. serializedVersion: 2
  2684. minMaxState: 0
  2685. scalar: 1
  2686. minScalar: 1
  2687. maxCurve:
  2688. serializedVersion: 2
  2689. m_Curve:
  2690. - serializedVersion: 2
  2691. time: 0
  2692. value: 1
  2693. inSlope: 0
  2694. outSlope: 0
  2695. tangentMode: 0
  2696. - serializedVersion: 2
  2697. time: 1
  2698. value: 1
  2699. inSlope: 0
  2700. outSlope: 0
  2701. tangentMode: 0
  2702. m_PreInfinity: 2
  2703. m_PostInfinity: 2
  2704. m_RotationOrder: 4
  2705. minCurve:
  2706. serializedVersion: 2
  2707. m_Curve:
  2708. - serializedVersion: 2
  2709. time: 0
  2710. value: 0
  2711. inSlope: 0
  2712. outSlope: 0
  2713. tangentMode: 0
  2714. - serializedVersion: 2
  2715. time: 1
  2716. value: 0
  2717. inSlope: 0
  2718. outSlope: 0
  2719. tangentMode: 0
  2720. m_PreInfinity: 2
  2721. m_PostInfinity: 2
  2722. m_RotationOrder: 4
  2723. colorOverTrail:
  2724. serializedVersion: 2
  2725. minMaxState: 0
  2726. minColor: {r: 1, g: 1, b: 1, a: 1}
  2727. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2728. maxGradient:
  2729. serializedVersion: 2
  2730. key0: {r: 1, g: 1, b: 1, a: 1}
  2731. key1: {r: 1, g: 1, b: 1, a: 1}
  2732. key2: {r: 0, g: 0, b: 0, a: 0}
  2733. key3: {r: 0, g: 0, b: 0, a: 0}
  2734. key4: {r: 0, g: 0, b: 0, a: 0}
  2735. key5: {r: 0, g: 0, b: 0, a: 0}
  2736. key6: {r: 0, g: 0, b: 0, a: 0}
  2737. key7: {r: 0, g: 0, b: 0, a: 0}
  2738. ctime0: 0
  2739. ctime1: 65535
  2740. ctime2: 0
  2741. ctime3: 0
  2742. ctime4: 0
  2743. ctime5: 0
  2744. ctime6: 0
  2745. ctime7: 0
  2746. atime0: 0
  2747. atime1: 65535
  2748. atime2: 0
  2749. atime3: 0
  2750. atime4: 0
  2751. atime5: 0
  2752. atime6: 0
  2753. atime7: 0
  2754. m_Mode: 0
  2755. m_NumColorKeys: 2
  2756. m_NumAlphaKeys: 2
  2757. minGradient:
  2758. serializedVersion: 2
  2759. key0: {r: 1, g: 1, b: 1, a: 1}
  2760. key1: {r: 1, g: 1, b: 1, a: 1}
  2761. key2: {r: 0, g: 0, b: 0, a: 0}
  2762. key3: {r: 0, g: 0, b: 0, a: 0}
  2763. key4: {r: 0, g: 0, b: 0, a: 0}
  2764. key5: {r: 0, g: 0, b: 0, a: 0}
  2765. key6: {r: 0, g: 0, b: 0, a: 0}
  2766. key7: {r: 0, g: 0, b: 0, a: 0}
  2767. ctime0: 0
  2768. ctime1: 65535
  2769. ctime2: 0
  2770. ctime3: 0
  2771. ctime4: 0
  2772. ctime5: 0
  2773. ctime6: 0
  2774. ctime7: 0
  2775. atime0: 0
  2776. atime1: 65535
  2777. atime2: 0
  2778. atime3: 0
  2779. atime4: 0
  2780. atime5: 0
  2781. atime6: 0
  2782. atime7: 0
  2783. m_Mode: 0
  2784. m_NumColorKeys: 2
  2785. m_NumAlphaKeys: 2
  2786. CustomDataModule:
  2787. enabled: 0
  2788. mode0: 0
  2789. vectorComponentCount0: 4
  2790. color0:
  2791. serializedVersion: 2
  2792. minMaxState: 0
  2793. minColor: {r: 1, g: 1, b: 1, a: 1}
  2794. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2795. maxGradient:
  2796. serializedVersion: 2
  2797. key0: {r: 1, g: 1, b: 1, a: 1}
  2798. key1: {r: 1, g: 1, b: 1, a: 1}
  2799. key2: {r: 0, g: 0, b: 0, a: 0}
  2800. key3: {r: 0, g: 0, b: 0, a: 0}
  2801. key4: {r: 0, g: 0, b: 0, a: 0}
  2802. key5: {r: 0, g: 0, b: 0, a: 0}
  2803. key6: {r: 0, g: 0, b: 0, a: 0}
  2804. key7: {r: 0, g: 0, b: 0, a: 0}
  2805. ctime0: 0
  2806. ctime1: 65535
  2807. ctime2: 0
  2808. ctime3: 0
  2809. ctime4: 0
  2810. ctime5: 0
  2811. ctime6: 0
  2812. ctime7: 0
  2813. atime0: 0
  2814. atime1: 65535
  2815. atime2: 0
  2816. atime3: 0
  2817. atime4: 0
  2818. atime5: 0
  2819. atime6: 0
  2820. atime7: 0
  2821. m_Mode: 0
  2822. m_NumColorKeys: 2
  2823. m_NumAlphaKeys: 2
  2824. minGradient:
  2825. serializedVersion: 2
  2826. key0: {r: 1, g: 1, b: 1, a: 1}
  2827. key1: {r: 1, g: 1, b: 1, a: 1}
  2828. key2: {r: 0, g: 0, b: 0, a: 0}
  2829. key3: {r: 0, g: 0, b: 0, a: 0}
  2830. key4: {r: 0, g: 0, b: 0, a: 0}
  2831. key5: {r: 0, g: 0, b: 0, a: 0}
  2832. key6: {r: 0, g: 0, b: 0, a: 0}
  2833. key7: {r: 0, g: 0, b: 0, a: 0}
  2834. ctime0: 0
  2835. ctime1: 65535
  2836. ctime2: 0
  2837. ctime3: 0
  2838. ctime4: 0
  2839. ctime5: 0
  2840. ctime6: 0
  2841. ctime7: 0
  2842. atime0: 0
  2843. atime1: 65535
  2844. atime2: 0
  2845. atime3: 0
  2846. atime4: 0
  2847. atime5: 0
  2848. atime6: 0
  2849. atime7: 0
  2850. m_Mode: 0
  2851. m_NumColorKeys: 2
  2852. m_NumAlphaKeys: 2
  2853. vector0_0:
  2854. serializedVersion: 2
  2855. minMaxState: 0
  2856. scalar: 0
  2857. minScalar: 0
  2858. maxCurve:
  2859. serializedVersion: 2
  2860. m_Curve:
  2861. - serializedVersion: 2
  2862. time: 0
  2863. value: 1
  2864. inSlope: 0
  2865. outSlope: 0
  2866. tangentMode: 0
  2867. - serializedVersion: 2
  2868. time: 1
  2869. value: 1
  2870. inSlope: 0
  2871. outSlope: 0
  2872. tangentMode: 0
  2873. m_PreInfinity: 2
  2874. m_PostInfinity: 2
  2875. m_RotationOrder: 4
  2876. minCurve:
  2877. serializedVersion: 2
  2878. m_Curve:
  2879. - serializedVersion: 2
  2880. time: 0
  2881. value: 0
  2882. inSlope: 0
  2883. outSlope: 0
  2884. tangentMode: 0
  2885. - serializedVersion: 2
  2886. time: 1
  2887. value: 0
  2888. inSlope: 0
  2889. outSlope: 0
  2890. tangentMode: 0
  2891. m_PreInfinity: 2
  2892. m_PostInfinity: 2
  2893. m_RotationOrder: 4
  2894. vector0_1:
  2895. serializedVersion: 2
  2896. minMaxState: 0
  2897. scalar: 0
  2898. minScalar: 0
  2899. maxCurve:
  2900. serializedVersion: 2
  2901. m_Curve:
  2902. - serializedVersion: 2
  2903. time: 0
  2904. value: 1
  2905. inSlope: 0
  2906. outSlope: 0
  2907. tangentMode: 0
  2908. - serializedVersion: 2
  2909. time: 1
  2910. value: 1
  2911. inSlope: 0
  2912. outSlope: 0
  2913. tangentMode: 0
  2914. m_PreInfinity: 2
  2915. m_PostInfinity: 2
  2916. m_RotationOrder: 4
  2917. minCurve:
  2918. serializedVersion: 2
  2919. m_Curve:
  2920. - serializedVersion: 2
  2921. time: 0
  2922. value: 0
  2923. inSlope: 0
  2924. outSlope: 0
  2925. tangentMode: 0
  2926. - serializedVersion: 2
  2927. time: 1
  2928. value: 0
  2929. inSlope: 0
  2930. outSlope: 0
  2931. tangentMode: 0
  2932. m_PreInfinity: 2
  2933. m_PostInfinity: 2
  2934. m_RotationOrder: 4
  2935. vector0_2:
  2936. serializedVersion: 2
  2937. minMaxState: 0
  2938. scalar: 0
  2939. minScalar: 0
  2940. maxCurve:
  2941. serializedVersion: 2
  2942. m_Curve:
  2943. - serializedVersion: 2
  2944. time: 0
  2945. value: 1
  2946. inSlope: 0
  2947. outSlope: 0
  2948. tangentMode: 0
  2949. - serializedVersion: 2
  2950. time: 1
  2951. value: 1
  2952. inSlope: 0
  2953. outSlope: 0
  2954. tangentMode: 0
  2955. m_PreInfinity: 2
  2956. m_PostInfinity: 2
  2957. m_RotationOrder: 4
  2958. minCurve:
  2959. serializedVersion: 2
  2960. m_Curve:
  2961. - serializedVersion: 2
  2962. time: 0
  2963. value: 0
  2964. inSlope: 0
  2965. outSlope: 0
  2966. tangentMode: 0
  2967. - serializedVersion: 2
  2968. time: 1
  2969. value: 0
  2970. inSlope: 0
  2971. outSlope: 0
  2972. tangentMode: 0
  2973. m_PreInfinity: 2
  2974. m_PostInfinity: 2
  2975. m_RotationOrder: 4
  2976. vector0_3:
  2977. serializedVersion: 2
  2978. minMaxState: 0
  2979. scalar: 0
  2980. minScalar: 0
  2981. maxCurve:
  2982. serializedVersion: 2
  2983. m_Curve:
  2984. - serializedVersion: 2
  2985. time: 0
  2986. value: 1
  2987. inSlope: 0
  2988. outSlope: 0
  2989. tangentMode: 0
  2990. - serializedVersion: 2
  2991. time: 1
  2992. value: 1
  2993. inSlope: 0
  2994. outSlope: 0
  2995. tangentMode: 0
  2996. m_PreInfinity: 2
  2997. m_PostInfinity: 2
  2998. m_RotationOrder: 4
  2999. minCurve:
  3000. serializedVersion: 2
  3001. m_Curve:
  3002. - serializedVersion: 2
  3003. time: 0
  3004. value: 0
  3005. inSlope: 0
  3006. outSlope: 0
  3007. tangentMode: 0
  3008. - serializedVersion: 2
  3009. time: 1
  3010. value: 0
  3011. inSlope: 0
  3012. outSlope: 0
  3013. tangentMode: 0
  3014. m_PreInfinity: 2
  3015. m_PostInfinity: 2
  3016. m_RotationOrder: 4
  3017. mode1: 0
  3018. vectorComponentCount1: 4
  3019. color1:
  3020. serializedVersion: 2
  3021. minMaxState: 0
  3022. minColor: {r: 1, g: 1, b: 1, a: 1}
  3023. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3024. maxGradient:
  3025. serializedVersion: 2
  3026. key0: {r: 1, g: 1, b: 1, a: 1}
  3027. key1: {r: 1, g: 1, b: 1, a: 1}
  3028. key2: {r: 0, g: 0, b: 0, a: 0}
  3029. key3: {r: 0, g: 0, b: 0, a: 0}
  3030. key4: {r: 0, g: 0, b: 0, a: 0}
  3031. key5: {r: 0, g: 0, b: 0, a: 0}
  3032. key6: {r: 0, g: 0, b: 0, a: 0}
  3033. key7: {r: 0, g: 0, b: 0, a: 0}
  3034. ctime0: 0
  3035. ctime1: 65535
  3036. ctime2: 0
  3037. ctime3: 0
  3038. ctime4: 0
  3039. ctime5: 0
  3040. ctime6: 0
  3041. ctime7: 0
  3042. atime0: 0
  3043. atime1: 65535
  3044. atime2: 0
  3045. atime3: 0
  3046. atime4: 0
  3047. atime5: 0
  3048. atime6: 0
  3049. atime7: 0
  3050. m_Mode: 0
  3051. m_NumColorKeys: 2
  3052. m_NumAlphaKeys: 2
  3053. minGradient:
  3054. serializedVersion: 2
  3055. key0: {r: 1, g: 1, b: 1, a: 1}
  3056. key1: {r: 1, g: 1, b: 1, a: 1}
  3057. key2: {r: 0, g: 0, b: 0, a: 0}
  3058. key3: {r: 0, g: 0, b: 0, a: 0}
  3059. key4: {r: 0, g: 0, b: 0, a: 0}
  3060. key5: {r: 0, g: 0, b: 0, a: 0}
  3061. key6: {r: 0, g: 0, b: 0, a: 0}
  3062. key7: {r: 0, g: 0, b: 0, a: 0}
  3063. ctime0: 0
  3064. ctime1: 65535
  3065. ctime2: 0
  3066. ctime3: 0
  3067. ctime4: 0
  3068. ctime5: 0
  3069. ctime6: 0
  3070. ctime7: 0
  3071. atime0: 0
  3072. atime1: 65535
  3073. atime2: 0
  3074. atime3: 0
  3075. atime4: 0
  3076. atime5: 0
  3077. atime6: 0
  3078. atime7: 0
  3079. m_Mode: 0
  3080. m_NumColorKeys: 2
  3081. m_NumAlphaKeys: 2
  3082. vector1_0:
  3083. serializedVersion: 2
  3084. minMaxState: 0
  3085. scalar: 0
  3086. minScalar: 0
  3087. maxCurve:
  3088. serializedVersion: 2
  3089. m_Curve:
  3090. - serializedVersion: 2
  3091. time: 0
  3092. value: 1
  3093. inSlope: 0
  3094. outSlope: 0
  3095. tangentMode: 0
  3096. - serializedVersion: 2
  3097. time: 1
  3098. value: 1
  3099. inSlope: 0
  3100. outSlope: 0
  3101. tangentMode: 0
  3102. m_PreInfinity: 2
  3103. m_PostInfinity: 2
  3104. m_RotationOrder: 4
  3105. minCurve:
  3106. serializedVersion: 2
  3107. m_Curve:
  3108. - serializedVersion: 2
  3109. time: 0
  3110. value: 0
  3111. inSlope: 0
  3112. outSlope: 0
  3113. tangentMode: 0
  3114. - serializedVersion: 2
  3115. time: 1
  3116. value: 0
  3117. inSlope: 0
  3118. outSlope: 0
  3119. tangentMode: 0
  3120. m_PreInfinity: 2
  3121. m_PostInfinity: 2
  3122. m_RotationOrder: 4
  3123. vector1_1:
  3124. serializedVersion: 2
  3125. minMaxState: 0
  3126. scalar: 0
  3127. minScalar: 0
  3128. maxCurve:
  3129. serializedVersion: 2
  3130. m_Curve:
  3131. - serializedVersion: 2
  3132. time: 0
  3133. value: 1
  3134. inSlope: 0
  3135. outSlope: 0
  3136. tangentMode: 0
  3137. - serializedVersion: 2
  3138. time: 1
  3139. value: 1
  3140. inSlope: 0
  3141. outSlope: 0
  3142. tangentMode: 0
  3143. m_PreInfinity: 2
  3144. m_PostInfinity: 2
  3145. m_RotationOrder: 4
  3146. minCurve:
  3147. serializedVersion: 2
  3148. m_Curve:
  3149. - serializedVersion: 2
  3150. time: 0
  3151. value: 0
  3152. inSlope: 0
  3153. outSlope: 0
  3154. tangentMode: 0
  3155. - serializedVersion: 2
  3156. time: 1
  3157. value: 0
  3158. inSlope: 0
  3159. outSlope: 0
  3160. tangentMode: 0
  3161. m_PreInfinity: 2
  3162. m_PostInfinity: 2
  3163. m_RotationOrder: 4
  3164. vector1_2:
  3165. serializedVersion: 2
  3166. minMaxState: 0
  3167. scalar: 0
  3168. minScalar: 0
  3169. maxCurve:
  3170. serializedVersion: 2
  3171. m_Curve:
  3172. - serializedVersion: 2
  3173. time: 0
  3174. value: 1
  3175. inSlope: 0
  3176. outSlope: 0
  3177. tangentMode: 0
  3178. - serializedVersion: 2
  3179. time: 1
  3180. value: 1
  3181. inSlope: 0
  3182. outSlope: 0
  3183. tangentMode: 0
  3184. m_PreInfinity: 2
  3185. m_PostInfinity: 2
  3186. m_RotationOrder: 4
  3187. minCurve:
  3188. serializedVersion: 2
  3189. m_Curve:
  3190. - serializedVersion: 2
  3191. time: 0
  3192. value: 0
  3193. inSlope: 0
  3194. outSlope: 0
  3195. tangentMode: 0
  3196. - serializedVersion: 2
  3197. time: 1
  3198. value: 0
  3199. inSlope: 0
  3200. outSlope: 0
  3201. tangentMode: 0
  3202. m_PreInfinity: 2
  3203. m_PostInfinity: 2
  3204. m_RotationOrder: 4
  3205. vector1_3:
  3206. serializedVersion: 2
  3207. minMaxState: 0
  3208. scalar: 0
  3209. minScalar: 0
  3210. maxCurve:
  3211. serializedVersion: 2
  3212. m_Curve:
  3213. - serializedVersion: 2
  3214. time: 0
  3215. value: 1
  3216. inSlope: 0
  3217. outSlope: 0
  3218. tangentMode: 0
  3219. - serializedVersion: 2
  3220. time: 1
  3221. value: 1
  3222. inSlope: 0
  3223. outSlope: 0
  3224. tangentMode: 0
  3225. m_PreInfinity: 2
  3226. m_PostInfinity: 2
  3227. m_RotationOrder: 4
  3228. minCurve:
  3229. serializedVersion: 2
  3230. m_Curve:
  3231. - serializedVersion: 2
  3232. time: 0
  3233. value: 0
  3234. inSlope: 0
  3235. outSlope: 0
  3236. tangentMode: 0
  3237. - serializedVersion: 2
  3238. time: 1
  3239. value: 0
  3240. inSlope: 0
  3241. outSlope: 0
  3242. tangentMode: 0
  3243. m_PreInfinity: 2
  3244. m_PostInfinity: 2
  3245. m_RotationOrder: 4
  3246. --- !u!199 &199744793079097426
  3247. ParticleSystemRenderer:
  3248. serializedVersion: 4
  3249. m_ObjectHideFlags: 1
  3250. m_PrefabParentObject: {fileID: 0}
  3251. m_PrefabInternal: {fileID: 100100000}
  3252. m_GameObject: {fileID: 1139958743464902}
  3253. m_Enabled: 1
  3254. m_CastShadows: 0
  3255. m_ReceiveShadows: 0
  3256. m_MotionVectors: 1
  3257. m_LightProbeUsage: 0
  3258. m_ReflectionProbeUsage: 0
  3259. m_Materials:
  3260. - {fileID: 2100000, guid: 1d6ce39015646794bb453e5b4e85f3ae, type: 2}
  3261. - {fileID: 0}
  3262. m_StaticBatchInfo:
  3263. firstSubMesh: 0
  3264. subMeshCount: 0
  3265. m_StaticBatchRoot: {fileID: 0}
  3266. m_ProbeAnchor: {fileID: 0}
  3267. m_LightProbeVolumeOverride: {fileID: 0}
  3268. m_ScaleInLightmap: 1
  3269. m_PreserveUVs: 0
  3270. m_IgnoreNormalsForChartDetection: 0
  3271. m_ImportantGI: 0
  3272. m_SelectedEditorRenderState: 0
  3273. m_MinimumChartSize: 4
  3274. m_AutoUVMaxDistance: 0.5
  3275. m_AutoUVMaxAngle: 89
  3276. m_LightmapParameters: {fileID: 0}
  3277. m_SortingLayerID: 0
  3278. m_SortingLayer: 0
  3279. m_SortingOrder: 0
  3280. m_RenderMode: 4
  3281. m_SortMode: 0
  3282. m_MinParticleSize: 0
  3283. m_MaxParticleSize: 0.5
  3284. m_CameraVelocityScale: 0
  3285. m_VelocityScale: 0
  3286. m_LengthScale: 2
  3287. m_SortingFudge: 0
  3288. m_NormalDirection: 1
  3289. m_RenderAlignment: 2
  3290. m_Pivot: {x: 0, y: 0, z: 0}
  3291. m_UseCustomVertexStreams: 0
  3292. m_VertexStreams: 00010304
  3293. m_Mesh: {fileID: 4300000, guid: 30479c000e383a745bd05d57364b1f61, type: 3}
  3294. m_Mesh1: {fileID: 0}
  3295. m_Mesh2: {fileID: 0}
  3296. m_Mesh3: {fileID: 0}
  3297. m_MaskInteraction: 0