FX_Smoke_White_Large_01.prefab 76 KB

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