FX_BloodSplat_Small_01.prefab 75 KB

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