FX_Dust_Blowing_Soft_01.prefab 74 KB

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