FX_Bubble_01.prefab 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477
  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: 1945864579541184}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1945864579541184
  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: 4077215817788164}
  22. - component: {fileID: 198650703171396112}
  23. - component: {fileID: 199198863465783300}
  24. m_Layer: 0
  25. m_Name: FX_Bubble_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 &4077215817788164
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1945864579541184}
  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 &198650703171396112
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1945864579541184}
  50. serializedVersion: 5
  51. lengthInSec: 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: 1
  102. moveWithCustomTransform: {fileID: 0}
  103. scalingMode: 1
  104. randomSeed: 1330735989
  105. InitialModule:
  106. serializedVersion: 3
  107. enabled: 1
  108. startLifetime:
  109. serializedVersion: 2
  110. minMaxState: 0
  111. scalar: 0.6
  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: -6.3
  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: 0.375, g: 0.7413793, b: 1, 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.5
  257. minScalar: 0.5
  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: 3
  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: 0
  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: 10
  751. minScalar: 10
  752. maxCurve:
  753. serializedVersion: 2
  754. m_Curve:
  755. - serializedVersion: 2
  756. time: 0
  757. value: 1
  758. inSlope: 0
  759. outSlope: 0
  760. tangentMode: 0
  761. - serializedVersion: 2
  762. time: 1
  763. value: 1
  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: 1
  776. inSlope: 0
  777. outSlope: 0
  778. tangentMode: 0
  779. - serializedVersion: 2
  780. time: 1
  781. value: 1
  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
  803. inSlope: 0
  804. outSlope: 0
  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: 0
  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: 0
  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: 0
  1015. scalar: 0.7853982
  1016. minScalar: 0.7853982
  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: 0, g: 0.5862067, b: 1, a: 0}
  1064. key1: {r: 0.3455882, g: 0.78336704, b: 1, a: 1}
  1065. key2: {r: 1, g: 0.7687627, b: 0.16176468, a: 0.8730386}
  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: 0
  1072. ctime1: 52621
  1073. ctime2: 43562
  1074. ctime3: 0
  1075. ctime4: 0
  1076. ctime5: 0
  1077. ctime6: 0
  1078. ctime7: 0
  1079. atime0: 0
  1080. atime1: 6746
  1081. atime2: 56476
  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: 10
  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
  1663. inSlope: -14.906382
  1664. outSlope: -14.906382
  1665. tangentMode: 0
  1666. m_PreInfinity: 2
  1667. m_PostInfinity: 2
  1668. m_RotationOrder: 0
  1669. minCurve:
  1670. serializedVersion: 2
  1671. m_Curve:
  1672. - serializedVersion: 2
  1673. time: 0
  1674. value: 1
  1675. inSlope: 0
  1676. outSlope: 0
  1677. tangentMode: 0
  1678. - serializedVersion: 2
  1679. time: 1
  1680. value: 1
  1681. inSlope: 0
  1682. outSlope: 0
  1683. tangentMode: 0
  1684. m_PreInfinity: 2
  1685. m_PostInfinity: 2
  1686. m_RotationOrder: 4
  1687. separateAxis: 0
  1688. inWorldSpace: 0
  1689. multiplyDragByParticleSize: 1
  1690. multiplyDragByParticleVelocity: 1
  1691. dampen: 1
  1692. drag:
  1693. serializedVersion: 2
  1694. minMaxState: 0
  1695. scalar: 0
  1696. minScalar: 0
  1697. maxCurve:
  1698. serializedVersion: 2
  1699. m_Curve:
  1700. - serializedVersion: 2
  1701. time: 0
  1702. value: 0
  1703. inSlope: 0
  1704. outSlope: 0
  1705. tangentMode: 0
  1706. - serializedVersion: 2
  1707. time: 1
  1708. value: 0
  1709. inSlope: 0
  1710. outSlope: 0
  1711. tangentMode: 0
  1712. m_PreInfinity: 2
  1713. m_PostInfinity: 2
  1714. m_RotationOrder: 4
  1715. minCurve:
  1716. serializedVersion: 2
  1717. m_Curve:
  1718. - serializedVersion: 2
  1719. time: 0
  1720. value: 0
  1721. inSlope: 0
  1722. outSlope: 0
  1723. tangentMode: 0
  1724. - serializedVersion: 2
  1725. time: 1
  1726. value: 0
  1727. inSlope: 0
  1728. outSlope: 0
  1729. tangentMode: 0
  1730. m_PreInfinity: 2
  1731. m_PostInfinity: 2
  1732. m_RotationOrder: 4
  1733. NoiseModule:
  1734. enabled: 0
  1735. strength:
  1736. serializedVersion: 2
  1737. minMaxState: 0
  1738. scalar: 0.05
  1739. minScalar: 1
  1740. maxCurve:
  1741. serializedVersion: 2
  1742. m_Curve:
  1743. - serializedVersion: 2
  1744. time: 0
  1745. value: 1
  1746. inSlope: 0
  1747. outSlope: 0
  1748. tangentMode: 0
  1749. - serializedVersion: 2
  1750. time: 1
  1751. value: 1
  1752. inSlope: 0
  1753. outSlope: 0
  1754. tangentMode: 0
  1755. m_PreInfinity: 2
  1756. m_PostInfinity: 2
  1757. m_RotationOrder: 4
  1758. minCurve:
  1759. serializedVersion: 2
  1760. m_Curve:
  1761. - serializedVersion: 2
  1762. time: 0
  1763. value: 1
  1764. inSlope: 0
  1765. outSlope: 0
  1766. tangentMode: 0
  1767. - serializedVersion: 2
  1768. time: 1
  1769. value: 1
  1770. inSlope: 0
  1771. outSlope: 0
  1772. tangentMode: 0
  1773. m_PreInfinity: 2
  1774. m_PostInfinity: 2
  1775. m_RotationOrder: 4
  1776. strengthY:
  1777. serializedVersion: 2
  1778. minMaxState: 0
  1779. scalar: 1
  1780. minScalar: 1
  1781. maxCurve:
  1782. serializedVersion: 2
  1783. m_Curve:
  1784. - serializedVersion: 2
  1785. time: 0
  1786. value: 1
  1787. inSlope: 0
  1788. outSlope: 0
  1789. tangentMode: 0
  1790. - serializedVersion: 2
  1791. time: 1
  1792. value: 1
  1793. inSlope: 0
  1794. outSlope: 0
  1795. tangentMode: 0
  1796. m_PreInfinity: 2
  1797. m_PostInfinity: 2
  1798. m_RotationOrder: 4
  1799. minCurve:
  1800. serializedVersion: 2
  1801. m_Curve:
  1802. - serializedVersion: 2
  1803. time: 0
  1804. value: 1
  1805. inSlope: 0
  1806. outSlope: 0
  1807. tangentMode: 0
  1808. - serializedVersion: 2
  1809. time: 1
  1810. value: 1
  1811. inSlope: 0
  1812. outSlope: 0
  1813. tangentMode: 0
  1814. m_PreInfinity: 2
  1815. m_PostInfinity: 2
  1816. m_RotationOrder: 4
  1817. strengthZ:
  1818. serializedVersion: 2
  1819. minMaxState: 0
  1820. scalar: 1
  1821. minScalar: 1
  1822. maxCurve:
  1823. serializedVersion: 2
  1824. m_Curve:
  1825. - serializedVersion: 2
  1826. time: 0
  1827. value: 1
  1828. inSlope: 0
  1829. outSlope: 0
  1830. tangentMode: 0
  1831. - serializedVersion: 2
  1832. time: 1
  1833. value: 1
  1834. inSlope: 0
  1835. outSlope: 0
  1836. tangentMode: 0
  1837. m_PreInfinity: 2
  1838. m_PostInfinity: 2
  1839. m_RotationOrder: 4
  1840. minCurve:
  1841. serializedVersion: 2
  1842. m_Curve:
  1843. - serializedVersion: 2
  1844. time: 0
  1845. value: 1
  1846. inSlope: 0
  1847. outSlope: 0
  1848. tangentMode: 0
  1849. - serializedVersion: 2
  1850. time: 1
  1851. value: 1
  1852. inSlope: 0
  1853. outSlope: 0
  1854. tangentMode: 0
  1855. m_PreInfinity: 2
  1856. m_PostInfinity: 2
  1857. m_RotationOrder: 4
  1858. separateAxes: 0
  1859. frequency: 0.5
  1860. damping: 1
  1861. octaves: 1
  1862. octaveMultiplier: 0.5
  1863. octaveScale: 2
  1864. quality: 2
  1865. scrollSpeed:
  1866. serializedVersion: 2
  1867. minMaxState: 0
  1868. scalar: 1
  1869. minScalar: 0
  1870. maxCurve:
  1871. serializedVersion: 2
  1872. m_Curve:
  1873. - serializedVersion: 2
  1874. time: 0
  1875. value: 0
  1876. inSlope: 0
  1877. outSlope: 0
  1878. tangentMode: 0
  1879. - serializedVersion: 2
  1880. time: 1
  1881. value: 0
  1882. inSlope: 0
  1883. outSlope: 0
  1884. tangentMode: 0
  1885. m_PreInfinity: 2
  1886. m_PostInfinity: 2
  1887. m_RotationOrder: 4
  1888. minCurve:
  1889. serializedVersion: 2
  1890. m_Curve:
  1891. - serializedVersion: 2
  1892. time: 0
  1893. value: 0
  1894. inSlope: 0
  1895. outSlope: 0
  1896. tangentMode: 0
  1897. - serializedVersion: 2
  1898. time: 1
  1899. value: 0
  1900. inSlope: 0
  1901. outSlope: 0
  1902. tangentMode: 0
  1903. m_PreInfinity: 2
  1904. m_PostInfinity: 2
  1905. m_RotationOrder: 4
  1906. remap:
  1907. serializedVersion: 2
  1908. minMaxState: 1
  1909. scalar: 1
  1910. minScalar: 1
  1911. maxCurve:
  1912. serializedVersion: 2
  1913. m_Curve:
  1914. - serializedVersion: 2
  1915. time: 0
  1916. value: 0
  1917. inSlope: 0
  1918. outSlope: 1
  1919. tangentMode: 0
  1920. - serializedVersion: 2
  1921. time: 1
  1922. value: 1
  1923. inSlope: 1
  1924. outSlope: 0
  1925. tangentMode: 0
  1926. m_PreInfinity: 2
  1927. m_PostInfinity: 2
  1928. m_RotationOrder: 4
  1929. minCurve:
  1930. serializedVersion: 2
  1931. m_Curve:
  1932. - serializedVersion: 2
  1933. time: 0
  1934. value: 1
  1935. inSlope: 0
  1936. outSlope: 0
  1937. tangentMode: 0
  1938. - serializedVersion: 2
  1939. time: 1
  1940. value: 1
  1941. inSlope: 0
  1942. outSlope: 0
  1943. tangentMode: 0
  1944. m_PreInfinity: 2
  1945. m_PostInfinity: 2
  1946. m_RotationOrder: 4
  1947. remapY:
  1948. serializedVersion: 2
  1949. minMaxState: 1
  1950. scalar: 1
  1951. minScalar: 1
  1952. maxCurve:
  1953. serializedVersion: 2
  1954. m_Curve:
  1955. - serializedVersion: 2
  1956. time: 0
  1957. value: 0
  1958. inSlope: 0
  1959. outSlope: 1
  1960. tangentMode: 0
  1961. - serializedVersion: 2
  1962. time: 1
  1963. value: 1
  1964. inSlope: 1
  1965. outSlope: 0
  1966. tangentMode: 0
  1967. m_PreInfinity: 2
  1968. m_PostInfinity: 2
  1969. m_RotationOrder: 4
  1970. minCurve:
  1971. serializedVersion: 2
  1972. m_Curve:
  1973. - serializedVersion: 2
  1974. time: 0
  1975. value: 1
  1976. inSlope: 0
  1977. outSlope: 0
  1978. tangentMode: 0
  1979. - serializedVersion: 2
  1980. time: 1
  1981. value: 1
  1982. inSlope: 0
  1983. outSlope: 0
  1984. tangentMode: 0
  1985. m_PreInfinity: 2
  1986. m_PostInfinity: 2
  1987. m_RotationOrder: 4
  1988. remapZ:
  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: 0
  1999. inSlope: 0
  2000. outSlope: 1
  2001. tangentMode: 0
  2002. - serializedVersion: 2
  2003. time: 1
  2004. value: 1
  2005. inSlope: 1
  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: 1
  2017. inSlope: 0
  2018. outSlope: 0
  2019. tangentMode: 0
  2020. - serializedVersion: 2
  2021. time: 1
  2022. value: 1
  2023. inSlope: 0
  2024. outSlope: 0
  2025. tangentMode: 0
  2026. m_PreInfinity: 2
  2027. m_PostInfinity: 2
  2028. m_RotationOrder: 4
  2029. remapEnabled: 0
  2030. positionAmount:
  2031. serializedVersion: 2
  2032. minMaxState: 0
  2033. scalar: 1
  2034. minScalar: 1
  2035. maxCurve:
  2036. serializedVersion: 2
  2037. m_Curve:
  2038. - serializedVersion: 2
  2039. time: 0
  2040. value: 1
  2041. inSlope: 0
  2042. outSlope: 0
  2043. tangentMode: 0
  2044. - serializedVersion: 2
  2045. time: 1
  2046. value: 1
  2047. inSlope: 0
  2048. outSlope: 0
  2049. tangentMode: 0
  2050. m_PreInfinity: 2
  2051. m_PostInfinity: 2
  2052. m_RotationOrder: 4
  2053. minCurve:
  2054. serializedVersion: 2
  2055. m_Curve:
  2056. - serializedVersion: 2
  2057. time: 0
  2058. value: 1
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 0
  2062. - serializedVersion: 2
  2063. time: 1
  2064. value: 1
  2065. inSlope: 0
  2066. outSlope: 0
  2067. tangentMode: 0
  2068. m_PreInfinity: 2
  2069. m_PostInfinity: 2
  2070. m_RotationOrder: 4
  2071. rotationAmount:
  2072. serializedVersion: 2
  2073. minMaxState: 0
  2074. scalar: 0
  2075. minScalar: 0
  2076. maxCurve:
  2077. serializedVersion: 2
  2078. m_Curve:
  2079. - serializedVersion: 2
  2080. time: 0
  2081. value: 0
  2082. inSlope: 0
  2083. outSlope: 0
  2084. tangentMode: 0
  2085. - serializedVersion: 2
  2086. time: 1
  2087. value: 0
  2088. inSlope: 0
  2089. outSlope: 0
  2090. tangentMode: 0
  2091. m_PreInfinity: 2
  2092. m_PostInfinity: 2
  2093. m_RotationOrder: 4
  2094. minCurve:
  2095. serializedVersion: 2
  2096. m_Curve:
  2097. - serializedVersion: 2
  2098. time: 0
  2099. value: 0
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 0
  2103. - serializedVersion: 2
  2104. time: 1
  2105. value: 0
  2106. inSlope: 0
  2107. outSlope: 0
  2108. tangentMode: 0
  2109. m_PreInfinity: 2
  2110. m_PostInfinity: 2
  2111. m_RotationOrder: 4
  2112. sizeAmount:
  2113. serializedVersion: 2
  2114. minMaxState: 0
  2115. scalar: 0
  2116. minScalar: 0
  2117. maxCurve:
  2118. serializedVersion: 2
  2119. m_Curve:
  2120. - serializedVersion: 2
  2121. time: 0
  2122. value: 0
  2123. inSlope: 0
  2124. outSlope: 0
  2125. tangentMode: 0
  2126. - serializedVersion: 2
  2127. time: 1
  2128. value: 0
  2129. inSlope: 0
  2130. outSlope: 0
  2131. tangentMode: 0
  2132. m_PreInfinity: 2
  2133. m_PostInfinity: 2
  2134. m_RotationOrder: 4
  2135. minCurve:
  2136. serializedVersion: 2
  2137. m_Curve:
  2138. - serializedVersion: 2
  2139. time: 0
  2140. value: 0
  2141. inSlope: 0
  2142. outSlope: 0
  2143. tangentMode: 0
  2144. - serializedVersion: 2
  2145. time: 1
  2146. value: 0
  2147. inSlope: 0
  2148. outSlope: 0
  2149. tangentMode: 0
  2150. m_PreInfinity: 2
  2151. m_PostInfinity: 2
  2152. m_RotationOrder: 4
  2153. SizeBySpeedModule:
  2154. enabled: 0
  2155. curve:
  2156. serializedVersion: 2
  2157. minMaxState: 1
  2158. scalar: 1
  2159. minScalar: 1
  2160. maxCurve:
  2161. serializedVersion: 2
  2162. m_Curve:
  2163. - serializedVersion: 2
  2164. time: 0
  2165. value: 0
  2166. inSlope: 0
  2167. outSlope: 1
  2168. tangentMode: 0
  2169. - serializedVersion: 2
  2170. time: 1
  2171. value: 1
  2172. inSlope: 1
  2173. outSlope: 0
  2174. tangentMode: 0
  2175. m_PreInfinity: 2
  2176. m_PostInfinity: 2
  2177. m_RotationOrder: 4
  2178. minCurve:
  2179. serializedVersion: 2
  2180. m_Curve:
  2181. - serializedVersion: 2
  2182. time: 0
  2183. value: 1
  2184. inSlope: 0
  2185. outSlope: 0
  2186. tangentMode: 0
  2187. - serializedVersion: 2
  2188. time: 1
  2189. value: 1
  2190. inSlope: 0
  2191. outSlope: 0
  2192. tangentMode: 0
  2193. m_PreInfinity: 2
  2194. m_PostInfinity: 2
  2195. m_RotationOrder: 4
  2196. y:
  2197. serializedVersion: 2
  2198. minMaxState: 1
  2199. scalar: 1
  2200. minScalar: 1
  2201. maxCurve:
  2202. serializedVersion: 2
  2203. m_Curve:
  2204. - serializedVersion: 2
  2205. time: 0
  2206. value: 0
  2207. inSlope: 0
  2208. outSlope: 1
  2209. tangentMode: 0
  2210. - serializedVersion: 2
  2211. time: 1
  2212. value: 1
  2213. inSlope: 1
  2214. outSlope: 0
  2215. tangentMode: 0
  2216. m_PreInfinity: 2
  2217. m_PostInfinity: 2
  2218. m_RotationOrder: 4
  2219. minCurve:
  2220. serializedVersion: 2
  2221. m_Curve:
  2222. - serializedVersion: 2
  2223. time: 0
  2224. value: 1
  2225. inSlope: 0
  2226. outSlope: 0
  2227. tangentMode: 0
  2228. - serializedVersion: 2
  2229. time: 1
  2230. value: 1
  2231. inSlope: 0
  2232. outSlope: 0
  2233. tangentMode: 0
  2234. m_PreInfinity: 2
  2235. m_PostInfinity: 2
  2236. m_RotationOrder: 4
  2237. z:
  2238. serializedVersion: 2
  2239. minMaxState: 1
  2240. scalar: 1
  2241. minScalar: 1
  2242. maxCurve:
  2243. serializedVersion: 2
  2244. m_Curve:
  2245. - serializedVersion: 2
  2246. time: 0
  2247. value: 0
  2248. inSlope: 0
  2249. outSlope: 1
  2250. tangentMode: 0
  2251. - serializedVersion: 2
  2252. time: 1
  2253. value: 1
  2254. inSlope: 1
  2255. outSlope: 0
  2256. tangentMode: 0
  2257. m_PreInfinity: 2
  2258. m_PostInfinity: 2
  2259. m_RotationOrder: 4
  2260. minCurve:
  2261. serializedVersion: 2
  2262. m_Curve:
  2263. - serializedVersion: 2
  2264. time: 0
  2265. value: 1
  2266. inSlope: 0
  2267. outSlope: 0
  2268. tangentMode: 0
  2269. - serializedVersion: 2
  2270. time: 1
  2271. value: 1
  2272. inSlope: 0
  2273. outSlope: 0
  2274. tangentMode: 0
  2275. m_PreInfinity: 2
  2276. m_PostInfinity: 2
  2277. m_RotationOrder: 4
  2278. range: {x: 0, y: 1}
  2279. separateAxes: 0
  2280. RotationBySpeedModule:
  2281. enabled: 0
  2282. x:
  2283. serializedVersion: 2
  2284. minMaxState: 0
  2285. scalar: 0
  2286. minScalar: 0
  2287. maxCurve:
  2288. serializedVersion: 2
  2289. m_Curve:
  2290. - serializedVersion: 2
  2291. time: 0
  2292. value: 0
  2293. inSlope: 0
  2294. outSlope: 0
  2295. tangentMode: 0
  2296. - serializedVersion: 2
  2297. time: 1
  2298. value: 0
  2299. inSlope: 0
  2300. outSlope: 0
  2301. tangentMode: 0
  2302. m_PreInfinity: 2
  2303. m_PostInfinity: 2
  2304. m_RotationOrder: 4
  2305. minCurve:
  2306. serializedVersion: 2
  2307. m_Curve:
  2308. - serializedVersion: 2
  2309. time: 0
  2310. value: 0
  2311. inSlope: 0
  2312. outSlope: 0
  2313. tangentMode: 0
  2314. - serializedVersion: 2
  2315. time: 1
  2316. value: 0
  2317. inSlope: 0
  2318. outSlope: 0
  2319. tangentMode: 0
  2320. m_PreInfinity: 2
  2321. m_PostInfinity: 2
  2322. m_RotationOrder: 4
  2323. y:
  2324. serializedVersion: 2
  2325. minMaxState: 0
  2326. scalar: 0
  2327. minScalar: 0
  2328. maxCurve:
  2329. serializedVersion: 2
  2330. m_Curve:
  2331. - serializedVersion: 2
  2332. time: 0
  2333. value: 0
  2334. inSlope: 0
  2335. outSlope: 0
  2336. tangentMode: 0
  2337. - serializedVersion: 2
  2338. time: 1
  2339. value: 0
  2340. inSlope: 0
  2341. outSlope: 0
  2342. tangentMode: 0
  2343. m_PreInfinity: 2
  2344. m_PostInfinity: 2
  2345. m_RotationOrder: 4
  2346. minCurve:
  2347. serializedVersion: 2
  2348. m_Curve:
  2349. - serializedVersion: 2
  2350. time: 0
  2351. value: 0
  2352. inSlope: 0
  2353. outSlope: 0
  2354. tangentMode: 0
  2355. - serializedVersion: 2
  2356. time: 1
  2357. value: 0
  2358. inSlope: 0
  2359. outSlope: 0
  2360. tangentMode: 0
  2361. m_PreInfinity: 2
  2362. m_PostInfinity: 2
  2363. m_RotationOrder: 4
  2364. curve:
  2365. serializedVersion: 2
  2366. minMaxState: 0
  2367. scalar: 0.7853982
  2368. minScalar: 0.7853982
  2369. maxCurve:
  2370. serializedVersion: 2
  2371. m_Curve:
  2372. - serializedVersion: 2
  2373. time: 0
  2374. value: 1
  2375. inSlope: 0
  2376. outSlope: 0
  2377. tangentMode: 0
  2378. - serializedVersion: 2
  2379. time: 1
  2380. value: 1
  2381. inSlope: 0
  2382. outSlope: 0
  2383. tangentMode: 0
  2384. m_PreInfinity: 2
  2385. m_PostInfinity: 2
  2386. m_RotationOrder: 4
  2387. minCurve:
  2388. serializedVersion: 2
  2389. m_Curve:
  2390. - serializedVersion: 2
  2391. time: 0
  2392. value: 1
  2393. inSlope: 0
  2394. outSlope: 0
  2395. tangentMode: 0
  2396. - serializedVersion: 2
  2397. time: 1
  2398. value: 1
  2399. inSlope: 0
  2400. outSlope: 0
  2401. tangentMode: 0
  2402. m_PreInfinity: 2
  2403. m_PostInfinity: 2
  2404. m_RotationOrder: 4
  2405. separateAxes: 0
  2406. range: {x: 0, y: 1}
  2407. ColorBySpeedModule:
  2408. enabled: 0
  2409. gradient:
  2410. serializedVersion: 2
  2411. minMaxState: 1
  2412. minColor: {r: 1, g: 1, b: 1, a: 1}
  2413. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2414. maxGradient:
  2415. serializedVersion: 2
  2416. key0: {r: 1, g: 1, b: 1, a: 1}
  2417. key1: {r: 1, g: 1, b: 1, a: 1}
  2418. key2: {r: 0, g: 0, b: 0, a: 0}
  2419. key3: {r: 0, g: 0, b: 0, a: 0}
  2420. key4: {r: 0, g: 0, b: 0, a: 0}
  2421. key5: {r: 0, g: 0, b: 0, a: 0}
  2422. key6: {r: 0, g: 0, b: 0, a: 0}
  2423. key7: {r: 0, g: 0, b: 0, a: 0}
  2424. ctime0: 0
  2425. ctime1: 65535
  2426. ctime2: 0
  2427. ctime3: 0
  2428. ctime4: 0
  2429. ctime5: 0
  2430. ctime6: 0
  2431. ctime7: 0
  2432. atime0: 0
  2433. atime1: 65535
  2434. atime2: 0
  2435. atime3: 0
  2436. atime4: 0
  2437. atime5: 0
  2438. atime6: 0
  2439. atime7: 0
  2440. m_Mode: 0
  2441. m_NumColorKeys: 2
  2442. m_NumAlphaKeys: 2
  2443. minGradient:
  2444. serializedVersion: 2
  2445. key0: {r: 1, g: 1, b: 1, a: 1}
  2446. key1: {r: 1, g: 1, b: 1, a: 1}
  2447. key2: {r: 0, g: 0, b: 0, a: 0}
  2448. key3: {r: 0, g: 0, b: 0, a: 0}
  2449. key4: {r: 0, g: 0, b: 0, a: 0}
  2450. key5: {r: 0, g: 0, b: 0, a: 0}
  2451. key6: {r: 0, g: 0, b: 0, a: 0}
  2452. key7: {r: 0, g: 0, b: 0, a: 0}
  2453. ctime0: 0
  2454. ctime1: 65535
  2455. ctime2: 0
  2456. ctime3: 0
  2457. ctime4: 0
  2458. ctime5: 0
  2459. ctime6: 0
  2460. ctime7: 0
  2461. atime0: 0
  2462. atime1: 65535
  2463. atime2: 0
  2464. atime3: 0
  2465. atime4: 0
  2466. atime5: 0
  2467. atime6: 0
  2468. atime7: 0
  2469. m_Mode: 0
  2470. m_NumColorKeys: 2
  2471. m_NumAlphaKeys: 2
  2472. range: {x: 0, y: 1}
  2473. CollisionModule:
  2474. enabled: 0
  2475. serializedVersion: 3
  2476. type: 0
  2477. collisionMode: 0
  2478. colliderForce: 0
  2479. multiplyColliderForceByParticleSize: 0
  2480. multiplyColliderForceByParticleSpeed: 0
  2481. multiplyColliderForceByCollisionAngle: 1
  2482. plane0: {fileID: 0}
  2483. plane1: {fileID: 0}
  2484. plane2: {fileID: 0}
  2485. plane3: {fileID: 0}
  2486. plane4: {fileID: 0}
  2487. plane5: {fileID: 0}
  2488. m_Dampen:
  2489. serializedVersion: 2
  2490. minMaxState: 0
  2491. scalar: 0
  2492. minScalar: 0
  2493. maxCurve:
  2494. serializedVersion: 2
  2495. m_Curve:
  2496. - serializedVersion: 2
  2497. time: 0
  2498. value: 0
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 0
  2502. - serializedVersion: 2
  2503. time: 1
  2504. value: 0
  2505. inSlope: 0
  2506. outSlope: 0
  2507. tangentMode: 0
  2508. m_PreInfinity: 2
  2509. m_PostInfinity: 2
  2510. m_RotationOrder: 4
  2511. minCurve:
  2512. serializedVersion: 2
  2513. m_Curve:
  2514. - serializedVersion: 2
  2515. time: 0
  2516. value: 0
  2517. inSlope: 0
  2518. outSlope: 0
  2519. tangentMode: 0
  2520. - serializedVersion: 2
  2521. time: 1
  2522. value: 0
  2523. inSlope: 0
  2524. outSlope: 0
  2525. tangentMode: 0
  2526. m_PreInfinity: 2
  2527. m_PostInfinity: 2
  2528. m_RotationOrder: 4
  2529. m_Bounce:
  2530. serializedVersion: 2
  2531. minMaxState: 0
  2532. scalar: 1
  2533. minScalar: 1
  2534. maxCurve:
  2535. serializedVersion: 2
  2536. m_Curve:
  2537. - serializedVersion: 2
  2538. time: 0
  2539. value: 1
  2540. inSlope: 0
  2541. outSlope: 0
  2542. tangentMode: 0
  2543. - serializedVersion: 2
  2544. time: 1
  2545. value: 1
  2546. inSlope: 0
  2547. outSlope: 0
  2548. tangentMode: 0
  2549. m_PreInfinity: 2
  2550. m_PostInfinity: 2
  2551. m_RotationOrder: 4
  2552. minCurve:
  2553. serializedVersion: 2
  2554. m_Curve:
  2555. - serializedVersion: 2
  2556. time: 0
  2557. value: 1
  2558. inSlope: 0
  2559. outSlope: 0
  2560. tangentMode: 0
  2561. - serializedVersion: 2
  2562. time: 1
  2563. value: 1
  2564. inSlope: 0
  2565. outSlope: 0
  2566. tangentMode: 0
  2567. m_PreInfinity: 2
  2568. m_PostInfinity: 2
  2569. m_RotationOrder: 4
  2570. m_EnergyLossOnCollision:
  2571. serializedVersion: 2
  2572. minMaxState: 0
  2573. scalar: 0
  2574. minScalar: 0
  2575. maxCurve:
  2576. serializedVersion: 2
  2577. m_Curve:
  2578. - serializedVersion: 2
  2579. time: 0
  2580. value: 0
  2581. inSlope: 0
  2582. outSlope: 0
  2583. tangentMode: 0
  2584. - serializedVersion: 2
  2585. time: 1
  2586. value: 0
  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. minKillSpeed: 0
  2612. maxKillSpeed: 10000
  2613. radiusScale: 1
  2614. collidesWith:
  2615. serializedVersion: 2
  2616. m_Bits: 4294967295
  2617. maxCollisionShapes: 256
  2618. quality: 0
  2619. voxelSize: 0.5
  2620. collisionMessages: 0
  2621. collidesWithDynamic: 1
  2622. interiorCollisions: 0
  2623. TriggerModule:
  2624. enabled: 0
  2625. collisionShape0: {fileID: 0}
  2626. collisionShape1: {fileID: 0}
  2627. collisionShape2: {fileID: 0}
  2628. collisionShape3: {fileID: 0}
  2629. collisionShape4: {fileID: 0}
  2630. collisionShape5: {fileID: 0}
  2631. inside: 1
  2632. outside: 0
  2633. enter: 0
  2634. exit: 0
  2635. radiusScale: 1
  2636. SubModule:
  2637. serializedVersion: 2
  2638. enabled: 0
  2639. subEmitters:
  2640. - serializedVersion: 2
  2641. emitter: {fileID: 0}
  2642. type: 0
  2643. properties: 0
  2644. LightsModule:
  2645. enabled: 0
  2646. ratio: 0
  2647. light: {fileID: 0}
  2648. randomDistribution: 1
  2649. color: 1
  2650. range: 1
  2651. intensity: 1
  2652. rangeCurve:
  2653. serializedVersion: 2
  2654. minMaxState: 0
  2655. scalar: 1
  2656. minScalar: 1
  2657. maxCurve:
  2658. serializedVersion: 2
  2659. m_Curve:
  2660. - serializedVersion: 2
  2661. time: 0
  2662. value: 1
  2663. inSlope: 0
  2664. outSlope: 0
  2665. tangentMode: 0
  2666. - serializedVersion: 2
  2667. time: 1
  2668. value: 1
  2669. inSlope: 0
  2670. outSlope: 0
  2671. tangentMode: 0
  2672. m_PreInfinity: 2
  2673. m_PostInfinity: 2
  2674. m_RotationOrder: 4
  2675. minCurve:
  2676. serializedVersion: 2
  2677. m_Curve:
  2678. - serializedVersion: 2
  2679. time: 0
  2680. value: 1
  2681. inSlope: 0
  2682. outSlope: 0
  2683. tangentMode: 0
  2684. - serializedVersion: 2
  2685. time: 1
  2686. value: 1
  2687. inSlope: 0
  2688. outSlope: 0
  2689. tangentMode: 0
  2690. m_PreInfinity: 2
  2691. m_PostInfinity: 2
  2692. m_RotationOrder: 4
  2693. intensityCurve:
  2694. serializedVersion: 2
  2695. minMaxState: 0
  2696. scalar: 1
  2697. minScalar: 1
  2698. maxCurve:
  2699. serializedVersion: 2
  2700. m_Curve:
  2701. - serializedVersion: 2
  2702. time: 0
  2703. value: 1
  2704. inSlope: 0
  2705. outSlope: 0
  2706. tangentMode: 0
  2707. - serializedVersion: 2
  2708. time: 1
  2709. value: 1
  2710. inSlope: 0
  2711. outSlope: 0
  2712. tangentMode: 0
  2713. m_PreInfinity: 2
  2714. m_PostInfinity: 2
  2715. m_RotationOrder: 4
  2716. minCurve:
  2717. serializedVersion: 2
  2718. m_Curve:
  2719. - serializedVersion: 2
  2720. time: 0
  2721. value: 1
  2722. inSlope: 0
  2723. outSlope: 0
  2724. tangentMode: 0
  2725. - serializedVersion: 2
  2726. time: 1
  2727. value: 1
  2728. inSlope: 0
  2729. outSlope: 0
  2730. tangentMode: 0
  2731. m_PreInfinity: 2
  2732. m_PostInfinity: 2
  2733. m_RotationOrder: 4
  2734. maxLights: 20
  2735. TrailModule:
  2736. enabled: 0
  2737. ratio: 1
  2738. lifetime:
  2739. serializedVersion: 2
  2740. minMaxState: 0
  2741. scalar: 1
  2742. minScalar: 1
  2743. maxCurve:
  2744. serializedVersion: 2
  2745. m_Curve:
  2746. - serializedVersion: 2
  2747. time: 0
  2748. value: 1
  2749. inSlope: 0
  2750. outSlope: 0
  2751. tangentMode: 0
  2752. - serializedVersion: 2
  2753. time: 1
  2754. value: 1
  2755. inSlope: 0
  2756. outSlope: 0
  2757. tangentMode: 0
  2758. m_PreInfinity: 2
  2759. m_PostInfinity: 2
  2760. m_RotationOrder: 4
  2761. minCurve:
  2762. serializedVersion: 2
  2763. m_Curve:
  2764. - serializedVersion: 2
  2765. time: 0
  2766. value: 1
  2767. inSlope: 0
  2768. outSlope: 0
  2769. tangentMode: 0
  2770. - serializedVersion: 2
  2771. time: 1
  2772. value: 1
  2773. inSlope: 0
  2774. outSlope: 0
  2775. tangentMode: 0
  2776. m_PreInfinity: 2
  2777. m_PostInfinity: 2
  2778. m_RotationOrder: 4
  2779. minVertexDistance: 0.2
  2780. textureMode: 0
  2781. worldSpace: 0
  2782. dieWithParticles: 1
  2783. sizeAffectsWidth: 1
  2784. sizeAffectsLifetime: 0
  2785. inheritParticleColor: 1
  2786. generateLightingData: 0
  2787. colorOverLifetime:
  2788. serializedVersion: 2
  2789. minMaxState: 0
  2790. minColor: {r: 1, g: 1, b: 1, a: 1}
  2791. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2792. maxGradient:
  2793. serializedVersion: 2
  2794. key0: {r: 1, g: 1, b: 1, a: 1}
  2795. key1: {r: 1, g: 1, b: 1, a: 1}
  2796. key2: {r: 0, g: 0, b: 0, a: 0}
  2797. key3: {r: 0, g: 0, b: 0, a: 0}
  2798. key4: {r: 0, g: 0, b: 0, a: 0}
  2799. key5: {r: 0, g: 0, b: 0, a: 0}
  2800. key6: {r: 0, g: 0, b: 0, a: 0}
  2801. key7: {r: 0, g: 0, b: 0, a: 0}
  2802. ctime0: 0
  2803. ctime1: 65535
  2804. ctime2: 0
  2805. ctime3: 0
  2806. ctime4: 0
  2807. ctime5: 0
  2808. ctime6: 0
  2809. ctime7: 0
  2810. atime0: 0
  2811. atime1: 65535
  2812. atime2: 0
  2813. atime3: 0
  2814. atime4: 0
  2815. atime5: 0
  2816. atime6: 0
  2817. atime7: 0
  2818. m_Mode: 0
  2819. m_NumColorKeys: 2
  2820. m_NumAlphaKeys: 2
  2821. minGradient:
  2822. serializedVersion: 2
  2823. key0: {r: 1, g: 1, b: 1, a: 1}
  2824. key1: {r: 1, g: 1, b: 1, a: 1}
  2825. key2: {r: 0, g: 0, b: 0, a: 0}
  2826. key3: {r: 0, g: 0, b: 0, a: 0}
  2827. key4: {r: 0, g: 0, b: 0, a: 0}
  2828. key5: {r: 0, g: 0, b: 0, a: 0}
  2829. key6: {r: 0, g: 0, b: 0, a: 0}
  2830. key7: {r: 0, g: 0, b: 0, a: 0}
  2831. ctime0: 0
  2832. ctime1: 65535
  2833. ctime2: 0
  2834. ctime3: 0
  2835. ctime4: 0
  2836. ctime5: 0
  2837. ctime6: 0
  2838. ctime7: 0
  2839. atime0: 0
  2840. atime1: 65535
  2841. atime2: 0
  2842. atime3: 0
  2843. atime4: 0
  2844. atime5: 0
  2845. atime6: 0
  2846. atime7: 0
  2847. m_Mode: 0
  2848. m_NumColorKeys: 2
  2849. m_NumAlphaKeys: 2
  2850. widthOverTrail:
  2851. serializedVersion: 2
  2852. minMaxState: 0
  2853. scalar: 1
  2854. minScalar: 1
  2855. maxCurve:
  2856. serializedVersion: 2
  2857. m_Curve:
  2858. - serializedVersion: 2
  2859. time: 0
  2860. value: 1
  2861. inSlope: 0
  2862. outSlope: 0
  2863. tangentMode: 0
  2864. - serializedVersion: 2
  2865. time: 1
  2866. value: 1
  2867. inSlope: 0
  2868. outSlope: 0
  2869. tangentMode: 0
  2870. m_PreInfinity: 2
  2871. m_PostInfinity: 2
  2872. m_RotationOrder: 4
  2873. minCurve:
  2874. serializedVersion: 2
  2875. m_Curve:
  2876. - serializedVersion: 2
  2877. time: 0
  2878. value: 1
  2879. inSlope: 0
  2880. outSlope: 0
  2881. tangentMode: 0
  2882. - serializedVersion: 2
  2883. time: 1
  2884. value: 1
  2885. inSlope: 0
  2886. outSlope: 0
  2887. tangentMode: 0
  2888. m_PreInfinity: 2
  2889. m_PostInfinity: 2
  2890. m_RotationOrder: 4
  2891. colorOverTrail:
  2892. serializedVersion: 2
  2893. minMaxState: 0
  2894. minColor: {r: 1, g: 1, b: 1, a: 1}
  2895. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2896. maxGradient:
  2897. serializedVersion: 2
  2898. key0: {r: 1, g: 1, b: 1, a: 1}
  2899. key1: {r: 1, g: 1, b: 1, a: 1}
  2900. key2: {r: 0, g: 0, b: 0, a: 0}
  2901. key3: {r: 0, g: 0, b: 0, a: 0}
  2902. key4: {r: 0, g: 0, b: 0, a: 0}
  2903. key5: {r: 0, g: 0, b: 0, a: 0}
  2904. key6: {r: 0, g: 0, b: 0, a: 0}
  2905. key7: {r: 0, g: 0, b: 0, a: 0}
  2906. ctime0: 0
  2907. ctime1: 65535
  2908. ctime2: 0
  2909. ctime3: 0
  2910. ctime4: 0
  2911. ctime5: 0
  2912. ctime6: 0
  2913. ctime7: 0
  2914. atime0: 0
  2915. atime1: 65535
  2916. atime2: 0
  2917. atime3: 0
  2918. atime4: 0
  2919. atime5: 0
  2920. atime6: 0
  2921. atime7: 0
  2922. m_Mode: 0
  2923. m_NumColorKeys: 2
  2924. m_NumAlphaKeys: 2
  2925. minGradient:
  2926. serializedVersion: 2
  2927. key0: {r: 1, g: 1, b: 1, a: 1}
  2928. key1: {r: 1, g: 1, b: 1, a: 1}
  2929. key2: {r: 0, g: 0, b: 0, a: 0}
  2930. key3: {r: 0, g: 0, b: 0, a: 0}
  2931. key4: {r: 0, g: 0, b: 0, a: 0}
  2932. key5: {r: 0, g: 0, b: 0, a: 0}
  2933. key6: {r: 0, g: 0, b: 0, a: 0}
  2934. key7: {r: 0, g: 0, b: 0, a: 0}
  2935. ctime0: 0
  2936. ctime1: 65535
  2937. ctime2: 0
  2938. ctime3: 0
  2939. ctime4: 0
  2940. ctime5: 0
  2941. ctime6: 0
  2942. ctime7: 0
  2943. atime0: 0
  2944. atime1: 65535
  2945. atime2: 0
  2946. atime3: 0
  2947. atime4: 0
  2948. atime5: 0
  2949. atime6: 0
  2950. atime7: 0
  2951. m_Mode: 0
  2952. m_NumColorKeys: 2
  2953. m_NumAlphaKeys: 2
  2954. CustomDataModule:
  2955. enabled: 0
  2956. mode0: 0
  2957. vectorComponentCount0: 4
  2958. color0:
  2959. serializedVersion: 2
  2960. minMaxState: 0
  2961. minColor: {r: 1, g: 1, b: 1, a: 1}
  2962. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2963. maxGradient:
  2964. serializedVersion: 2
  2965. key0: {r: 1, g: 1, b: 1, a: 1}
  2966. key1: {r: 1, g: 1, b: 1, a: 1}
  2967. key2: {r: 0, g: 0, b: 0, a: 0}
  2968. key3: {r: 0, g: 0, b: 0, a: 0}
  2969. key4: {r: 0, g: 0, b: 0, a: 0}
  2970. key5: {r: 0, g: 0, b: 0, a: 0}
  2971. key6: {r: 0, g: 0, b: 0, a: 0}
  2972. key7: {r: 0, g: 0, b: 0, a: 0}
  2973. ctime0: 0
  2974. ctime1: 65535
  2975. ctime2: 0
  2976. ctime3: 0
  2977. ctime4: 0
  2978. ctime5: 0
  2979. ctime6: 0
  2980. ctime7: 0
  2981. atime0: 0
  2982. atime1: 65535
  2983. atime2: 0
  2984. atime3: 0
  2985. atime4: 0
  2986. atime5: 0
  2987. atime6: 0
  2988. atime7: 0
  2989. m_Mode: 0
  2990. m_NumColorKeys: 2
  2991. m_NumAlphaKeys: 2
  2992. minGradient:
  2993. serializedVersion: 2
  2994. key0: {r: 1, g: 1, b: 1, a: 1}
  2995. key1: {r: 1, g: 1, b: 1, a: 1}
  2996. key2: {r: 0, g: 0, b: 0, a: 0}
  2997. key3: {r: 0, g: 0, b: 0, a: 0}
  2998. key4: {r: 0, g: 0, b: 0, a: 0}
  2999. key5: {r: 0, g: 0, b: 0, a: 0}
  3000. key6: {r: 0, g: 0, b: 0, a: 0}
  3001. key7: {r: 0, g: 0, b: 0, a: 0}
  3002. ctime0: 0
  3003. ctime1: 65535
  3004. ctime2: 0
  3005. ctime3: 0
  3006. ctime4: 0
  3007. ctime5: 0
  3008. ctime6: 0
  3009. ctime7: 0
  3010. atime0: 0
  3011. atime1: 65535
  3012. atime2: 0
  3013. atime3: 0
  3014. atime4: 0
  3015. atime5: 0
  3016. atime6: 0
  3017. atime7: 0
  3018. m_Mode: 0
  3019. m_NumColorKeys: 2
  3020. m_NumAlphaKeys: 2
  3021. colorLabel0: Color
  3022. vector0_0:
  3023. serializedVersion: 2
  3024. minMaxState: 0
  3025. scalar: 0
  3026. minScalar: 0
  3027. maxCurve:
  3028. serializedVersion: 2
  3029. m_Curve:
  3030. - serializedVersion: 2
  3031. time: 0
  3032. value: 0
  3033. inSlope: 0
  3034. outSlope: 0
  3035. tangentMode: 0
  3036. - serializedVersion: 2
  3037. time: 1
  3038. value: 0
  3039. inSlope: 0
  3040. outSlope: 0
  3041. tangentMode: 0
  3042. m_PreInfinity: 2
  3043. m_PostInfinity: 2
  3044. m_RotationOrder: 4
  3045. minCurve:
  3046. serializedVersion: 2
  3047. m_Curve:
  3048. - serializedVersion: 2
  3049. time: 0
  3050. value: 0
  3051. inSlope: 0
  3052. outSlope: 0
  3053. tangentMode: 0
  3054. - serializedVersion: 2
  3055. time: 1
  3056. value: 0
  3057. inSlope: 0
  3058. outSlope: 0
  3059. tangentMode: 0
  3060. m_PreInfinity: 2
  3061. m_PostInfinity: 2
  3062. m_RotationOrder: 4
  3063. vectorLabel0_0: X
  3064. vector0_1:
  3065. serializedVersion: 2
  3066. minMaxState: 0
  3067. scalar: 0
  3068. minScalar: 0
  3069. maxCurve:
  3070. serializedVersion: 2
  3071. m_Curve:
  3072. - serializedVersion: 2
  3073. time: 0
  3074. value: 0
  3075. inSlope: 0
  3076. outSlope: 0
  3077. tangentMode: 0
  3078. - serializedVersion: 2
  3079. time: 1
  3080. value: 0
  3081. inSlope: 0
  3082. outSlope: 0
  3083. tangentMode: 0
  3084. m_PreInfinity: 2
  3085. m_PostInfinity: 2
  3086. m_RotationOrder: 4
  3087. minCurve:
  3088. serializedVersion: 2
  3089. m_Curve:
  3090. - serializedVersion: 2
  3091. time: 0
  3092. value: 0
  3093. inSlope: 0
  3094. outSlope: 0
  3095. tangentMode: 0
  3096. - serializedVersion: 2
  3097. time: 1
  3098. value: 0
  3099. inSlope: 0
  3100. outSlope: 0
  3101. tangentMode: 0
  3102. m_PreInfinity: 2
  3103. m_PostInfinity: 2
  3104. m_RotationOrder: 4
  3105. vectorLabel0_1: Y
  3106. vector0_2:
  3107. serializedVersion: 2
  3108. minMaxState: 0
  3109. scalar: 0
  3110. minScalar: 0
  3111. maxCurve:
  3112. serializedVersion: 2
  3113. m_Curve:
  3114. - serializedVersion: 2
  3115. time: 0
  3116. value: 0
  3117. inSlope: 0
  3118. outSlope: 0
  3119. tangentMode: 0
  3120. - serializedVersion: 2
  3121. time: 1
  3122. value: 0
  3123. inSlope: 0
  3124. outSlope: 0
  3125. tangentMode: 0
  3126. m_PreInfinity: 2
  3127. m_PostInfinity: 2
  3128. m_RotationOrder: 4
  3129. minCurve:
  3130. serializedVersion: 2
  3131. m_Curve:
  3132. - serializedVersion: 2
  3133. time: 0
  3134. value: 0
  3135. inSlope: 0
  3136. outSlope: 0
  3137. tangentMode: 0
  3138. - serializedVersion: 2
  3139. time: 1
  3140. value: 0
  3141. inSlope: 0
  3142. outSlope: 0
  3143. tangentMode: 0
  3144. m_PreInfinity: 2
  3145. m_PostInfinity: 2
  3146. m_RotationOrder: 4
  3147. vectorLabel0_2: Z
  3148. vector0_3:
  3149. serializedVersion: 2
  3150. minMaxState: 0
  3151. scalar: 0
  3152. minScalar: 0
  3153. maxCurve:
  3154. serializedVersion: 2
  3155. m_Curve:
  3156. - serializedVersion: 2
  3157. time: 0
  3158. value: 0
  3159. inSlope: 0
  3160. outSlope: 0
  3161. tangentMode: 0
  3162. - serializedVersion: 2
  3163. time: 1
  3164. value: 0
  3165. inSlope: 0
  3166. outSlope: 0
  3167. tangentMode: 0
  3168. m_PreInfinity: 2
  3169. m_PostInfinity: 2
  3170. m_RotationOrder: 4
  3171. minCurve:
  3172. serializedVersion: 2
  3173. m_Curve:
  3174. - serializedVersion: 2
  3175. time: 0
  3176. value: 0
  3177. inSlope: 0
  3178. outSlope: 0
  3179. tangentMode: 0
  3180. - serializedVersion: 2
  3181. time: 1
  3182. value: 0
  3183. inSlope: 0
  3184. outSlope: 0
  3185. tangentMode: 0
  3186. m_PreInfinity: 2
  3187. m_PostInfinity: 2
  3188. m_RotationOrder: 4
  3189. vectorLabel0_3: W
  3190. mode1: 0
  3191. vectorComponentCount1: 4
  3192. color1:
  3193. serializedVersion: 2
  3194. minMaxState: 0
  3195. minColor: {r: 1, g: 1, b: 1, a: 1}
  3196. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3197. maxGradient:
  3198. serializedVersion: 2
  3199. key0: {r: 1, g: 1, b: 1, a: 1}
  3200. key1: {r: 1, g: 1, b: 1, a: 1}
  3201. key2: {r: 0, g: 0, b: 0, a: 0}
  3202. key3: {r: 0, g: 0, b: 0, a: 0}
  3203. key4: {r: 0, g: 0, b: 0, a: 0}
  3204. key5: {r: 0, g: 0, b: 0, a: 0}
  3205. key6: {r: 0, g: 0, b: 0, a: 0}
  3206. key7: {r: 0, g: 0, b: 0, a: 0}
  3207. ctime0: 0
  3208. ctime1: 65535
  3209. ctime2: 0
  3210. ctime3: 0
  3211. ctime4: 0
  3212. ctime5: 0
  3213. ctime6: 0
  3214. ctime7: 0
  3215. atime0: 0
  3216. atime1: 65535
  3217. atime2: 0
  3218. atime3: 0
  3219. atime4: 0
  3220. atime5: 0
  3221. atime6: 0
  3222. atime7: 0
  3223. m_Mode: 0
  3224. m_NumColorKeys: 2
  3225. m_NumAlphaKeys: 2
  3226. minGradient:
  3227. serializedVersion: 2
  3228. key0: {r: 1, g: 1, b: 1, a: 1}
  3229. key1: {r: 1, g: 1, b: 1, a: 1}
  3230. key2: {r: 0, g: 0, b: 0, a: 0}
  3231. key3: {r: 0, g: 0, b: 0, a: 0}
  3232. key4: {r: 0, g: 0, b: 0, a: 0}
  3233. key5: {r: 0, g: 0, b: 0, a: 0}
  3234. key6: {r: 0, g: 0, b: 0, a: 0}
  3235. key7: {r: 0, g: 0, b: 0, a: 0}
  3236. ctime0: 0
  3237. ctime1: 65535
  3238. ctime2: 0
  3239. ctime3: 0
  3240. ctime4: 0
  3241. ctime5: 0
  3242. ctime6: 0
  3243. ctime7: 0
  3244. atime0: 0
  3245. atime1: 65535
  3246. atime2: 0
  3247. atime3: 0
  3248. atime4: 0
  3249. atime5: 0
  3250. atime6: 0
  3251. atime7: 0
  3252. m_Mode: 0
  3253. m_NumColorKeys: 2
  3254. m_NumAlphaKeys: 2
  3255. colorLabel1: Color
  3256. vector1_0:
  3257. serializedVersion: 2
  3258. minMaxState: 0
  3259. scalar: 0
  3260. minScalar: 0
  3261. maxCurve:
  3262. serializedVersion: 2
  3263. m_Curve:
  3264. - serializedVersion: 2
  3265. time: 0
  3266. value: 0
  3267. inSlope: 0
  3268. outSlope: 0
  3269. tangentMode: 0
  3270. - serializedVersion: 2
  3271. time: 1
  3272. value: 0
  3273. inSlope: 0
  3274. outSlope: 0
  3275. tangentMode: 0
  3276. m_PreInfinity: 2
  3277. m_PostInfinity: 2
  3278. m_RotationOrder: 4
  3279. minCurve:
  3280. serializedVersion: 2
  3281. m_Curve:
  3282. - serializedVersion: 2
  3283. time: 0
  3284. value: 0
  3285. inSlope: 0
  3286. outSlope: 0
  3287. tangentMode: 0
  3288. - serializedVersion: 2
  3289. time: 1
  3290. value: 0
  3291. inSlope: 0
  3292. outSlope: 0
  3293. tangentMode: 0
  3294. m_PreInfinity: 2
  3295. m_PostInfinity: 2
  3296. m_RotationOrder: 4
  3297. vectorLabel1_0: X
  3298. vector1_1:
  3299. serializedVersion: 2
  3300. minMaxState: 0
  3301. scalar: 0
  3302. minScalar: 0
  3303. maxCurve:
  3304. serializedVersion: 2
  3305. m_Curve:
  3306. - serializedVersion: 2
  3307. time: 0
  3308. value: 0
  3309. inSlope: 0
  3310. outSlope: 0
  3311. tangentMode: 0
  3312. - serializedVersion: 2
  3313. time: 1
  3314. value: 0
  3315. inSlope: 0
  3316. outSlope: 0
  3317. tangentMode: 0
  3318. m_PreInfinity: 2
  3319. m_PostInfinity: 2
  3320. m_RotationOrder: 4
  3321. minCurve:
  3322. serializedVersion: 2
  3323. m_Curve:
  3324. - serializedVersion: 2
  3325. time: 0
  3326. value: 0
  3327. inSlope: 0
  3328. outSlope: 0
  3329. tangentMode: 0
  3330. - serializedVersion: 2
  3331. time: 1
  3332. value: 0
  3333. inSlope: 0
  3334. outSlope: 0
  3335. tangentMode: 0
  3336. m_PreInfinity: 2
  3337. m_PostInfinity: 2
  3338. m_RotationOrder: 4
  3339. vectorLabel1_1: Y
  3340. vector1_2:
  3341. serializedVersion: 2
  3342. minMaxState: 0
  3343. scalar: 0
  3344. minScalar: 0
  3345. maxCurve:
  3346. serializedVersion: 2
  3347. m_Curve:
  3348. - serializedVersion: 2
  3349. time: 0
  3350. value: 0
  3351. inSlope: 0
  3352. outSlope: 0
  3353. tangentMode: 0
  3354. - serializedVersion: 2
  3355. time: 1
  3356. value: 0
  3357. inSlope: 0
  3358. outSlope: 0
  3359. tangentMode: 0
  3360. m_PreInfinity: 2
  3361. m_PostInfinity: 2
  3362. m_RotationOrder: 4
  3363. minCurve:
  3364. serializedVersion: 2
  3365. m_Curve:
  3366. - serializedVersion: 2
  3367. time: 0
  3368. value: 0
  3369. inSlope: 0
  3370. outSlope: 0
  3371. tangentMode: 0
  3372. - serializedVersion: 2
  3373. time: 1
  3374. value: 0
  3375. inSlope: 0
  3376. outSlope: 0
  3377. tangentMode: 0
  3378. m_PreInfinity: 2
  3379. m_PostInfinity: 2
  3380. m_RotationOrder: 4
  3381. vectorLabel1_2: Z
  3382. vector1_3:
  3383. serializedVersion: 2
  3384. minMaxState: 0
  3385. scalar: 0
  3386. minScalar: 0
  3387. maxCurve:
  3388. serializedVersion: 2
  3389. m_Curve:
  3390. - serializedVersion: 2
  3391. time: 0
  3392. value: 0
  3393. inSlope: 0
  3394. outSlope: 0
  3395. tangentMode: 0
  3396. - serializedVersion: 2
  3397. time: 1
  3398. value: 0
  3399. inSlope: 0
  3400. outSlope: 0
  3401. tangentMode: 0
  3402. m_PreInfinity: 2
  3403. m_PostInfinity: 2
  3404. m_RotationOrder: 4
  3405. minCurve:
  3406. serializedVersion: 2
  3407. m_Curve:
  3408. - serializedVersion: 2
  3409. time: 0
  3410. value: 0
  3411. inSlope: 0
  3412. outSlope: 0
  3413. tangentMode: 0
  3414. - serializedVersion: 2
  3415. time: 1
  3416. value: 0
  3417. inSlope: 0
  3418. outSlope: 0
  3419. tangentMode: 0
  3420. m_PreInfinity: 2
  3421. m_PostInfinity: 2
  3422. m_RotationOrder: 4
  3423. vectorLabel1_3: W
  3424. --- !u!199 &199198863465783300
  3425. ParticleSystemRenderer:
  3426. serializedVersion: 4
  3427. m_ObjectHideFlags: 1
  3428. m_PrefabParentObject: {fileID: 0}
  3429. m_PrefabInternal: {fileID: 100100000}
  3430. m_GameObject: {fileID: 1945864579541184}
  3431. m_Enabled: 1
  3432. m_CastShadows: 0
  3433. m_ReceiveShadows: 0
  3434. m_DynamicOccludee: 1
  3435. m_MotionVectors: 1
  3436. m_LightProbeUsage: 0
  3437. m_ReflectionProbeUsage: 0
  3438. m_Materials:
  3439. - {fileID: 2100000, guid: 43e9d91ac8fd6f84f88ed89971c20f79, type: 2}
  3440. - {fileID: 0}
  3441. m_StaticBatchInfo:
  3442. firstSubMesh: 0
  3443. subMeshCount: 0
  3444. m_StaticBatchRoot: {fileID: 0}
  3445. m_ProbeAnchor: {fileID: 0}
  3446. m_LightProbeVolumeOverride: {fileID: 0}
  3447. m_ScaleInLightmap: 1
  3448. m_PreserveUVs: 0
  3449. m_IgnoreNormalsForChartDetection: 0
  3450. m_ImportantGI: 0
  3451. m_StitchLightmapSeams: 0
  3452. m_SelectedEditorRenderState: 0
  3453. m_MinimumChartSize: 4
  3454. m_AutoUVMaxDistance: 0.5
  3455. m_AutoUVMaxAngle: 89
  3456. m_LightmapParameters: {fileID: 0}
  3457. m_SortingLayerID: 0
  3458. m_SortingLayer: 0
  3459. m_SortingOrder: 0
  3460. m_RenderMode: 0
  3461. m_SortMode: 0
  3462. m_MinParticleSize: 0
  3463. m_MaxParticleSize: 0.5
  3464. m_CameraVelocityScale: 0
  3465. m_VelocityScale: 0
  3466. m_LengthScale: 2
  3467. m_SortingFudge: 0
  3468. m_NormalDirection: 1
  3469. m_RenderAlignment: 0
  3470. m_Pivot: {x: 0, y: 0, z: 0}
  3471. m_UseCustomVertexStreams: 0
  3472. m_VertexStreams: 00010304
  3473. m_Mesh: {fileID: 0}
  3474. m_Mesh1: {fileID: 0}
  3475. m_Mesh2: {fileID: 0}
  3476. m_Mesh3: {fileID: 0}
  3477. m_MaskInteraction: 0