FX_Smoke_Black_Large_01.prefab 76 KB

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