FogLivelyWhite.prefab 77 KB

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