FX_Sparkle_Orbit_01.prefab 78 KB

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