FX_Cartoony_Sprint_01.prefab 77 KB

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