FX_Cartoony_Footstep_01.prefab 78 KB

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