FX_Dust_Big_01.prefab 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333
  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: 1762423841713276}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1762423841713276
  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: 4866601383873978}
  22. - component: {fileID: 198110779176885192}
  23. - component: {fileID: 199154704347157076}
  24. m_Layer: 0
  25. m_Name: FX_Dust_Big_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 &4866601383873978
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1762423841713276}
  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 &198110779176885192
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1762423841713276}
  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: -784383505
  104. InitialModule:
  105. serializedVersion: 3
  106. enabled: 1
  107. startLifetime:
  108. serializedVersion: 2
  109. minMaxState: 3
  110. scalar: 10
  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: 0
  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: 0.375, g: 0.32388437, b: 0.2591912, 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: 0.15
  256. minScalar: 0.05
  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.2
  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: 3
  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: 3
  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: 3
  424. scalar: 6.283185
  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
  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: 30, y: 10, z: 30}
  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: 3
  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: 15
  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: 1
  710. curve:
  711. serializedVersion: 2
  712. minMaxState: 1
  713. scalar: 0.5
  714. minScalar: 1
  715. maxCurve:
  716. serializedVersion: 2
  717. m_Curve:
  718. - serializedVersion: 2
  719. time: 0
  720. value: 0
  721. inSlope: 0
  722. outSlope: 0
  723. tangentMode: 0
  724. - serializedVersion: 2
  725. time: 0.20180723
  726. value: 1
  727. inSlope: 0
  728. outSlope: 0
  729. tangentMode: 0
  730. - serializedVersion: 2
  731. time: 0.80715734
  732. value: 1
  733. inSlope: -0.14029981
  734. outSlope: -0.14029981
  735. tangentMode: 0
  736. - serializedVersion: 2
  737. time: 0.99697876
  738. value: 0
  739. inSlope: 0
  740. outSlope: 0
  741. tangentMode: 0
  742. m_PreInfinity: 2
  743. m_PostInfinity: 2
  744. m_RotationOrder: 0
  745. minCurve:
  746. serializedVersion: 2
  747. m_Curve:
  748. - serializedVersion: 2
  749. time: 0
  750. value: 0
  751. inSlope: 0
  752. outSlope: 0
  753. tangentMode: 0
  754. - serializedVersion: 2
  755. time: 1
  756. value: 0
  757. inSlope: 0
  758. outSlope: 0
  759. tangentMode: 0
  760. m_PreInfinity: 2
  761. m_PostInfinity: 2
  762. m_RotationOrder: 4
  763. y:
  764. serializedVersion: 2
  765. minMaxState: 1
  766. scalar: 1
  767. minScalar: 1
  768. maxCurve:
  769. serializedVersion: 2
  770. m_Curve:
  771. - serializedVersion: 2
  772. time: 0
  773. value: 1
  774. inSlope: 0
  775. outSlope: 0
  776. tangentMode: 0
  777. - serializedVersion: 2
  778. time: 1
  779. value: 1
  780. inSlope: 0
  781. outSlope: 0
  782. tangentMode: 0
  783. m_PreInfinity: 2
  784. m_PostInfinity: 2
  785. m_RotationOrder: 4
  786. minCurve:
  787. serializedVersion: 2
  788. m_Curve:
  789. - serializedVersion: 2
  790. time: 0
  791. value: 0
  792. inSlope: 0
  793. outSlope: 0
  794. tangentMode: 0
  795. - serializedVersion: 2
  796. time: 1
  797. value: 0
  798. inSlope: 0
  799. outSlope: 0
  800. tangentMode: 0
  801. m_PreInfinity: 2
  802. m_PostInfinity: 2
  803. m_RotationOrder: 4
  804. z:
  805. serializedVersion: 2
  806. minMaxState: 1
  807. scalar: 1
  808. minScalar: 1
  809. maxCurve:
  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. minCurve:
  828. serializedVersion: 2
  829. m_Curve:
  830. - serializedVersion: 2
  831. time: 0
  832. value: 0
  833. inSlope: 0
  834. outSlope: 0
  835. tangentMode: 0
  836. - serializedVersion: 2
  837. time: 1
  838. value: 0
  839. inSlope: 0
  840. outSlope: 0
  841. tangentMode: 0
  842. m_PreInfinity: 2
  843. m_PostInfinity: 2
  844. m_RotationOrder: 4
  845. separateAxes: 0
  846. RotationModule:
  847. enabled: 0
  848. x:
  849. serializedVersion: 2
  850. minMaxState: 0
  851. scalar: 0
  852. minScalar: 0
  853. maxCurve:
  854. serializedVersion: 2
  855. m_Curve:
  856. - serializedVersion: 2
  857. time: 0
  858. value: 1
  859. inSlope: 0
  860. outSlope: 0
  861. tangentMode: 0
  862. - serializedVersion: 2
  863. time: 1
  864. value: 1
  865. inSlope: 0
  866. outSlope: 0
  867. tangentMode: 0
  868. m_PreInfinity: 2
  869. m_PostInfinity: 2
  870. m_RotationOrder: 4
  871. minCurve:
  872. serializedVersion: 2
  873. m_Curve:
  874. - serializedVersion: 2
  875. time: 0
  876. value: 0
  877. inSlope: 0
  878. outSlope: 0
  879. tangentMode: 0
  880. - serializedVersion: 2
  881. time: 1
  882. value: 0
  883. inSlope: 0
  884. outSlope: 0
  885. tangentMode: 0
  886. m_PreInfinity: 2
  887. m_PostInfinity: 2
  888. m_RotationOrder: 4
  889. y:
  890. serializedVersion: 2
  891. minMaxState: 0
  892. scalar: 0
  893. minScalar: 0
  894. maxCurve:
  895. serializedVersion: 2
  896. m_Curve:
  897. - serializedVersion: 2
  898. time: 0
  899. value: 1
  900. inSlope: 0
  901. outSlope: 0
  902. tangentMode: 0
  903. - serializedVersion: 2
  904. time: 1
  905. value: 1
  906. inSlope: 0
  907. outSlope: 0
  908. tangentMode: 0
  909. m_PreInfinity: 2
  910. m_PostInfinity: 2
  911. m_RotationOrder: 4
  912. minCurve:
  913. serializedVersion: 2
  914. m_Curve:
  915. - serializedVersion: 2
  916. time: 0
  917. value: 0
  918. inSlope: 0
  919. outSlope: 0
  920. tangentMode: 0
  921. - serializedVersion: 2
  922. time: 1
  923. value: 0
  924. inSlope: 0
  925. outSlope: 0
  926. tangentMode: 0
  927. m_PreInfinity: 2
  928. m_PostInfinity: 2
  929. m_RotationOrder: 4
  930. curve:
  931. serializedVersion: 2
  932. minMaxState: 0
  933. scalar: 0.7853982
  934. minScalar: 0.7853982
  935. maxCurve:
  936. serializedVersion: 2
  937. m_Curve:
  938. - serializedVersion: 2
  939. time: 0
  940. value: 1
  941. inSlope: 0
  942. outSlope: 0
  943. tangentMode: 0
  944. - serializedVersion: 2
  945. time: 1
  946. value: 1
  947. inSlope: 0
  948. outSlope: 0
  949. tangentMode: 0
  950. m_PreInfinity: 2
  951. m_PostInfinity: 2
  952. m_RotationOrder: 4
  953. minCurve:
  954. serializedVersion: 2
  955. m_Curve:
  956. - serializedVersion: 2
  957. time: 0
  958. value: 0
  959. inSlope: 0
  960. outSlope: 0
  961. tangentMode: 0
  962. - serializedVersion: 2
  963. time: 1
  964. value: 0
  965. inSlope: 0
  966. outSlope: 0
  967. tangentMode: 0
  968. m_PreInfinity: 2
  969. m_PostInfinity: 2
  970. m_RotationOrder: 4
  971. separateAxes: 0
  972. ColorModule:
  973. enabled: 1
  974. gradient:
  975. serializedVersion: 2
  976. minMaxState: 1
  977. minColor: {r: 1, g: 1, b: 1, a: 1}
  978. maxColor: {r: 1, g: 1, b: 1, a: 1}
  979. maxGradient:
  980. serializedVersion: 2
  981. key0: {r: 1, g: 1, b: 1, a: 0}
  982. key1: {r: 1, g: 1, b: 1, a: 0.49535492}
  983. key2: {r: 0, g: 0, b: 0, a: 1}
  984. key3: {r: 0, g: 0, b: 0, a: 0.6205574}
  985. key4: {r: 0, g: 0, b: 0, a: 0}
  986. key5: {r: 0, g: 0, b: 0, a: 0}
  987. key6: {r: 0, g: 0, b: 0, a: 0}
  988. key7: {r: 0, g: 0, b: 0, a: 0}
  989. ctime0: 0
  990. ctime1: 65535
  991. ctime2: 0
  992. ctime3: 0
  993. ctime4: 0
  994. ctime5: 0
  995. ctime6: 0
  996. ctime7: 0
  997. atime0: 0
  998. atime1: 6554
  999. atime2: 33853
  1000. atime3: 57825
  1001. atime4: 65535
  1002. atime5: 0
  1003. atime6: 0
  1004. atime7: 0
  1005. m_Mode: 0
  1006. m_NumColorKeys: 2
  1007. m_NumAlphaKeys: 5
  1008. minGradient:
  1009. serializedVersion: 2
  1010. key0: {r: 1, g: 1, b: 1, a: 1}
  1011. key1: {r: 1, g: 1, b: 1, a: 1}
  1012. key2: {r: 0, g: 0, b: 0, a: 0}
  1013. key3: {r: 0, g: 0, b: 0, a: 0}
  1014. key4: {r: 0, g: 0, b: 0, a: 0}
  1015. key5: {r: 0, g: 0, b: 0, a: 0}
  1016. key6: {r: 0, g: 0, b: 0, a: 0}
  1017. key7: {r: 0, g: 0, b: 0, a: 0}
  1018. ctime0: 0
  1019. ctime1: 65535
  1020. ctime2: 0
  1021. ctime3: 0
  1022. ctime4: 0
  1023. ctime5: 0
  1024. ctime6: 0
  1025. ctime7: 0
  1026. atime0: 0
  1027. atime1: 65535
  1028. atime2: 0
  1029. atime3: 0
  1030. atime4: 0
  1031. atime5: 0
  1032. atime6: 0
  1033. atime7: 0
  1034. m_Mode: 0
  1035. m_NumColorKeys: 2
  1036. m_NumAlphaKeys: 2
  1037. UVModule:
  1038. enabled: 0
  1039. mode: 0
  1040. frameOverTime:
  1041. serializedVersion: 2
  1042. minMaxState: 1
  1043. scalar: 0.9999
  1044. minScalar: 0.9999
  1045. maxCurve:
  1046. serializedVersion: 2
  1047. m_Curve:
  1048. - serializedVersion: 2
  1049. time: 0
  1050. value: 0
  1051. inSlope: 0
  1052. outSlope: 1
  1053. tangentMode: 0
  1054. - serializedVersion: 2
  1055. time: 1
  1056. value: 1
  1057. inSlope: 1
  1058. outSlope: 0
  1059. tangentMode: 0
  1060. m_PreInfinity: 2
  1061. m_PostInfinity: 2
  1062. m_RotationOrder: 4
  1063. minCurve:
  1064. serializedVersion: 2
  1065. m_Curve:
  1066. - serializedVersion: 2
  1067. time: 0
  1068. value: 0
  1069. inSlope: 0
  1070. outSlope: 1
  1071. tangentMode: 0
  1072. - serializedVersion: 2
  1073. time: 1
  1074. value: 1
  1075. inSlope: 1
  1076. outSlope: 0
  1077. tangentMode: 0
  1078. m_PreInfinity: 2
  1079. m_PostInfinity: 2
  1080. m_RotationOrder: 4
  1081. startFrame:
  1082. serializedVersion: 2
  1083. minMaxState: 0
  1084. scalar: 0
  1085. minScalar: 0
  1086. maxCurve:
  1087. serializedVersion: 2
  1088. m_Curve:
  1089. - serializedVersion: 2
  1090. time: 0
  1091. value: 1
  1092. inSlope: 0
  1093. outSlope: 0
  1094. tangentMode: 0
  1095. - serializedVersion: 2
  1096. time: 1
  1097. value: 1
  1098. inSlope: 0
  1099. outSlope: 0
  1100. tangentMode: 0
  1101. m_PreInfinity: 2
  1102. m_PostInfinity: 2
  1103. m_RotationOrder: 4
  1104. minCurve:
  1105. serializedVersion: 2
  1106. m_Curve:
  1107. - serializedVersion: 2
  1108. time: 0
  1109. value: 0
  1110. inSlope: 0
  1111. outSlope: 0
  1112. tangentMode: 0
  1113. - serializedVersion: 2
  1114. time: 1
  1115. value: 0
  1116. inSlope: 0
  1117. outSlope: 0
  1118. tangentMode: 0
  1119. m_PreInfinity: 2
  1120. m_PostInfinity: 2
  1121. m_RotationOrder: 4
  1122. tilesX: 1
  1123. tilesY: 1
  1124. animationType: 0
  1125. rowIndex: 0
  1126. cycles: 1
  1127. uvChannelMask: -1
  1128. flipU: 0
  1129. flipV: 0
  1130. randomRow: 1
  1131. sprites:
  1132. - sprite: {fileID: 0}
  1133. VelocityModule:
  1134. enabled: 0
  1135. x:
  1136. serializedVersion: 2
  1137. minMaxState: 0
  1138. scalar: 0
  1139. minScalar: 0
  1140. maxCurve:
  1141. serializedVersion: 2
  1142. m_Curve:
  1143. - serializedVersion: 2
  1144. time: 0
  1145. value: 1
  1146. inSlope: 0
  1147. outSlope: 0
  1148. tangentMode: 0
  1149. - serializedVersion: 2
  1150. time: 1
  1151. value: 1
  1152. inSlope: 0
  1153. outSlope: 0
  1154. tangentMode: 0
  1155. m_PreInfinity: 2
  1156. m_PostInfinity: 2
  1157. m_RotationOrder: 4
  1158. minCurve:
  1159. serializedVersion: 2
  1160. m_Curve:
  1161. - serializedVersion: 2
  1162. time: 0
  1163. value: 0
  1164. inSlope: 0
  1165. outSlope: 0
  1166. tangentMode: 0
  1167. - serializedVersion: 2
  1168. time: 1
  1169. value: 0
  1170. inSlope: 0
  1171. outSlope: 0
  1172. tangentMode: 0
  1173. m_PreInfinity: 2
  1174. m_PostInfinity: 2
  1175. m_RotationOrder: 4
  1176. y:
  1177. serializedVersion: 2
  1178. minMaxState: 0
  1179. scalar: 0
  1180. minScalar: 0
  1181. maxCurve:
  1182. serializedVersion: 2
  1183. m_Curve:
  1184. - serializedVersion: 2
  1185. time: 0
  1186. value: 1
  1187. inSlope: 0
  1188. outSlope: 0
  1189. tangentMode: 0
  1190. - serializedVersion: 2
  1191. time: 1
  1192. value: 1
  1193. inSlope: 0
  1194. outSlope: 0
  1195. tangentMode: 0
  1196. m_PreInfinity: 2
  1197. m_PostInfinity: 2
  1198. m_RotationOrder: 4
  1199. minCurve:
  1200. serializedVersion: 2
  1201. m_Curve:
  1202. - serializedVersion: 2
  1203. time: 0
  1204. value: 0
  1205. inSlope: 0
  1206. outSlope: 0
  1207. tangentMode: 0
  1208. - serializedVersion: 2
  1209. time: 1
  1210. value: 0
  1211. inSlope: 0
  1212. outSlope: 0
  1213. tangentMode: 0
  1214. m_PreInfinity: 2
  1215. m_PostInfinity: 2
  1216. m_RotationOrder: 4
  1217. z:
  1218. serializedVersion: 2
  1219. minMaxState: 0
  1220. scalar: 0
  1221. minScalar: 0
  1222. maxCurve:
  1223. serializedVersion: 2
  1224. m_Curve:
  1225. - serializedVersion: 2
  1226. time: 0
  1227. value: 1
  1228. inSlope: 0
  1229. outSlope: 0
  1230. tangentMode: 0
  1231. - serializedVersion: 2
  1232. time: 1
  1233. value: 1
  1234. inSlope: 0
  1235. outSlope: 0
  1236. tangentMode: 0
  1237. m_PreInfinity: 2
  1238. m_PostInfinity: 2
  1239. m_RotationOrder: 4
  1240. minCurve:
  1241. serializedVersion: 2
  1242. m_Curve:
  1243. - serializedVersion: 2
  1244. time: 0
  1245. value: 0
  1246. inSlope: 0
  1247. outSlope: 0
  1248. tangentMode: 0
  1249. - serializedVersion: 2
  1250. time: 1
  1251. value: 0
  1252. inSlope: 0
  1253. outSlope: 0
  1254. tangentMode: 0
  1255. m_PreInfinity: 2
  1256. m_PostInfinity: 2
  1257. m_RotationOrder: 4
  1258. inWorldSpace: 0
  1259. InheritVelocityModule:
  1260. enabled: 0
  1261. m_Mode: 0
  1262. m_Curve:
  1263. serializedVersion: 2
  1264. minMaxState: 0
  1265. scalar: 0
  1266. minScalar: 0
  1267. maxCurve:
  1268. serializedVersion: 2
  1269. m_Curve:
  1270. - serializedVersion: 2
  1271. time: 0
  1272. value: 1
  1273. inSlope: 0
  1274. outSlope: 0
  1275. tangentMode: 0
  1276. - serializedVersion: 2
  1277. time: 1
  1278. value: 1
  1279. inSlope: 0
  1280. outSlope: 0
  1281. tangentMode: 0
  1282. m_PreInfinity: 2
  1283. m_PostInfinity: 2
  1284. m_RotationOrder: 4
  1285. minCurve:
  1286. serializedVersion: 2
  1287. m_Curve:
  1288. - serializedVersion: 2
  1289. time: 0
  1290. value: 0
  1291. inSlope: 0
  1292. outSlope: 0
  1293. tangentMode: 0
  1294. - serializedVersion: 2
  1295. time: 1
  1296. value: 0
  1297. inSlope: 0
  1298. outSlope: 0
  1299. tangentMode: 0
  1300. m_PreInfinity: 2
  1301. m_PostInfinity: 2
  1302. m_RotationOrder: 4
  1303. ForceModule:
  1304. enabled: 0
  1305. x:
  1306. serializedVersion: 2
  1307. minMaxState: 0
  1308. scalar: 0
  1309. minScalar: 0
  1310. maxCurve:
  1311. serializedVersion: 2
  1312. m_Curve:
  1313. - serializedVersion: 2
  1314. time: 0
  1315. value: 1
  1316. inSlope: 0
  1317. outSlope: 0
  1318. tangentMode: 0
  1319. - serializedVersion: 2
  1320. time: 1
  1321. value: 1
  1322. inSlope: 0
  1323. outSlope: 0
  1324. tangentMode: 0
  1325. m_PreInfinity: 2
  1326. m_PostInfinity: 2
  1327. m_RotationOrder: 4
  1328. minCurve:
  1329. serializedVersion: 2
  1330. m_Curve:
  1331. - serializedVersion: 2
  1332. time: 0
  1333. value: 0
  1334. inSlope: 0
  1335. outSlope: 0
  1336. tangentMode: 0
  1337. - serializedVersion: 2
  1338. time: 1
  1339. value: 0
  1340. inSlope: 0
  1341. outSlope: 0
  1342. tangentMode: 0
  1343. m_PreInfinity: 2
  1344. m_PostInfinity: 2
  1345. m_RotationOrder: 4
  1346. y:
  1347. serializedVersion: 2
  1348. minMaxState: 0
  1349. scalar: 0
  1350. minScalar: 0
  1351. maxCurve:
  1352. serializedVersion: 2
  1353. m_Curve:
  1354. - serializedVersion: 2
  1355. time: 0
  1356. value: 1
  1357. inSlope: 0
  1358. outSlope: 0
  1359. tangentMode: 0
  1360. - serializedVersion: 2
  1361. time: 1
  1362. value: 1
  1363. inSlope: 0
  1364. outSlope: 0
  1365. tangentMode: 0
  1366. m_PreInfinity: 2
  1367. m_PostInfinity: 2
  1368. m_RotationOrder: 4
  1369. minCurve:
  1370. serializedVersion: 2
  1371. m_Curve:
  1372. - serializedVersion: 2
  1373. time: 0
  1374. value: 0
  1375. inSlope: 0
  1376. outSlope: 0
  1377. tangentMode: 0
  1378. - serializedVersion: 2
  1379. time: 1
  1380. value: 0
  1381. inSlope: 0
  1382. outSlope: 0
  1383. tangentMode: 0
  1384. m_PreInfinity: 2
  1385. m_PostInfinity: 2
  1386. m_RotationOrder: 4
  1387. z:
  1388. serializedVersion: 2
  1389. minMaxState: 0
  1390. scalar: 0
  1391. minScalar: 0
  1392. maxCurve:
  1393. serializedVersion: 2
  1394. m_Curve:
  1395. - serializedVersion: 2
  1396. time: 0
  1397. value: 1
  1398. inSlope: 0
  1399. outSlope: 0
  1400. tangentMode: 0
  1401. - serializedVersion: 2
  1402. time: 1
  1403. value: 1
  1404. inSlope: 0
  1405. outSlope: 0
  1406. tangentMode: 0
  1407. m_PreInfinity: 2
  1408. m_PostInfinity: 2
  1409. m_RotationOrder: 4
  1410. minCurve:
  1411. serializedVersion: 2
  1412. m_Curve:
  1413. - serializedVersion: 2
  1414. time: 0
  1415. value: 0
  1416. inSlope: 0
  1417. outSlope: 0
  1418. tangentMode: 0
  1419. - serializedVersion: 2
  1420. time: 1
  1421. value: 0
  1422. inSlope: 0
  1423. outSlope: 0
  1424. tangentMode: 0
  1425. m_PreInfinity: 2
  1426. m_PostInfinity: 2
  1427. m_RotationOrder: 4
  1428. inWorldSpace: 0
  1429. randomizePerFrame: 0
  1430. ExternalForcesModule:
  1431. enabled: 0
  1432. multiplier: 1
  1433. ClampVelocityModule:
  1434. enabled: 0
  1435. x:
  1436. serializedVersion: 2
  1437. minMaxState: 0
  1438. scalar: 1
  1439. minScalar: 1
  1440. maxCurve:
  1441. serializedVersion: 2
  1442. m_Curve:
  1443. - serializedVersion: 2
  1444. time: 0
  1445. value: 1
  1446. inSlope: 0
  1447. outSlope: 0
  1448. tangentMode: 0
  1449. - serializedVersion: 2
  1450. time: 1
  1451. value: 1
  1452. inSlope: 0
  1453. outSlope: 0
  1454. tangentMode: 0
  1455. m_PreInfinity: 2
  1456. m_PostInfinity: 2
  1457. m_RotationOrder: 4
  1458. minCurve:
  1459. serializedVersion: 2
  1460. m_Curve:
  1461. - serializedVersion: 2
  1462. time: 0
  1463. value: 0
  1464. inSlope: 0
  1465. outSlope: 0
  1466. tangentMode: 0
  1467. - serializedVersion: 2
  1468. time: 1
  1469. value: 0
  1470. inSlope: 0
  1471. outSlope: 0
  1472. tangentMode: 0
  1473. m_PreInfinity: 2
  1474. m_PostInfinity: 2
  1475. m_RotationOrder: 4
  1476. y:
  1477. serializedVersion: 2
  1478. minMaxState: 0
  1479. scalar: 1
  1480. minScalar: 1
  1481. maxCurve:
  1482. serializedVersion: 2
  1483. m_Curve:
  1484. - serializedVersion: 2
  1485. time: 0
  1486. value: 1
  1487. inSlope: 0
  1488. outSlope: 0
  1489. tangentMode: 0
  1490. - serializedVersion: 2
  1491. time: 1
  1492. value: 1
  1493. inSlope: 0
  1494. outSlope: 0
  1495. tangentMode: 0
  1496. m_PreInfinity: 2
  1497. m_PostInfinity: 2
  1498. m_RotationOrder: 4
  1499. minCurve:
  1500. serializedVersion: 2
  1501. m_Curve:
  1502. - serializedVersion: 2
  1503. time: 0
  1504. value: 0
  1505. inSlope: 0
  1506. outSlope: 0
  1507. tangentMode: 0
  1508. - serializedVersion: 2
  1509. time: 1
  1510. value: 0
  1511. inSlope: 0
  1512. outSlope: 0
  1513. tangentMode: 0
  1514. m_PreInfinity: 2
  1515. m_PostInfinity: 2
  1516. m_RotationOrder: 4
  1517. z:
  1518. serializedVersion: 2
  1519. minMaxState: 0
  1520. scalar: 1
  1521. minScalar: 1
  1522. maxCurve:
  1523. serializedVersion: 2
  1524. m_Curve:
  1525. - serializedVersion: 2
  1526. time: 0
  1527. value: 1
  1528. inSlope: 0
  1529. outSlope: 0
  1530. tangentMode: 0
  1531. - serializedVersion: 2
  1532. time: 1
  1533. value: 1
  1534. inSlope: 0
  1535. outSlope: 0
  1536. tangentMode: 0
  1537. m_PreInfinity: 2
  1538. m_PostInfinity: 2
  1539. m_RotationOrder: 4
  1540. minCurve:
  1541. serializedVersion: 2
  1542. m_Curve:
  1543. - serializedVersion: 2
  1544. time: 0
  1545. value: 0
  1546. inSlope: 0
  1547. outSlope: 0
  1548. tangentMode: 0
  1549. - serializedVersion: 2
  1550. time: 1
  1551. value: 0
  1552. inSlope: 0
  1553. outSlope: 0
  1554. tangentMode: 0
  1555. m_PreInfinity: 2
  1556. m_PostInfinity: 2
  1557. m_RotationOrder: 4
  1558. magnitude:
  1559. serializedVersion: 2
  1560. minMaxState: 0
  1561. scalar: 1
  1562. minScalar: 1
  1563. maxCurve:
  1564. serializedVersion: 2
  1565. m_Curve:
  1566. - serializedVersion: 2
  1567. time: 0
  1568. value: 1
  1569. inSlope: 0
  1570. outSlope: 0
  1571. tangentMode: 0
  1572. - serializedVersion: 2
  1573. time: 1
  1574. value: 1
  1575. inSlope: 0
  1576. outSlope: 0
  1577. tangentMode: 0
  1578. m_PreInfinity: 2
  1579. m_PostInfinity: 2
  1580. m_RotationOrder: 4
  1581. minCurve:
  1582. serializedVersion: 2
  1583. m_Curve:
  1584. - serializedVersion: 2
  1585. time: 0
  1586. value: 0
  1587. inSlope: 0
  1588. outSlope: 0
  1589. tangentMode: 0
  1590. - serializedVersion: 2
  1591. time: 1
  1592. value: 0
  1593. inSlope: 0
  1594. outSlope: 0
  1595. tangentMode: 0
  1596. m_PreInfinity: 2
  1597. m_PostInfinity: 2
  1598. m_RotationOrder: 4
  1599. separateAxis: 0
  1600. inWorldSpace: 0
  1601. dampen: 1
  1602. NoiseModule:
  1603. enabled: 1
  1604. strength:
  1605. serializedVersion: 2
  1606. minMaxState: 0
  1607. scalar: 0.1
  1608. minScalar: 1
  1609. maxCurve:
  1610. serializedVersion: 2
  1611. m_Curve:
  1612. - serializedVersion: 2
  1613. time: 0
  1614. value: 1
  1615. inSlope: 0
  1616. outSlope: 0
  1617. tangentMode: 0
  1618. - serializedVersion: 2
  1619. time: 1
  1620. value: 1
  1621. inSlope: 0
  1622. outSlope: 0
  1623. tangentMode: 0
  1624. m_PreInfinity: 2
  1625. m_PostInfinity: 2
  1626. m_RotationOrder: 4
  1627. minCurve:
  1628. serializedVersion: 2
  1629. m_Curve:
  1630. - serializedVersion: 2
  1631. time: 0
  1632. value: 0
  1633. inSlope: 0
  1634. outSlope: 0
  1635. tangentMode: 0
  1636. - serializedVersion: 2
  1637. time: 1
  1638. value: 0
  1639. inSlope: 0
  1640. outSlope: 0
  1641. tangentMode: 0
  1642. m_PreInfinity: 2
  1643. m_PostInfinity: 2
  1644. m_RotationOrder: 4
  1645. strengthY:
  1646. serializedVersion: 2
  1647. minMaxState: 0
  1648. scalar: 1
  1649. minScalar: 1
  1650. maxCurve:
  1651. serializedVersion: 2
  1652. m_Curve:
  1653. - serializedVersion: 2
  1654. time: 0
  1655. value: 1
  1656. inSlope: 0
  1657. outSlope: 0
  1658. tangentMode: 0
  1659. - serializedVersion: 2
  1660. time: 1
  1661. value: 1
  1662. inSlope: 0
  1663. outSlope: 0
  1664. tangentMode: 0
  1665. m_PreInfinity: 2
  1666. m_PostInfinity: 2
  1667. m_RotationOrder: 4
  1668. minCurve:
  1669. serializedVersion: 2
  1670. m_Curve:
  1671. - serializedVersion: 2
  1672. time: 0
  1673. value: 0
  1674. inSlope: 0
  1675. outSlope: 0
  1676. tangentMode: 0
  1677. - serializedVersion: 2
  1678. time: 1
  1679. value: 0
  1680. inSlope: 0
  1681. outSlope: 0
  1682. tangentMode: 0
  1683. m_PreInfinity: 2
  1684. m_PostInfinity: 2
  1685. m_RotationOrder: 4
  1686. strengthZ:
  1687. serializedVersion: 2
  1688. minMaxState: 0
  1689. scalar: 1
  1690. minScalar: 1
  1691. maxCurve:
  1692. serializedVersion: 2
  1693. m_Curve:
  1694. - serializedVersion: 2
  1695. time: 0
  1696. value: 1
  1697. inSlope: 0
  1698. outSlope: 0
  1699. tangentMode: 0
  1700. - serializedVersion: 2
  1701. time: 1
  1702. value: 1
  1703. inSlope: 0
  1704. outSlope: 0
  1705. tangentMode: 0
  1706. m_PreInfinity: 2
  1707. m_PostInfinity: 2
  1708. m_RotationOrder: 4
  1709. minCurve:
  1710. serializedVersion: 2
  1711. m_Curve:
  1712. - serializedVersion: 2
  1713. time: 0
  1714. value: 0
  1715. inSlope: 0
  1716. outSlope: 0
  1717. tangentMode: 0
  1718. - serializedVersion: 2
  1719. time: 1
  1720. value: 0
  1721. inSlope: 0
  1722. outSlope: 0
  1723. tangentMode: 0
  1724. m_PreInfinity: 2
  1725. m_PostInfinity: 2
  1726. m_RotationOrder: 4
  1727. separateAxes: 0
  1728. frequency: 0.5
  1729. damping: 1
  1730. octaves: 1
  1731. octaveMultiplier: 0.5
  1732. octaveScale: 2
  1733. quality: 2
  1734. scrollSpeed:
  1735. serializedVersion: 2
  1736. minMaxState: 0
  1737. scalar: 0.1
  1738. minScalar: 0
  1739. maxCurve:
  1740. serializedVersion: 2
  1741. m_Curve:
  1742. - serializedVersion: 2
  1743. time: 0
  1744. value: 1
  1745. inSlope: 0
  1746. outSlope: 0
  1747. tangentMode: 0
  1748. - serializedVersion: 2
  1749. time: 1
  1750. value: 1
  1751. inSlope: 0
  1752. outSlope: 0
  1753. tangentMode: 0
  1754. m_PreInfinity: 2
  1755. m_PostInfinity: 2
  1756. m_RotationOrder: 4
  1757. minCurve:
  1758. serializedVersion: 2
  1759. m_Curve:
  1760. - serializedVersion: 2
  1761. time: 0
  1762. value: 0
  1763. inSlope: 0
  1764. outSlope: 0
  1765. tangentMode: 0
  1766. - serializedVersion: 2
  1767. time: 1
  1768. value: 0
  1769. inSlope: 0
  1770. outSlope: 0
  1771. tangentMode: 0
  1772. m_PreInfinity: 2
  1773. m_PostInfinity: 2
  1774. m_RotationOrder: 4
  1775. remap:
  1776. serializedVersion: 2
  1777. minMaxState: 1
  1778. scalar: 1
  1779. minScalar: 1
  1780. maxCurve:
  1781. serializedVersion: 2
  1782. m_Curve:
  1783. - serializedVersion: 2
  1784. time: 0
  1785. value: -1
  1786. inSlope: 0
  1787. outSlope: 2
  1788. tangentMode: 0
  1789. - serializedVersion: 2
  1790. time: 1
  1791. value: 1
  1792. inSlope: 2
  1793. outSlope: 0
  1794. tangentMode: 0
  1795. m_PreInfinity: 2
  1796. m_PostInfinity: 2
  1797. m_RotationOrder: 4
  1798. minCurve:
  1799. serializedVersion: 2
  1800. m_Curve:
  1801. - serializedVersion: 2
  1802. time: 0
  1803. value: 0
  1804. inSlope: 0
  1805. outSlope: 0
  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. remapY:
  1817. serializedVersion: 2
  1818. minMaxState: 1
  1819. scalar: 1
  1820. minScalar: 1
  1821. maxCurve:
  1822. serializedVersion: 2
  1823. m_Curve:
  1824. - serializedVersion: 2
  1825. time: 0
  1826. value: -1
  1827. inSlope: 0
  1828. outSlope: 2
  1829. tangentMode: 0
  1830. - serializedVersion: 2
  1831. time: 1
  1832. value: 1
  1833. inSlope: 2
  1834. outSlope: 0
  1835. tangentMode: 0
  1836. m_PreInfinity: 2
  1837. m_PostInfinity: 2
  1838. m_RotationOrder: 4
  1839. minCurve:
  1840. serializedVersion: 2
  1841. m_Curve:
  1842. - serializedVersion: 2
  1843. time: 0
  1844. value: 0
  1845. inSlope: 0
  1846. outSlope: 0
  1847. tangentMode: 0
  1848. - serializedVersion: 2
  1849. time: 1
  1850. value: 0
  1851. inSlope: 0
  1852. outSlope: 0
  1853. tangentMode: 0
  1854. m_PreInfinity: 2
  1855. m_PostInfinity: 2
  1856. m_RotationOrder: 4
  1857. remapZ:
  1858. serializedVersion: 2
  1859. minMaxState: 1
  1860. scalar: 1
  1861. minScalar: 1
  1862. maxCurve:
  1863. serializedVersion: 2
  1864. m_Curve:
  1865. - serializedVersion: 2
  1866. time: 0
  1867. value: -1
  1868. inSlope: 0
  1869. outSlope: 2
  1870. tangentMode: 0
  1871. - serializedVersion: 2
  1872. time: 1
  1873. value: 1
  1874. inSlope: 2
  1875. outSlope: 0
  1876. tangentMode: 0
  1877. m_PreInfinity: 2
  1878. m_PostInfinity: 2
  1879. m_RotationOrder: 4
  1880. minCurve:
  1881. serializedVersion: 2
  1882. m_Curve:
  1883. - serializedVersion: 2
  1884. time: 0
  1885. value: 0
  1886. inSlope: 0
  1887. outSlope: 0
  1888. tangentMode: 0
  1889. - serializedVersion: 2
  1890. time: 1
  1891. value: 0
  1892. inSlope: 0
  1893. outSlope: 0
  1894. tangentMode: 0
  1895. m_PreInfinity: 2
  1896. m_PostInfinity: 2
  1897. m_RotationOrder: 4
  1898. remapEnabled: 0
  1899. positionAmount:
  1900. serializedVersion: 2
  1901. minMaxState: 0
  1902. scalar: 1
  1903. minScalar: 1
  1904. maxCurve:
  1905. serializedVersion: 2
  1906. m_Curve:
  1907. - serializedVersion: 2
  1908. time: 0
  1909. value: 1
  1910. inSlope: 0
  1911. outSlope: 0
  1912. tangentMode: 0
  1913. - serializedVersion: 2
  1914. time: 1
  1915. value: 1
  1916. inSlope: 0
  1917. outSlope: 0
  1918. tangentMode: 0
  1919. m_PreInfinity: 2
  1920. m_PostInfinity: 2
  1921. m_RotationOrder: 4
  1922. minCurve:
  1923. serializedVersion: 2
  1924. m_Curve:
  1925. - serializedVersion: 2
  1926. time: 0
  1927. value: 1
  1928. inSlope: 0
  1929. outSlope: 0
  1930. tangentMode: 0
  1931. - serializedVersion: 2
  1932. time: 1
  1933. value: 1
  1934. inSlope: 0
  1935. outSlope: 0
  1936. tangentMode: 0
  1937. m_PreInfinity: 2
  1938. m_PostInfinity: 2
  1939. m_RotationOrder: 4
  1940. rotationAmount:
  1941. serializedVersion: 2
  1942. minMaxState: 0
  1943. scalar: 0
  1944. minScalar: 0
  1945. maxCurve:
  1946. serializedVersion: 2
  1947. m_Curve:
  1948. - serializedVersion: 2
  1949. time: 0
  1950. value: 0
  1951. inSlope: 0
  1952. outSlope: 0
  1953. tangentMode: 0
  1954. - serializedVersion: 2
  1955. time: 1
  1956. value: 0
  1957. inSlope: 0
  1958. outSlope: 0
  1959. tangentMode: 0
  1960. m_PreInfinity: 2
  1961. m_PostInfinity: 2
  1962. m_RotationOrder: 4
  1963. minCurve:
  1964. serializedVersion: 2
  1965. m_Curve:
  1966. - serializedVersion: 2
  1967. time: 0
  1968. value: 0
  1969. inSlope: 0
  1970. outSlope: 0
  1971. tangentMode: 0
  1972. - serializedVersion: 2
  1973. time: 1
  1974. value: 0
  1975. inSlope: 0
  1976. outSlope: 0
  1977. tangentMode: 0
  1978. m_PreInfinity: 2
  1979. m_PostInfinity: 2
  1980. m_RotationOrder: 4
  1981. sizeAmount:
  1982. serializedVersion: 2
  1983. minMaxState: 0
  1984. scalar: 0
  1985. minScalar: 0
  1986. maxCurve:
  1987. serializedVersion: 2
  1988. m_Curve:
  1989. - serializedVersion: 2
  1990. time: 0
  1991. value: 0
  1992. inSlope: 0
  1993. outSlope: 0
  1994. tangentMode: 0
  1995. - serializedVersion: 2
  1996. time: 1
  1997. value: 0
  1998. inSlope: 0
  1999. outSlope: 0
  2000. tangentMode: 0
  2001. m_PreInfinity: 2
  2002. m_PostInfinity: 2
  2003. m_RotationOrder: 4
  2004. minCurve:
  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. SizeBySpeedModule:
  2023. enabled: 0
  2024. curve:
  2025. serializedVersion: 2
  2026. minMaxState: 1
  2027. scalar: 1
  2028. minScalar: 1
  2029. maxCurve:
  2030. serializedVersion: 2
  2031. m_Curve:
  2032. - serializedVersion: 2
  2033. time: 0
  2034. value: 1
  2035. inSlope: 0
  2036. outSlope: 0
  2037. tangentMode: 0
  2038. - serializedVersion: 2
  2039. time: 1
  2040. value: 1
  2041. inSlope: 0
  2042. outSlope: 0
  2043. tangentMode: 0
  2044. m_PreInfinity: 2
  2045. m_PostInfinity: 2
  2046. m_RotationOrder: 4
  2047. minCurve:
  2048. serializedVersion: 2
  2049. m_Curve:
  2050. - serializedVersion: 2
  2051. time: 0
  2052. value: 0
  2053. inSlope: 0
  2054. outSlope: 0
  2055. tangentMode: 0
  2056. - serializedVersion: 2
  2057. time: 1
  2058. value: 0
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 0
  2062. m_PreInfinity: 2
  2063. m_PostInfinity: 2
  2064. m_RotationOrder: 4
  2065. y:
  2066. serializedVersion: 2
  2067. minMaxState: 1
  2068. scalar: 1
  2069. minScalar: 1
  2070. maxCurve:
  2071. serializedVersion: 2
  2072. m_Curve:
  2073. - serializedVersion: 2
  2074. time: 0
  2075. value: 1
  2076. inSlope: 0
  2077. outSlope: 0
  2078. tangentMode: 0
  2079. - serializedVersion: 2
  2080. time: 1
  2081. value: 1
  2082. inSlope: 0
  2083. outSlope: 0
  2084. tangentMode: 0
  2085. m_PreInfinity: 2
  2086. m_PostInfinity: 2
  2087. m_RotationOrder: 4
  2088. minCurve:
  2089. serializedVersion: 2
  2090. m_Curve:
  2091. - serializedVersion: 2
  2092. time: 0
  2093. value: 0
  2094. inSlope: 0
  2095. outSlope: 0
  2096. tangentMode: 0
  2097. - serializedVersion: 2
  2098. time: 1
  2099. value: 0
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 0
  2103. m_PreInfinity: 2
  2104. m_PostInfinity: 2
  2105. m_RotationOrder: 4
  2106. z:
  2107. serializedVersion: 2
  2108. minMaxState: 1
  2109. scalar: 1
  2110. minScalar: 1
  2111. maxCurve:
  2112. serializedVersion: 2
  2113. m_Curve:
  2114. - serializedVersion: 2
  2115. time: 0
  2116. value: 1
  2117. inSlope: 0
  2118. outSlope: 0
  2119. tangentMode: 0
  2120. - serializedVersion: 2
  2121. time: 1
  2122. value: 1
  2123. inSlope: 0
  2124. outSlope: 0
  2125. tangentMode: 0
  2126. m_PreInfinity: 2
  2127. m_PostInfinity: 2
  2128. m_RotationOrder: 4
  2129. minCurve:
  2130. serializedVersion: 2
  2131. m_Curve:
  2132. - serializedVersion: 2
  2133. time: 0
  2134. value: 0
  2135. inSlope: 0
  2136. outSlope: 0
  2137. tangentMode: 0
  2138. - serializedVersion: 2
  2139. time: 1
  2140. value: 0
  2141. inSlope: 0
  2142. outSlope: 0
  2143. tangentMode: 0
  2144. m_PreInfinity: 2
  2145. m_PostInfinity: 2
  2146. m_RotationOrder: 4
  2147. range: {x: 0, y: 1}
  2148. separateAxes: 0
  2149. RotationBySpeedModule:
  2150. enabled: 0
  2151. x:
  2152. serializedVersion: 2
  2153. minMaxState: 0
  2154. scalar: 0
  2155. minScalar: 0
  2156. maxCurve:
  2157. serializedVersion: 2
  2158. m_Curve:
  2159. - serializedVersion: 2
  2160. time: 0
  2161. value: 1
  2162. inSlope: 0
  2163. outSlope: 0
  2164. tangentMode: 0
  2165. - serializedVersion: 2
  2166. time: 1
  2167. value: 1
  2168. inSlope: 0
  2169. outSlope: 0
  2170. tangentMode: 0
  2171. m_PreInfinity: 2
  2172. m_PostInfinity: 2
  2173. m_RotationOrder: 4
  2174. minCurve:
  2175. serializedVersion: 2
  2176. m_Curve:
  2177. - serializedVersion: 2
  2178. time: 0
  2179. value: 0
  2180. inSlope: 0
  2181. outSlope: 0
  2182. tangentMode: 0
  2183. - serializedVersion: 2
  2184. time: 1
  2185. value: 0
  2186. inSlope: 0
  2187. outSlope: 0
  2188. tangentMode: 0
  2189. m_PreInfinity: 2
  2190. m_PostInfinity: 2
  2191. m_RotationOrder: 4
  2192. y:
  2193. serializedVersion: 2
  2194. minMaxState: 0
  2195. scalar: 0
  2196. minScalar: 0
  2197. maxCurve:
  2198. serializedVersion: 2
  2199. m_Curve:
  2200. - serializedVersion: 2
  2201. time: 0
  2202. value: 1
  2203. inSlope: 0
  2204. outSlope: 0
  2205. tangentMode: 0
  2206. - serializedVersion: 2
  2207. time: 1
  2208. value: 1
  2209. inSlope: 0
  2210. outSlope: 0
  2211. tangentMode: 0
  2212. m_PreInfinity: 2
  2213. m_PostInfinity: 2
  2214. m_RotationOrder: 4
  2215. minCurve:
  2216. serializedVersion: 2
  2217. m_Curve:
  2218. - serializedVersion: 2
  2219. time: 0
  2220. value: 0
  2221. inSlope: 0
  2222. outSlope: 0
  2223. tangentMode: 0
  2224. - serializedVersion: 2
  2225. time: 1
  2226. value: 0
  2227. inSlope: 0
  2228. outSlope: 0
  2229. tangentMode: 0
  2230. m_PreInfinity: 2
  2231. m_PostInfinity: 2
  2232. m_RotationOrder: 4
  2233. curve:
  2234. serializedVersion: 2
  2235. minMaxState: 0
  2236. scalar: 0.7853982
  2237. minScalar: 0.7853982
  2238. maxCurve:
  2239. serializedVersion: 2
  2240. m_Curve:
  2241. - serializedVersion: 2
  2242. time: 0
  2243. value: 1
  2244. inSlope: 0
  2245. outSlope: 0
  2246. tangentMode: 0
  2247. - serializedVersion: 2
  2248. time: 1
  2249. value: 1
  2250. inSlope: 0
  2251. outSlope: 0
  2252. tangentMode: 0
  2253. m_PreInfinity: 2
  2254. m_PostInfinity: 2
  2255. m_RotationOrder: 4
  2256. minCurve:
  2257. serializedVersion: 2
  2258. m_Curve:
  2259. - serializedVersion: 2
  2260. time: 0
  2261. value: 0
  2262. inSlope: 0
  2263. outSlope: 0
  2264. tangentMode: 0
  2265. - serializedVersion: 2
  2266. time: 1
  2267. value: 0
  2268. inSlope: 0
  2269. outSlope: 0
  2270. tangentMode: 0
  2271. m_PreInfinity: 2
  2272. m_PostInfinity: 2
  2273. m_RotationOrder: 4
  2274. separateAxes: 0
  2275. range: {x: 0, y: 1}
  2276. ColorBySpeedModule:
  2277. enabled: 0
  2278. gradient:
  2279. serializedVersion: 2
  2280. minMaxState: 1
  2281. minColor: {r: 1, g: 1, b: 1, a: 1}
  2282. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2283. maxGradient:
  2284. serializedVersion: 2
  2285. key0: {r: 1, g: 1, b: 1, a: 1}
  2286. key1: {r: 1, g: 1, b: 1, a: 1}
  2287. key2: {r: 0, g: 0, b: 0, a: 0}
  2288. key3: {r: 0, g: 0, b: 0, a: 0}
  2289. key4: {r: 0, g: 0, b: 0, a: 0}
  2290. key5: {r: 0, g: 0, b: 0, a: 0}
  2291. key6: {r: 0, g: 0, b: 0, a: 0}
  2292. key7: {r: 0, g: 0, b: 0, a: 0}
  2293. ctime0: 0
  2294. ctime1: 65535
  2295. ctime2: 0
  2296. ctime3: 0
  2297. ctime4: 0
  2298. ctime5: 0
  2299. ctime6: 0
  2300. ctime7: 0
  2301. atime0: 0
  2302. atime1: 65535
  2303. atime2: 0
  2304. atime3: 0
  2305. atime4: 0
  2306. atime5: 0
  2307. atime6: 0
  2308. atime7: 0
  2309. m_Mode: 0
  2310. m_NumColorKeys: 2
  2311. m_NumAlphaKeys: 2
  2312. minGradient:
  2313. serializedVersion: 2
  2314. key0: {r: 1, g: 1, b: 1, a: 1}
  2315. key1: {r: 1, g: 1, b: 1, a: 1}
  2316. key2: {r: 0, g: 0, b: 0, a: 0}
  2317. key3: {r: 0, g: 0, b: 0, a: 0}
  2318. key4: {r: 0, g: 0, b: 0, a: 0}
  2319. key5: {r: 0, g: 0, b: 0, a: 0}
  2320. key6: {r: 0, g: 0, b: 0, a: 0}
  2321. key7: {r: 0, g: 0, b: 0, a: 0}
  2322. ctime0: 0
  2323. ctime1: 65535
  2324. ctime2: 0
  2325. ctime3: 0
  2326. ctime4: 0
  2327. ctime5: 0
  2328. ctime6: 0
  2329. ctime7: 0
  2330. atime0: 0
  2331. atime1: 65535
  2332. atime2: 0
  2333. atime3: 0
  2334. atime4: 0
  2335. atime5: 0
  2336. atime6: 0
  2337. atime7: 0
  2338. m_Mode: 0
  2339. m_NumColorKeys: 2
  2340. m_NumAlphaKeys: 2
  2341. range: {x: 0, y: 1}
  2342. CollisionModule:
  2343. enabled: 0
  2344. serializedVersion: 3
  2345. type: 0
  2346. collisionMode: 0
  2347. colliderForce: 0
  2348. multiplyColliderForceByParticleSize: 0
  2349. multiplyColliderForceByParticleSpeed: 0
  2350. multiplyColliderForceByCollisionAngle: 1
  2351. plane0: {fileID: 0}
  2352. plane1: {fileID: 0}
  2353. plane2: {fileID: 0}
  2354. plane3: {fileID: 0}
  2355. plane4: {fileID: 0}
  2356. plane5: {fileID: 0}
  2357. m_Dampen:
  2358. serializedVersion: 2
  2359. minMaxState: 0
  2360. scalar: 0
  2361. minScalar: 0
  2362. maxCurve:
  2363. serializedVersion: 2
  2364. m_Curve:
  2365. - serializedVersion: 2
  2366. time: 0
  2367. value: 1
  2368. inSlope: 0
  2369. outSlope: 0
  2370. tangentMode: 0
  2371. - serializedVersion: 2
  2372. time: 1
  2373. value: 1
  2374. inSlope: 0
  2375. outSlope: 0
  2376. tangentMode: 0
  2377. m_PreInfinity: 2
  2378. m_PostInfinity: 2
  2379. m_RotationOrder: 4
  2380. minCurve:
  2381. serializedVersion: 2
  2382. m_Curve:
  2383. - serializedVersion: 2
  2384. time: 0
  2385. value: 0
  2386. inSlope: 0
  2387. outSlope: 0
  2388. tangentMode: 0
  2389. - serializedVersion: 2
  2390. time: 1
  2391. value: 0
  2392. inSlope: 0
  2393. outSlope: 0
  2394. tangentMode: 0
  2395. m_PreInfinity: 2
  2396. m_PostInfinity: 2
  2397. m_RotationOrder: 4
  2398. m_Bounce:
  2399. serializedVersion: 2
  2400. minMaxState: 0
  2401. scalar: 1
  2402. minScalar: 1
  2403. maxCurve:
  2404. serializedVersion: 2
  2405. m_Curve:
  2406. - serializedVersion: 2
  2407. time: 0
  2408. value: 1
  2409. inSlope: 0
  2410. outSlope: 0
  2411. tangentMode: 0
  2412. - serializedVersion: 2
  2413. time: 1
  2414. value: 1
  2415. inSlope: 0
  2416. outSlope: 0
  2417. tangentMode: 0
  2418. m_PreInfinity: 2
  2419. m_PostInfinity: 2
  2420. m_RotationOrder: 4
  2421. minCurve:
  2422. serializedVersion: 2
  2423. m_Curve:
  2424. - serializedVersion: 2
  2425. time: 0
  2426. value: 0
  2427. inSlope: 0
  2428. outSlope: 0
  2429. tangentMode: 0
  2430. - serializedVersion: 2
  2431. time: 1
  2432. value: 0
  2433. inSlope: 0
  2434. outSlope: 0
  2435. tangentMode: 0
  2436. m_PreInfinity: 2
  2437. m_PostInfinity: 2
  2438. m_RotationOrder: 4
  2439. m_EnergyLossOnCollision:
  2440. serializedVersion: 2
  2441. minMaxState: 0
  2442. scalar: 0
  2443. minScalar: 0
  2444. maxCurve:
  2445. serializedVersion: 2
  2446. m_Curve:
  2447. - serializedVersion: 2
  2448. time: 0
  2449. value: 1
  2450. inSlope: 0
  2451. outSlope: 0
  2452. tangentMode: 0
  2453. - serializedVersion: 2
  2454. time: 1
  2455. value: 1
  2456. inSlope: 0
  2457. outSlope: 0
  2458. tangentMode: 0
  2459. m_PreInfinity: 2
  2460. m_PostInfinity: 2
  2461. m_RotationOrder: 4
  2462. minCurve:
  2463. serializedVersion: 2
  2464. m_Curve:
  2465. - serializedVersion: 2
  2466. time: 0
  2467. value: 0
  2468. inSlope: 0
  2469. outSlope: 0
  2470. tangentMode: 0
  2471. - serializedVersion: 2
  2472. time: 1
  2473. value: 0
  2474. inSlope: 0
  2475. outSlope: 0
  2476. tangentMode: 0
  2477. m_PreInfinity: 2
  2478. m_PostInfinity: 2
  2479. m_RotationOrder: 4
  2480. minKillSpeed: 0
  2481. maxKillSpeed: 10000
  2482. radiusScale: 1
  2483. collidesWith:
  2484. serializedVersion: 2
  2485. m_Bits: 4294967295
  2486. maxCollisionShapes: 256
  2487. quality: 0
  2488. voxelSize: 0.5
  2489. collisionMessages: 0
  2490. collidesWithDynamic: 1
  2491. interiorCollisions: 1
  2492. TriggerModule:
  2493. enabled: 0
  2494. collisionShape0: {fileID: 0}
  2495. collisionShape1: {fileID: 0}
  2496. collisionShape2: {fileID: 0}
  2497. collisionShape3: {fileID: 0}
  2498. collisionShape4: {fileID: 0}
  2499. collisionShape5: {fileID: 0}
  2500. inside: 1
  2501. outside: 0
  2502. enter: 0
  2503. exit: 0
  2504. radiusScale: 1
  2505. SubModule:
  2506. serializedVersion: 2
  2507. enabled: 0
  2508. subEmitters:
  2509. - emitter: {fileID: 0}
  2510. type: 0
  2511. properties: 0
  2512. LightsModule:
  2513. enabled: 0
  2514. ratio: 0
  2515. light: {fileID: 0}
  2516. randomDistribution: 1
  2517. color: 1
  2518. range: 1
  2519. intensity: 1
  2520. rangeCurve:
  2521. serializedVersion: 2
  2522. minMaxState: 0
  2523. scalar: 1
  2524. minScalar: 1
  2525. maxCurve:
  2526. serializedVersion: 2
  2527. m_Curve:
  2528. - serializedVersion: 2
  2529. time: 0
  2530. value: 1
  2531. inSlope: 0
  2532. outSlope: 0
  2533. tangentMode: 0
  2534. - serializedVersion: 2
  2535. time: 1
  2536. value: 1
  2537. inSlope: 0
  2538. outSlope: 0
  2539. tangentMode: 0
  2540. m_PreInfinity: 2
  2541. m_PostInfinity: 2
  2542. m_RotationOrder: 4
  2543. minCurve:
  2544. serializedVersion: 2
  2545. m_Curve:
  2546. - serializedVersion: 2
  2547. time: 0
  2548. value: 0
  2549. inSlope: 0
  2550. outSlope: 0
  2551. tangentMode: 0
  2552. - serializedVersion: 2
  2553. time: 1
  2554. value: 0
  2555. inSlope: 0
  2556. outSlope: 0
  2557. tangentMode: 0
  2558. m_PreInfinity: 2
  2559. m_PostInfinity: 2
  2560. m_RotationOrder: 4
  2561. intensityCurve:
  2562. serializedVersion: 2
  2563. minMaxState: 0
  2564. scalar: 1
  2565. minScalar: 1
  2566. maxCurve:
  2567. serializedVersion: 2
  2568. m_Curve:
  2569. - serializedVersion: 2
  2570. time: 0
  2571. value: 1
  2572. inSlope: 0
  2573. outSlope: 0
  2574. tangentMode: 0
  2575. - serializedVersion: 2
  2576. time: 1
  2577. value: 1
  2578. inSlope: 0
  2579. outSlope: 0
  2580. tangentMode: 0
  2581. m_PreInfinity: 2
  2582. m_PostInfinity: 2
  2583. m_RotationOrder: 4
  2584. minCurve:
  2585. serializedVersion: 2
  2586. m_Curve:
  2587. - serializedVersion: 2
  2588. time: 0
  2589. value: 0
  2590. inSlope: 0
  2591. outSlope: 0
  2592. tangentMode: 0
  2593. - serializedVersion: 2
  2594. time: 1
  2595. value: 0
  2596. inSlope: 0
  2597. outSlope: 0
  2598. tangentMode: 0
  2599. m_PreInfinity: 2
  2600. m_PostInfinity: 2
  2601. m_RotationOrder: 4
  2602. maxLights: 20
  2603. TrailModule:
  2604. enabled: 0
  2605. ratio: 1
  2606. lifetime:
  2607. serializedVersion: 2
  2608. minMaxState: 0
  2609. scalar: 1
  2610. minScalar: 1
  2611. maxCurve:
  2612. serializedVersion: 2
  2613. m_Curve:
  2614. - serializedVersion: 2
  2615. time: 0
  2616. value: 1
  2617. inSlope: 0
  2618. outSlope: 0
  2619. tangentMode: 0
  2620. - serializedVersion: 2
  2621. time: 1
  2622. value: 1
  2623. inSlope: 0
  2624. outSlope: 0
  2625. tangentMode: 0
  2626. m_PreInfinity: 2
  2627. m_PostInfinity: 2
  2628. m_RotationOrder: 4
  2629. minCurve:
  2630. serializedVersion: 2
  2631. m_Curve:
  2632. - serializedVersion: 2
  2633. time: 0
  2634. value: 0
  2635. inSlope: 0
  2636. outSlope: 0
  2637. tangentMode: 0
  2638. - serializedVersion: 2
  2639. time: 1
  2640. value: 0
  2641. inSlope: 0
  2642. outSlope: 0
  2643. tangentMode: 0
  2644. m_PreInfinity: 2
  2645. m_PostInfinity: 2
  2646. m_RotationOrder: 4
  2647. minVertexDistance: 0.2
  2648. textureMode: 0
  2649. worldSpace: 0
  2650. dieWithParticles: 1
  2651. sizeAffectsWidth: 1
  2652. sizeAffectsLifetime: 0
  2653. inheritParticleColor: 1
  2654. generateLightingData: 0
  2655. colorOverLifetime:
  2656. serializedVersion: 2
  2657. minMaxState: 0
  2658. minColor: {r: 1, g: 1, b: 1, a: 1}
  2659. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2660. maxGradient:
  2661. serializedVersion: 2
  2662. key0: {r: 1, g: 1, b: 1, a: 1}
  2663. key1: {r: 1, g: 1, b: 1, a: 1}
  2664. key2: {r: 0, g: 0, b: 0, a: 0}
  2665. key3: {r: 0, g: 0, b: 0, a: 0}
  2666. key4: {r: 0, g: 0, b: 0, a: 0}
  2667. key5: {r: 0, g: 0, b: 0, a: 0}
  2668. key6: {r: 0, g: 0, b: 0, a: 0}
  2669. key7: {r: 0, g: 0, b: 0, a: 0}
  2670. ctime0: 0
  2671. ctime1: 65535
  2672. ctime2: 0
  2673. ctime3: 0
  2674. ctime4: 0
  2675. ctime5: 0
  2676. ctime6: 0
  2677. ctime7: 0
  2678. atime0: 0
  2679. atime1: 65535
  2680. atime2: 0
  2681. atime3: 0
  2682. atime4: 0
  2683. atime5: 0
  2684. atime6: 0
  2685. atime7: 0
  2686. m_Mode: 0
  2687. m_NumColorKeys: 2
  2688. m_NumAlphaKeys: 2
  2689. minGradient:
  2690. serializedVersion: 2
  2691. key0: {r: 1, g: 1, b: 1, a: 1}
  2692. key1: {r: 1, g: 1, b: 1, a: 1}
  2693. key2: {r: 0, g: 0, b: 0, a: 0}
  2694. key3: {r: 0, g: 0, b: 0, a: 0}
  2695. key4: {r: 0, g: 0, b: 0, a: 0}
  2696. key5: {r: 0, g: 0, b: 0, a: 0}
  2697. key6: {r: 0, g: 0, b: 0, a: 0}
  2698. key7: {r: 0, g: 0, b: 0, a: 0}
  2699. ctime0: 0
  2700. ctime1: 65535
  2701. ctime2: 0
  2702. ctime3: 0
  2703. ctime4: 0
  2704. ctime5: 0
  2705. ctime6: 0
  2706. ctime7: 0
  2707. atime0: 0
  2708. atime1: 65535
  2709. atime2: 0
  2710. atime3: 0
  2711. atime4: 0
  2712. atime5: 0
  2713. atime6: 0
  2714. atime7: 0
  2715. m_Mode: 0
  2716. m_NumColorKeys: 2
  2717. m_NumAlphaKeys: 2
  2718. widthOverTrail:
  2719. serializedVersion: 2
  2720. minMaxState: 0
  2721. scalar: 1
  2722. minScalar: 1
  2723. maxCurve:
  2724. serializedVersion: 2
  2725. m_Curve:
  2726. - serializedVersion: 2
  2727. time: 0
  2728. value: 1
  2729. inSlope: 0
  2730. outSlope: 0
  2731. tangentMode: 0
  2732. - serializedVersion: 2
  2733. time: 1
  2734. value: 1
  2735. inSlope: 0
  2736. outSlope: 0
  2737. tangentMode: 0
  2738. m_PreInfinity: 2
  2739. m_PostInfinity: 2
  2740. m_RotationOrder: 4
  2741. minCurve:
  2742. serializedVersion: 2
  2743. m_Curve:
  2744. - serializedVersion: 2
  2745. time: 0
  2746. value: 0
  2747. inSlope: 0
  2748. outSlope: 0
  2749. tangentMode: 0
  2750. - serializedVersion: 2
  2751. time: 1
  2752. value: 0
  2753. inSlope: 0
  2754. outSlope: 0
  2755. tangentMode: 0
  2756. m_PreInfinity: 2
  2757. m_PostInfinity: 2
  2758. m_RotationOrder: 4
  2759. colorOverTrail:
  2760. serializedVersion: 2
  2761. minMaxState: 0
  2762. minColor: {r: 1, g: 1, b: 1, a: 1}
  2763. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2764. maxGradient:
  2765. serializedVersion: 2
  2766. key0: {r: 1, g: 1, b: 1, a: 1}
  2767. key1: {r: 1, g: 1, b: 1, a: 1}
  2768. key2: {r: 0, g: 0, b: 0, a: 0}
  2769. key3: {r: 0, g: 0, b: 0, a: 0}
  2770. key4: {r: 0, g: 0, b: 0, a: 0}
  2771. key5: {r: 0, g: 0, b: 0, a: 0}
  2772. key6: {r: 0, g: 0, b: 0, a: 0}
  2773. key7: {r: 0, g: 0, b: 0, a: 0}
  2774. ctime0: 0
  2775. ctime1: 65535
  2776. ctime2: 0
  2777. ctime3: 0
  2778. ctime4: 0
  2779. ctime5: 0
  2780. ctime6: 0
  2781. ctime7: 0
  2782. atime0: 0
  2783. atime1: 65535
  2784. atime2: 0
  2785. atime3: 0
  2786. atime4: 0
  2787. atime5: 0
  2788. atime6: 0
  2789. atime7: 0
  2790. m_Mode: 0
  2791. m_NumColorKeys: 2
  2792. m_NumAlphaKeys: 2
  2793. minGradient:
  2794. serializedVersion: 2
  2795. key0: {r: 1, g: 1, b: 1, a: 1}
  2796. key1: {r: 1, g: 1, b: 1, a: 1}
  2797. key2: {r: 0, g: 0, b: 0, a: 0}
  2798. key3: {r: 0, g: 0, b: 0, a: 0}
  2799. key4: {r: 0, g: 0, b: 0, a: 0}
  2800. key5: {r: 0, g: 0, b: 0, a: 0}
  2801. key6: {r: 0, g: 0, b: 0, a: 0}
  2802. key7: {r: 0, g: 0, b: 0, a: 0}
  2803. ctime0: 0
  2804. ctime1: 65535
  2805. ctime2: 0
  2806. ctime3: 0
  2807. ctime4: 0
  2808. ctime5: 0
  2809. ctime6: 0
  2810. ctime7: 0
  2811. atime0: 0
  2812. atime1: 65535
  2813. atime2: 0
  2814. atime3: 0
  2815. atime4: 0
  2816. atime5: 0
  2817. atime6: 0
  2818. atime7: 0
  2819. m_Mode: 0
  2820. m_NumColorKeys: 2
  2821. m_NumAlphaKeys: 2
  2822. CustomDataModule:
  2823. enabled: 0
  2824. mode0: 0
  2825. vectorComponentCount0: 4
  2826. color0:
  2827. serializedVersion: 2
  2828. minMaxState: 0
  2829. minColor: {r: 1, g: 1, b: 1, a: 1}
  2830. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2831. maxGradient:
  2832. serializedVersion: 2
  2833. key0: {r: 1, g: 1, b: 1, a: 1}
  2834. key1: {r: 1, g: 1, b: 1, a: 1}
  2835. key2: {r: 0, g: 0, b: 0, a: 0}
  2836. key3: {r: 0, g: 0, b: 0, a: 0}
  2837. key4: {r: 0, g: 0, b: 0, a: 0}
  2838. key5: {r: 0, g: 0, b: 0, a: 0}
  2839. key6: {r: 0, g: 0, b: 0, a: 0}
  2840. key7: {r: 0, g: 0, b: 0, a: 0}
  2841. ctime0: 0
  2842. ctime1: 65535
  2843. ctime2: 0
  2844. ctime3: 0
  2845. ctime4: 0
  2846. ctime5: 0
  2847. ctime6: 0
  2848. ctime7: 0
  2849. atime0: 0
  2850. atime1: 65535
  2851. atime2: 0
  2852. atime3: 0
  2853. atime4: 0
  2854. atime5: 0
  2855. atime6: 0
  2856. atime7: 0
  2857. m_Mode: 0
  2858. m_NumColorKeys: 2
  2859. m_NumAlphaKeys: 2
  2860. minGradient:
  2861. serializedVersion: 2
  2862. key0: {r: 1, g: 1, b: 1, a: 1}
  2863. key1: {r: 1, g: 1, b: 1, a: 1}
  2864. key2: {r: 0, g: 0, b: 0, a: 0}
  2865. key3: {r: 0, g: 0, b: 0, a: 0}
  2866. key4: {r: 0, g: 0, b: 0, a: 0}
  2867. key5: {r: 0, g: 0, b: 0, a: 0}
  2868. key6: {r: 0, g: 0, b: 0, a: 0}
  2869. key7: {r: 0, g: 0, b: 0, a: 0}
  2870. ctime0: 0
  2871. ctime1: 65535
  2872. ctime2: 0
  2873. ctime3: 0
  2874. ctime4: 0
  2875. ctime5: 0
  2876. ctime6: 0
  2877. ctime7: 0
  2878. atime0: 0
  2879. atime1: 65535
  2880. atime2: 0
  2881. atime3: 0
  2882. atime4: 0
  2883. atime5: 0
  2884. atime6: 0
  2885. atime7: 0
  2886. m_Mode: 0
  2887. m_NumColorKeys: 2
  2888. m_NumAlphaKeys: 2
  2889. vector0_0:
  2890. serializedVersion: 2
  2891. minMaxState: 0
  2892. scalar: 0
  2893. minScalar: 0
  2894. maxCurve:
  2895. serializedVersion: 2
  2896. m_Curve:
  2897. - serializedVersion: 2
  2898. time: 0
  2899. value: 1
  2900. inSlope: 0
  2901. outSlope: 0
  2902. tangentMode: 0
  2903. - serializedVersion: 2
  2904. time: 1
  2905. value: 1
  2906. inSlope: 0
  2907. outSlope: 0
  2908. tangentMode: 0
  2909. m_PreInfinity: 2
  2910. m_PostInfinity: 2
  2911. m_RotationOrder: 4
  2912. minCurve:
  2913. serializedVersion: 2
  2914. m_Curve:
  2915. - serializedVersion: 2
  2916. time: 0
  2917. value: 0
  2918. inSlope: 0
  2919. outSlope: 0
  2920. tangentMode: 0
  2921. - serializedVersion: 2
  2922. time: 1
  2923. value: 0
  2924. inSlope: 0
  2925. outSlope: 0
  2926. tangentMode: 0
  2927. m_PreInfinity: 2
  2928. m_PostInfinity: 2
  2929. m_RotationOrder: 4
  2930. vector0_1:
  2931. serializedVersion: 2
  2932. minMaxState: 0
  2933. scalar: 0
  2934. minScalar: 0
  2935. maxCurve:
  2936. serializedVersion: 2
  2937. m_Curve:
  2938. - serializedVersion: 2
  2939. time: 0
  2940. value: 1
  2941. inSlope: 0
  2942. outSlope: 0
  2943. tangentMode: 0
  2944. - serializedVersion: 2
  2945. time: 1
  2946. value: 1
  2947. inSlope: 0
  2948. outSlope: 0
  2949. tangentMode: 0
  2950. m_PreInfinity: 2
  2951. m_PostInfinity: 2
  2952. m_RotationOrder: 4
  2953. minCurve:
  2954. serializedVersion: 2
  2955. m_Curve:
  2956. - serializedVersion: 2
  2957. time: 0
  2958. value: 0
  2959. inSlope: 0
  2960. outSlope: 0
  2961. tangentMode: 0
  2962. - serializedVersion: 2
  2963. time: 1
  2964. value: 0
  2965. inSlope: 0
  2966. outSlope: 0
  2967. tangentMode: 0
  2968. m_PreInfinity: 2
  2969. m_PostInfinity: 2
  2970. m_RotationOrder: 4
  2971. vector0_2:
  2972. serializedVersion: 2
  2973. minMaxState: 0
  2974. scalar: 0
  2975. minScalar: 0
  2976. maxCurve:
  2977. serializedVersion: 2
  2978. m_Curve:
  2979. - serializedVersion: 2
  2980. time: 0
  2981. value: 1
  2982. inSlope: 0
  2983. outSlope: 0
  2984. tangentMode: 0
  2985. - serializedVersion: 2
  2986. time: 1
  2987. value: 1
  2988. inSlope: 0
  2989. outSlope: 0
  2990. tangentMode: 0
  2991. m_PreInfinity: 2
  2992. m_PostInfinity: 2
  2993. m_RotationOrder: 4
  2994. minCurve:
  2995. serializedVersion: 2
  2996. m_Curve:
  2997. - serializedVersion: 2
  2998. time: 0
  2999. value: 0
  3000. inSlope: 0
  3001. outSlope: 0
  3002. tangentMode: 0
  3003. - serializedVersion: 2
  3004. time: 1
  3005. value: 0
  3006. inSlope: 0
  3007. outSlope: 0
  3008. tangentMode: 0
  3009. m_PreInfinity: 2
  3010. m_PostInfinity: 2
  3011. m_RotationOrder: 4
  3012. vector0_3:
  3013. serializedVersion: 2
  3014. minMaxState: 0
  3015. scalar: 0
  3016. minScalar: 0
  3017. maxCurve:
  3018. serializedVersion: 2
  3019. m_Curve:
  3020. - serializedVersion: 2
  3021. time: 0
  3022. value: 1
  3023. inSlope: 0
  3024. outSlope: 0
  3025. tangentMode: 0
  3026. - serializedVersion: 2
  3027. time: 1
  3028. value: 1
  3029. inSlope: 0
  3030. outSlope: 0
  3031. tangentMode: 0
  3032. m_PreInfinity: 2
  3033. m_PostInfinity: 2
  3034. m_RotationOrder: 4
  3035. minCurve:
  3036. serializedVersion: 2
  3037. m_Curve:
  3038. - serializedVersion: 2
  3039. time: 0
  3040. value: 0
  3041. inSlope: 0
  3042. outSlope: 0
  3043. tangentMode: 0
  3044. - serializedVersion: 2
  3045. time: 1
  3046. value: 0
  3047. inSlope: 0
  3048. outSlope: 0
  3049. tangentMode: 0
  3050. m_PreInfinity: 2
  3051. m_PostInfinity: 2
  3052. m_RotationOrder: 4
  3053. mode1: 0
  3054. vectorComponentCount1: 4
  3055. color1:
  3056. serializedVersion: 2
  3057. minMaxState: 0
  3058. minColor: {r: 1, g: 1, b: 1, a: 1}
  3059. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3060. maxGradient:
  3061. serializedVersion: 2
  3062. key0: {r: 1, g: 1, b: 1, a: 1}
  3063. key1: {r: 1, g: 1, b: 1, a: 1}
  3064. key2: {r: 0, g: 0, b: 0, a: 0}
  3065. key3: {r: 0, g: 0, b: 0, a: 0}
  3066. key4: {r: 0, g: 0, b: 0, a: 0}
  3067. key5: {r: 0, g: 0, b: 0, a: 0}
  3068. key6: {r: 0, g: 0, b: 0, a: 0}
  3069. key7: {r: 0, g: 0, b: 0, a: 0}
  3070. ctime0: 0
  3071. ctime1: 65535
  3072. ctime2: 0
  3073. ctime3: 0
  3074. ctime4: 0
  3075. ctime5: 0
  3076. ctime6: 0
  3077. ctime7: 0
  3078. atime0: 0
  3079. atime1: 65535
  3080. atime2: 0
  3081. atime3: 0
  3082. atime4: 0
  3083. atime5: 0
  3084. atime6: 0
  3085. atime7: 0
  3086. m_Mode: 0
  3087. m_NumColorKeys: 2
  3088. m_NumAlphaKeys: 2
  3089. minGradient:
  3090. serializedVersion: 2
  3091. key0: {r: 1, g: 1, b: 1, a: 1}
  3092. key1: {r: 1, g: 1, b: 1, a: 1}
  3093. key2: {r: 0, g: 0, b: 0, a: 0}
  3094. key3: {r: 0, g: 0, b: 0, a: 0}
  3095. key4: {r: 0, g: 0, b: 0, a: 0}
  3096. key5: {r: 0, g: 0, b: 0, a: 0}
  3097. key6: {r: 0, g: 0, b: 0, a: 0}
  3098. key7: {r: 0, g: 0, b: 0, a: 0}
  3099. ctime0: 0
  3100. ctime1: 65535
  3101. ctime2: 0
  3102. ctime3: 0
  3103. ctime4: 0
  3104. ctime5: 0
  3105. ctime6: 0
  3106. ctime7: 0
  3107. atime0: 0
  3108. atime1: 65535
  3109. atime2: 0
  3110. atime3: 0
  3111. atime4: 0
  3112. atime5: 0
  3113. atime6: 0
  3114. atime7: 0
  3115. m_Mode: 0
  3116. m_NumColorKeys: 2
  3117. m_NumAlphaKeys: 2
  3118. vector1_0:
  3119. serializedVersion: 2
  3120. minMaxState: 0
  3121. scalar: 0
  3122. minScalar: 0
  3123. maxCurve:
  3124. serializedVersion: 2
  3125. m_Curve:
  3126. - serializedVersion: 2
  3127. time: 0
  3128. value: 1
  3129. inSlope: 0
  3130. outSlope: 0
  3131. tangentMode: 0
  3132. - serializedVersion: 2
  3133. time: 1
  3134. value: 1
  3135. inSlope: 0
  3136. outSlope: 0
  3137. tangentMode: 0
  3138. m_PreInfinity: 2
  3139. m_PostInfinity: 2
  3140. m_RotationOrder: 4
  3141. minCurve:
  3142. serializedVersion: 2
  3143. m_Curve:
  3144. - serializedVersion: 2
  3145. time: 0
  3146. value: 0
  3147. inSlope: 0
  3148. outSlope: 0
  3149. tangentMode: 0
  3150. - serializedVersion: 2
  3151. time: 1
  3152. value: 0
  3153. inSlope: 0
  3154. outSlope: 0
  3155. tangentMode: 0
  3156. m_PreInfinity: 2
  3157. m_PostInfinity: 2
  3158. m_RotationOrder: 4
  3159. vector1_1:
  3160. serializedVersion: 2
  3161. minMaxState: 0
  3162. scalar: 0
  3163. minScalar: 0
  3164. maxCurve:
  3165. serializedVersion: 2
  3166. m_Curve:
  3167. - serializedVersion: 2
  3168. time: 0
  3169. value: 1
  3170. inSlope: 0
  3171. outSlope: 0
  3172. tangentMode: 0
  3173. - serializedVersion: 2
  3174. time: 1
  3175. value: 1
  3176. inSlope: 0
  3177. outSlope: 0
  3178. tangentMode: 0
  3179. m_PreInfinity: 2
  3180. m_PostInfinity: 2
  3181. m_RotationOrder: 4
  3182. minCurve:
  3183. serializedVersion: 2
  3184. m_Curve:
  3185. - serializedVersion: 2
  3186. time: 0
  3187. value: 0
  3188. inSlope: 0
  3189. outSlope: 0
  3190. tangentMode: 0
  3191. - serializedVersion: 2
  3192. time: 1
  3193. value: 0
  3194. inSlope: 0
  3195. outSlope: 0
  3196. tangentMode: 0
  3197. m_PreInfinity: 2
  3198. m_PostInfinity: 2
  3199. m_RotationOrder: 4
  3200. vector1_2:
  3201. serializedVersion: 2
  3202. minMaxState: 0
  3203. scalar: 0
  3204. minScalar: 0
  3205. maxCurve:
  3206. serializedVersion: 2
  3207. m_Curve:
  3208. - serializedVersion: 2
  3209. time: 0
  3210. value: 1
  3211. inSlope: 0
  3212. outSlope: 0
  3213. tangentMode: 0
  3214. - serializedVersion: 2
  3215. time: 1
  3216. value: 1
  3217. inSlope: 0
  3218. outSlope: 0
  3219. tangentMode: 0
  3220. m_PreInfinity: 2
  3221. m_PostInfinity: 2
  3222. m_RotationOrder: 4
  3223. minCurve:
  3224. serializedVersion: 2
  3225. m_Curve:
  3226. - serializedVersion: 2
  3227. time: 0
  3228. value: 0
  3229. inSlope: 0
  3230. outSlope: 0
  3231. tangentMode: 0
  3232. - serializedVersion: 2
  3233. time: 1
  3234. value: 0
  3235. inSlope: 0
  3236. outSlope: 0
  3237. tangentMode: 0
  3238. m_PreInfinity: 2
  3239. m_PostInfinity: 2
  3240. m_RotationOrder: 4
  3241. vector1_3:
  3242. serializedVersion: 2
  3243. minMaxState: 0
  3244. scalar: 0
  3245. minScalar: 0
  3246. maxCurve:
  3247. serializedVersion: 2
  3248. m_Curve:
  3249. - serializedVersion: 2
  3250. time: 0
  3251. value: 1
  3252. inSlope: 0
  3253. outSlope: 0
  3254. tangentMode: 0
  3255. - serializedVersion: 2
  3256. time: 1
  3257. value: 1
  3258. inSlope: 0
  3259. outSlope: 0
  3260. tangentMode: 0
  3261. m_PreInfinity: 2
  3262. m_PostInfinity: 2
  3263. m_RotationOrder: 4
  3264. minCurve:
  3265. serializedVersion: 2
  3266. m_Curve:
  3267. - serializedVersion: 2
  3268. time: 0
  3269. value: 0
  3270. inSlope: 0
  3271. outSlope: 0
  3272. tangentMode: 0
  3273. - serializedVersion: 2
  3274. time: 1
  3275. value: 0
  3276. inSlope: 0
  3277. outSlope: 0
  3278. tangentMode: 0
  3279. m_PreInfinity: 2
  3280. m_PostInfinity: 2
  3281. m_RotationOrder: 4
  3282. --- !u!199 &199154704347157076
  3283. ParticleSystemRenderer:
  3284. serializedVersion: 4
  3285. m_ObjectHideFlags: 1
  3286. m_PrefabParentObject: {fileID: 0}
  3287. m_PrefabInternal: {fileID: 100100000}
  3288. m_GameObject: {fileID: 1762423841713276}
  3289. m_Enabled: 1
  3290. m_CastShadows: 0
  3291. m_ReceiveShadows: 0
  3292. m_MotionVectors: 1
  3293. m_LightProbeUsage: 0
  3294. m_ReflectionProbeUsage: 0
  3295. m_Materials:
  3296. - {fileID: 2100000, guid: f55d44db4612b10438c11e63bc1ea9ca, type: 2}
  3297. - {fileID: 0}
  3298. m_StaticBatchInfo:
  3299. firstSubMesh: 0
  3300. subMeshCount: 0
  3301. m_StaticBatchRoot: {fileID: 0}
  3302. m_ProbeAnchor: {fileID: 0}
  3303. m_LightProbeVolumeOverride: {fileID: 0}
  3304. m_ScaleInLightmap: 1
  3305. m_PreserveUVs: 0
  3306. m_IgnoreNormalsForChartDetection: 0
  3307. m_ImportantGI: 0
  3308. m_SelectedEditorRenderState: 0
  3309. m_MinimumChartSize: 4
  3310. m_AutoUVMaxDistance: 0.5
  3311. m_AutoUVMaxAngle: 89
  3312. m_LightmapParameters: {fileID: 0}
  3313. m_SortingLayerID: 0
  3314. m_SortingLayer: 0
  3315. m_SortingOrder: 0
  3316. m_RenderMode: 0
  3317. m_SortMode: 0
  3318. m_MinParticleSize: 0
  3319. m_MaxParticleSize: 0.5
  3320. m_CameraVelocityScale: 0
  3321. m_VelocityScale: 0
  3322. m_LengthScale: 2
  3323. m_SortingFudge: 0
  3324. m_NormalDirection: 1
  3325. m_RenderAlignment: 0
  3326. m_Pivot: {x: 0, y: 0, z: 0}
  3327. m_UseCustomVertexStreams: 0
  3328. m_VertexStreams: 00010304
  3329. m_Mesh: {fileID: 0}
  3330. m_Mesh1: {fileID: 0}
  3331. m_Mesh2: {fileID: 0}
  3332. m_Mesh3: {fileID: 0}
  3333. m_MaskInteraction: 0