FX_Shell_Ejection_Small_01.prefab 75 KB

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