FX_Money_Notes_Burst_01.prefab 77 KB

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