FX_MagicBug_Trails_01.prefab 77 KB

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