FX_Slash_01.prefab 76 KB

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