FX_ExperienceGain_01.prefab 78 KB

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