FX_Smoke_Black_Small_01.prefab 75 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: 1181407305952352}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1181407305952352
  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: 4629650919546838}
  22. - component: {fileID: 198548239225768772}
  23. - component: {fileID: 199319671110171668}
  24. m_Layer: 0
  25. m_Name: FX_Smoke_Black_Small_01
  26. m_TagString: Untagged
  27. m_Icon: {fileID: 0}
  28. m_NavMeshLayer: 0
  29. m_StaticEditorFlags: 0
  30. m_IsActive: 1
  31. --- !u!4 &4629650919546838
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1181407305952352}
  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 &198548239225768772
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1181407305952352}
  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: 1266413625
  104. InitialModule:
  105. serializedVersion: 3
  106. enabled: 1
  107. startLifetime:
  108. serializedVersion: 2
  109. minMaxState: 3
  110. scalar: 3
  111. minScalar: 2
  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. m_PreInfinity: 2
  122. m_PostInfinity: 2
  123. m_RotationOrder: 0
  124. minCurve:
  125. serializedVersion: 2
  126. m_Curve:
  127. - serializedVersion: 2
  128. time: 0
  129. value: 0.8
  130. inSlope: 0
  131. outSlope: 0
  132. tangentMode: 0
  133. m_PreInfinity: 2
  134. m_PostInfinity: 2
  135. m_RotationOrder: 0
  136. startSpeed:
  137. serializedVersion: 2
  138. minMaxState: 0
  139. scalar: 0
  140. minScalar: 5
  141. maxCurve:
  142. serializedVersion: 2
  143. m_Curve:
  144. - serializedVersion: 2
  145. time: 0
  146. value: 1
  147. inSlope: 0
  148. outSlope: 0
  149. tangentMode: 0
  150. - serializedVersion: 2
  151. time: 1
  152. value: 1
  153. inSlope: 0
  154. outSlope: 0
  155. tangentMode: 0
  156. m_PreInfinity: 2
  157. m_PostInfinity: 2
  158. m_RotationOrder: 4
  159. minCurve:
  160. serializedVersion: 2
  161. m_Curve:
  162. - serializedVersion: 2
  163. time: 0
  164. value: 0
  165. inSlope: 0
  166. outSlope: 0
  167. tangentMode: 0
  168. - serializedVersion: 2
  169. time: 1
  170. value: 0
  171. inSlope: 0
  172. outSlope: 0
  173. tangentMode: 0
  174. m_PreInfinity: 2
  175. m_PostInfinity: 2
  176. m_RotationOrder: 4
  177. startColor:
  178. serializedVersion: 2
  179. minMaxState: 0
  180. minColor: {r: 1, g: 1, b: 1, a: 1}
  181. maxColor: {r: 1, g: 1, b: 1, a: 1}
  182. maxGradient:
  183. serializedVersion: 2
  184. key0: {r: 1, g: 1, b: 1, a: 1}
  185. key1: {r: 1, g: 1, b: 1, a: 1}
  186. key2: {r: 0, g: 0, b: 0, a: 0}
  187. key3: {r: 0, g: 0, b: 0, a: 0}
  188. key4: {r: 0, g: 0, b: 0, a: 0}
  189. key5: {r: 0, g: 0, b: 0, a: 0}
  190. key6: {r: 0, g: 0, b: 0, a: 0}
  191. key7: {r: 0, g: 0, b: 0, a: 0}
  192. ctime0: 0
  193. ctime1: 65535
  194. ctime2: 0
  195. ctime3: 0
  196. ctime4: 0
  197. ctime5: 0
  198. ctime6: 0
  199. ctime7: 0
  200. atime0: 0
  201. atime1: 65535
  202. atime2: 0
  203. atime3: 0
  204. atime4: 0
  205. atime5: 0
  206. atime6: 0
  207. atime7: 0
  208. m_Mode: 0
  209. m_NumColorKeys: 2
  210. m_NumAlphaKeys: 2
  211. minGradient:
  212. serializedVersion: 2
  213. key0: {r: 1, g: 1, b: 1, a: 1}
  214. key1: {r: 1, g: 1, b: 1, a: 1}
  215. key2: {r: 0, g: 0, b: 0, a: 0}
  216. key3: {r: 0, g: 0, b: 0, a: 0}
  217. key4: {r: 0, g: 0, b: 0, a: 0}
  218. key5: {r: 0, g: 0, b: 0, a: 0}
  219. key6: {r: 0, g: 0, b: 0, a: 0}
  220. key7: {r: 0, g: 0, b: 0, a: 0}
  221. ctime0: 0
  222. ctime1: 65535
  223. ctime2: 0
  224. ctime3: 0
  225. ctime4: 0
  226. ctime5: 0
  227. ctime6: 0
  228. ctime7: 0
  229. atime0: 0
  230. atime1: 65535
  231. atime2: 0
  232. atime3: 0
  233. atime4: 0
  234. atime5: 0
  235. atime6: 0
  236. atime7: 0
  237. m_Mode: 0
  238. m_NumColorKeys: 2
  239. m_NumAlphaKeys: 2
  240. startSize:
  241. serializedVersion: 2
  242. minMaxState: 3
  243. scalar: 8
  244. minScalar: 3
  245. maxCurve:
  246. serializedVersion: 2
  247. m_Curve:
  248. - serializedVersion: 2
  249. time: 0
  250. value: 1
  251. inSlope: 0
  252. outSlope: 0
  253. tangentMode: 0
  254. - serializedVersion: 2
  255. time: 1
  256. value: 1
  257. inSlope: 0
  258. outSlope: 0
  259. tangentMode: 0
  260. m_PreInfinity: 2
  261. m_PostInfinity: 2
  262. m_RotationOrder: 4
  263. minCurve:
  264. serializedVersion: 2
  265. m_Curve:
  266. - serializedVersion: 2
  267. time: 0
  268. value: 0
  269. inSlope: 0
  270. outSlope: 0
  271. tangentMode: 0
  272. - serializedVersion: 2
  273. time: 1
  274. value: 0
  275. inSlope: 0
  276. outSlope: 0
  277. tangentMode: 0
  278. m_PreInfinity: 2
  279. m_PostInfinity: 2
  280. m_RotationOrder: 4
  281. startSizeY:
  282. serializedVersion: 2
  283. minMaxState: 3
  284. scalar: 1
  285. minScalar: 1
  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. - serializedVersion: 2
  296. time: 1
  297. value: 1
  298. inSlope: 0
  299. outSlope: 0
  300. tangentMode: 0
  301. m_PreInfinity: 2
  302. m_PostInfinity: 2
  303. m_RotationOrder: 4
  304. minCurve:
  305. serializedVersion: 2
  306. m_Curve:
  307. - serializedVersion: 2
  308. time: 0
  309. value: 0
  310. inSlope: 0
  311. outSlope: 0
  312. tangentMode: 0
  313. - serializedVersion: 2
  314. time: 1
  315. value: 0
  316. inSlope: 0
  317. outSlope: 0
  318. tangentMode: 0
  319. m_PreInfinity: 2
  320. m_PostInfinity: 2
  321. m_RotationOrder: 4
  322. startSizeZ:
  323. serializedVersion: 2
  324. minMaxState: 3
  325. scalar: 1
  326. minScalar: 1
  327. maxCurve:
  328. serializedVersion: 2
  329. m_Curve:
  330. - serializedVersion: 2
  331. time: 0
  332. value: 1
  333. inSlope: 0
  334. outSlope: 0
  335. tangentMode: 0
  336. - serializedVersion: 2
  337. time: 1
  338. value: 1
  339. inSlope: 0
  340. outSlope: 0
  341. tangentMode: 0
  342. m_PreInfinity: 2
  343. m_PostInfinity: 2
  344. m_RotationOrder: 4
  345. minCurve:
  346. serializedVersion: 2
  347. m_Curve:
  348. - serializedVersion: 2
  349. time: 0
  350. value: 0
  351. inSlope: 0
  352. outSlope: 0
  353. tangentMode: 0
  354. - serializedVersion: 2
  355. time: 1
  356. value: 0
  357. inSlope: 0
  358. outSlope: 0
  359. tangentMode: 0
  360. m_PreInfinity: 2
  361. m_PostInfinity: 2
  362. m_RotationOrder: 4
  363. startRotationX:
  364. serializedVersion: 2
  365. minMaxState: 0
  366. scalar: 0
  367. minScalar: 0
  368. maxCurve:
  369. serializedVersion: 2
  370. m_Curve:
  371. - serializedVersion: 2
  372. time: 0
  373. value: 1
  374. inSlope: 0
  375. outSlope: 0
  376. tangentMode: 0
  377. - serializedVersion: 2
  378. time: 1
  379. value: 1
  380. inSlope: 0
  381. outSlope: 0
  382. tangentMode: 0
  383. m_PreInfinity: 2
  384. m_PostInfinity: 2
  385. m_RotationOrder: 4
  386. minCurve:
  387. serializedVersion: 2
  388. m_Curve:
  389. - serializedVersion: 2
  390. time: 0
  391. value: 0
  392. inSlope: 0
  393. outSlope: 0
  394. tangentMode: 0
  395. - serializedVersion: 2
  396. time: 1
  397. value: 0
  398. inSlope: 0
  399. outSlope: 0
  400. tangentMode: 0
  401. m_PreInfinity: 2
  402. m_PostInfinity: 2
  403. m_RotationOrder: 4
  404. startRotationY:
  405. serializedVersion: 2
  406. minMaxState: 0
  407. scalar: 0
  408. minScalar: 0
  409. maxCurve:
  410. serializedVersion: 2
  411. m_Curve:
  412. - serializedVersion: 2
  413. time: 0
  414. value: 1
  415. inSlope: 0
  416. outSlope: 0
  417. tangentMode: 0
  418. - serializedVersion: 2
  419. time: 1
  420. value: 1
  421. inSlope: 0
  422. outSlope: 0
  423. tangentMode: 0
  424. m_PreInfinity: 2
  425. m_PostInfinity: 2
  426. m_RotationOrder: 4
  427. minCurve:
  428. serializedVersion: 2
  429. m_Curve:
  430. - serializedVersion: 2
  431. time: 0
  432. value: 0
  433. inSlope: 0
  434. outSlope: 0
  435. tangentMode: 0
  436. - serializedVersion: 2
  437. time: 1
  438. value: 0
  439. inSlope: 0
  440. outSlope: 0
  441. tangentMode: 0
  442. m_PreInfinity: 2
  443. m_PostInfinity: 2
  444. m_RotationOrder: 4
  445. startRotation:
  446. serializedVersion: 2
  447. minMaxState: 0
  448. scalar: 0.13997541
  449. minScalar: 0
  450. maxCurve:
  451. serializedVersion: 2
  452. m_Curve:
  453. - serializedVersion: 2
  454. time: 0
  455. value: 1
  456. inSlope: 0
  457. outSlope: 0
  458. tangentMode: 0
  459. - serializedVersion: 2
  460. time: 1
  461. value: 1
  462. inSlope: 0
  463. outSlope: 0
  464. tangentMode: 0
  465. m_PreInfinity: 2
  466. m_PostInfinity: 2
  467. m_RotationOrder: 4
  468. minCurve:
  469. serializedVersion: 2
  470. m_Curve:
  471. - serializedVersion: 2
  472. time: 0
  473. value: 0
  474. inSlope: 0
  475. outSlope: 0
  476. tangentMode: 0
  477. - serializedVersion: 2
  478. time: 1
  479. value: 0
  480. inSlope: 0
  481. outSlope: 0
  482. tangentMode: 0
  483. m_PreInfinity: 2
  484. m_PostInfinity: 2
  485. m_RotationOrder: 4
  486. randomizeRotationDirection: 1
  487. maxNumParticles: 100
  488. size3D: 0
  489. rotation3D: 0
  490. gravityModifier:
  491. serializedVersion: 2
  492. minMaxState: 0
  493. scalar: -0.05
  494. minScalar: 0
  495. maxCurve:
  496. serializedVersion: 2
  497. m_Curve:
  498. - serializedVersion: 2
  499. time: 0
  500. value: 1
  501. inSlope: 0
  502. outSlope: 0
  503. tangentMode: 0
  504. - serializedVersion: 2
  505. time: 1
  506. value: 1
  507. inSlope: 0
  508. outSlope: 0
  509. tangentMode: 0
  510. m_PreInfinity: 2
  511. m_PostInfinity: 2
  512. m_RotationOrder: 4
  513. minCurve:
  514. serializedVersion: 2
  515. m_Curve:
  516. - serializedVersion: 2
  517. time: 0
  518. value: 0
  519. inSlope: 0
  520. outSlope: 0
  521. tangentMode: 0
  522. - serializedVersion: 2
  523. time: 1
  524. value: 0
  525. inSlope: 0
  526. outSlope: 0
  527. tangentMode: 0
  528. m_PreInfinity: 2
  529. m_PostInfinity: 2
  530. m_RotationOrder: 4
  531. ShapeModule:
  532. serializedVersion: 5
  533. enabled: 1
  534. type: 0
  535. angle: 0
  536. length: 5
  537. boxThickness: {x: 0, y: 0, z: 0}
  538. radiusThickness: 1
  539. donutRadius: 0.2
  540. m_Position: {x: 0, y: 0, z: 0}
  541. m_Rotation: {x: 0, y: 0, z: 0}
  542. m_Scale: {x: 1, y: 1, z: 1}
  543. placementMode: 0
  544. m_Mesh: {fileID: 0}
  545. m_MeshRenderer: {fileID: 0}
  546. m_SkinnedMeshRenderer: {fileID: 0}
  547. m_MeshMaterialIndex: 0
  548. m_MeshNormalOffset: 0
  549. m_UseMeshMaterialIndex: 0
  550. m_UseMeshColors: 1
  551. alignToDirection: 0
  552. randomDirectionAmount: 0
  553. sphericalDirectionAmount: 0
  554. randomPositionAmount: 0
  555. radius:
  556. value: 0.01
  557. mode: 0
  558. spread: 0
  559. speed:
  560. serializedVersion: 2
  561. minMaxState: 0
  562. scalar: 1
  563. minScalar: 1
  564. maxCurve:
  565. serializedVersion: 2
  566. m_Curve:
  567. - serializedVersion: 2
  568. time: 0
  569. value: 1
  570. inSlope: 0
  571. outSlope: 0
  572. tangentMode: 0
  573. - serializedVersion: 2
  574. time: 1
  575. value: 1
  576. inSlope: 0
  577. outSlope: 0
  578. tangentMode: 0
  579. m_PreInfinity: 2
  580. m_PostInfinity: 2
  581. m_RotationOrder: 4
  582. minCurve:
  583. serializedVersion: 2
  584. m_Curve:
  585. - serializedVersion: 2
  586. time: 0
  587. value: 0
  588. inSlope: 0
  589. outSlope: 0
  590. tangentMode: 0
  591. - serializedVersion: 2
  592. time: 1
  593. value: 0
  594. inSlope: 0
  595. outSlope: 0
  596. tangentMode: 0
  597. m_PreInfinity: 2
  598. m_PostInfinity: 2
  599. m_RotationOrder: 4
  600. arc:
  601. value: 360
  602. mode: 0
  603. spread: 0
  604. speed:
  605. serializedVersion: 2
  606. minMaxState: 0
  607. scalar: 1
  608. minScalar: 1
  609. maxCurve:
  610. serializedVersion: 2
  611. m_Curve:
  612. - serializedVersion: 2
  613. time: 0
  614. value: 1
  615. inSlope: 0
  616. outSlope: 0
  617. tangentMode: 0
  618. - serializedVersion: 2
  619. time: 1
  620. value: 1
  621. inSlope: 0
  622. outSlope: 0
  623. tangentMode: 0
  624. m_PreInfinity: 2
  625. m_PostInfinity: 2
  626. m_RotationOrder: 4
  627. minCurve:
  628. serializedVersion: 2
  629. m_Curve:
  630. - serializedVersion: 2
  631. time: 0
  632. value: 0
  633. inSlope: 0
  634. outSlope: 0
  635. tangentMode: 0
  636. - serializedVersion: 2
  637. time: 1
  638. value: 0
  639. inSlope: 0
  640. outSlope: 0
  641. tangentMode: 0
  642. m_PreInfinity: 2
  643. m_PostInfinity: 2
  644. m_RotationOrder: 4
  645. EmissionModule:
  646. enabled: 1
  647. serializedVersion: 4
  648. rateOverTime:
  649. serializedVersion: 2
  650. minMaxState: 0
  651. scalar: 6
  652. minScalar: 10
  653. maxCurve:
  654. serializedVersion: 2
  655. m_Curve:
  656. - serializedVersion: 2
  657. time: 0
  658. value: 1
  659. inSlope: 0
  660. outSlope: 0
  661. tangentMode: 0
  662. - serializedVersion: 2
  663. time: 1
  664. value: 1
  665. inSlope: 0
  666. outSlope: 0
  667. tangentMode: 0
  668. m_PreInfinity: 2
  669. m_PostInfinity: 2
  670. m_RotationOrder: 4
  671. minCurve:
  672. serializedVersion: 2
  673. m_Curve:
  674. - serializedVersion: 2
  675. time: 0
  676. value: 0
  677. inSlope: 0
  678. outSlope: 0
  679. tangentMode: 0
  680. - serializedVersion: 2
  681. time: 1
  682. value: 0
  683. inSlope: 0
  684. outSlope: 0
  685. tangentMode: 0
  686. m_PreInfinity: 2
  687. m_PostInfinity: 2
  688. m_RotationOrder: 4
  689. rateOverDistance:
  690. serializedVersion: 2
  691. minMaxState: 0
  692. scalar: 0
  693. minScalar: 0
  694. maxCurve:
  695. serializedVersion: 2
  696. m_Curve:
  697. - serializedVersion: 2
  698. time: 0
  699. value: 1
  700. inSlope: 0
  701. outSlope: 0
  702. tangentMode: 0
  703. - serializedVersion: 2
  704. time: 1
  705. value: 1
  706. inSlope: 0
  707. outSlope: 0
  708. tangentMode: 0
  709. m_PreInfinity: 2
  710. m_PostInfinity: 2
  711. m_RotationOrder: 4
  712. minCurve:
  713. serializedVersion: 2
  714. m_Curve:
  715. - serializedVersion: 2
  716. time: 0
  717. value: 0
  718. inSlope: 0
  719. outSlope: 0
  720. tangentMode: 0
  721. - serializedVersion: 2
  722. time: 1
  723. value: 0
  724. inSlope: 0
  725. outSlope: 0
  726. tangentMode: 0
  727. m_PreInfinity: 2
  728. m_PostInfinity: 2
  729. m_RotationOrder: 4
  730. m_BurstCount: 0
  731. m_Bursts: []
  732. SizeModule:
  733. enabled: 1
  734. curve:
  735. serializedVersion: 2
  736. minMaxState: 1
  737. scalar: 1
  738. minScalar: 1
  739. maxCurve:
  740. serializedVersion: 2
  741. m_Curve:
  742. - serializedVersion: 2
  743. time: 0
  744. value: 0
  745. inSlope: 0
  746. outSlope: 0
  747. tangentMode: 0
  748. - serializedVersion: 2
  749. time: 0.120829135
  750. value: 0.200519
  751. inSlope: 0.4424341
  752. outSlope: 0.4424341
  753. tangentMode: 0
  754. - serializedVersion: 2
  755. time: 0.9937744
  756. value: 1
  757. inSlope: 1.6172993
  758. outSlope: 1.6172993
  759. tangentMode: 0
  760. m_PreInfinity: 2
  761. m_PostInfinity: 2
  762. m_RotationOrder: 0
  763. minCurve:
  764. serializedVersion: 2
  765. m_Curve:
  766. - serializedVersion: 2
  767. time: 0
  768. value: 0
  769. inSlope: 0
  770. outSlope: 0
  771. tangentMode: 0
  772. - serializedVersion: 2
  773. time: 1
  774. value: 0
  775. inSlope: 0
  776. outSlope: 0
  777. tangentMode: 0
  778. m_PreInfinity: 2
  779. m_PostInfinity: 2
  780. m_RotationOrder: 4
  781. y:
  782. serializedVersion: 2
  783. minMaxState: 1
  784. scalar: 1
  785. minScalar: 1
  786. maxCurve:
  787. serializedVersion: 2
  788. m_Curve:
  789. - serializedVersion: 2
  790. time: 0
  791. value: 1
  792. inSlope: 0
  793. outSlope: 0
  794. tangentMode: 0
  795. - serializedVersion: 2
  796. time: 1
  797. value: 1
  798. inSlope: 0
  799. outSlope: 0
  800. tangentMode: 0
  801. m_PreInfinity: 2
  802. m_PostInfinity: 2
  803. m_RotationOrder: 4
  804. minCurve:
  805. serializedVersion: 2
  806. m_Curve:
  807. - serializedVersion: 2
  808. time: 0
  809. value: 0
  810. inSlope: 0
  811. outSlope: 0
  812. tangentMode: 0
  813. - serializedVersion: 2
  814. time: 1
  815. value: 0
  816. inSlope: 0
  817. outSlope: 0
  818. tangentMode: 0
  819. m_PreInfinity: 2
  820. m_PostInfinity: 2
  821. m_RotationOrder: 4
  822. z:
  823. serializedVersion: 2
  824. minMaxState: 1
  825. scalar: 1
  826. minScalar: 1
  827. maxCurve:
  828. serializedVersion: 2
  829. m_Curve:
  830. - serializedVersion: 2
  831. time: 0
  832. value: 1
  833. inSlope: 0
  834. outSlope: 0
  835. tangentMode: 0
  836. - serializedVersion: 2
  837. time: 1
  838. value: 1
  839. inSlope: 0
  840. outSlope: 0
  841. tangentMode: 0
  842. m_PreInfinity: 2
  843. m_PostInfinity: 2
  844. m_RotationOrder: 4
  845. minCurve:
  846. serializedVersion: 2
  847. m_Curve:
  848. - serializedVersion: 2
  849. time: 0
  850. value: 0
  851. inSlope: 0
  852. outSlope: 0
  853. tangentMode: 0
  854. - serializedVersion: 2
  855. time: 1
  856. value: 0
  857. inSlope: 0
  858. outSlope: 0
  859. tangentMode: 0
  860. m_PreInfinity: 2
  861. m_PostInfinity: 2
  862. m_RotationOrder: 4
  863. separateAxes: 0
  864. RotationModule:
  865. enabled: 1
  866. x:
  867. serializedVersion: 2
  868. minMaxState: 3
  869. scalar: 0
  870. minScalar: 0
  871. maxCurve:
  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. m_PreInfinity: 2
  881. m_PostInfinity: 2
  882. m_RotationOrder: 0
  883. minCurve:
  884. serializedVersion: 2
  885. m_Curve:
  886. - serializedVersion: 2
  887. time: 0
  888. value: 0
  889. inSlope: 0
  890. outSlope: 0
  891. tangentMode: 0
  892. m_PreInfinity: 2
  893. m_PostInfinity: 2
  894. m_RotationOrder: 0
  895. y:
  896. serializedVersion: 2
  897. minMaxState: 3
  898. scalar: 0
  899. minScalar: 0
  900. maxCurve:
  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. m_PreInfinity: 2
  910. m_PostInfinity: 2
  911. m_RotationOrder: 0
  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. m_PreInfinity: 2
  922. m_PostInfinity: 2
  923. m_RotationOrder: 0
  924. curve:
  925. serializedVersion: 2
  926. minMaxState: 3
  927. scalar: 3.1415925
  928. minScalar: -3.1415925
  929. maxCurve:
  930. serializedVersion: 2
  931. m_Curve:
  932. - serializedVersion: 2
  933. time: 0
  934. value: 1
  935. inSlope: 0
  936. outSlope: 0
  937. tangentMode: 0
  938. m_PreInfinity: 2
  939. m_PostInfinity: 2
  940. m_RotationOrder: 0
  941. minCurve:
  942. serializedVersion: 2
  943. m_Curve:
  944. - serializedVersion: 2
  945. time: 0
  946. value: 0.25
  947. inSlope: 0
  948. outSlope: 0
  949. tangentMode: 0
  950. m_PreInfinity: 2
  951. m_PostInfinity: 2
  952. m_RotationOrder: 0
  953. separateAxes: 0
  954. ColorModule:
  955. enabled: 1
  956. gradient:
  957. serializedVersion: 2
  958. minMaxState: 1
  959. minColor: {r: 1, g: 1, b: 1, a: 1}
  960. maxColor: {r: 1, g: 1, b: 1, a: 1}
  961. maxGradient:
  962. serializedVersion: 2
  963. key0: {r: 0.066176474, g: 0.066176474, b: 0.066176474, a: 0}
  964. key1: {r: 0.1102941, g: 0.1102941, b: 0.1102941, a: 0.7607843}
  965. key2: {r: 0.1397059, g: 0.13307482, b: 0.12121541, a: 0}
  966. key3: {r: 0, g: 0, b: 0, a: 0}
  967. key4: {r: 0, g: 0, b: 0, a: 0}
  968. key5: {r: 0, g: 0, b: 0, a: 0}
  969. key6: {r: 0, g: 0, b: 0, a: 0}
  970. key7: {r: 0, g: 0, b: 0, a: 0}
  971. ctime0: 0
  972. ctime1: 51657
  973. ctime2: 65535
  974. ctime3: 0
  975. ctime4: 0
  976. ctime5: 0
  977. ctime6: 0
  978. ctime7: 0
  979. atime0: 0
  980. atime1: 13642
  981. atime2: 65535
  982. atime3: 65535
  983. atime4: 65535
  984. atime5: 0
  985. atime6: 0
  986. atime7: 0
  987. m_Mode: 0
  988. m_NumColorKeys: 2
  989. m_NumAlphaKeys: 3
  990. minGradient:
  991. serializedVersion: 2
  992. key0: {r: 1, g: 1, b: 1, a: 1}
  993. key1: {r: 1, g: 1, b: 1, a: 1}
  994. key2: {r: 0, g: 0, b: 0, a: 0}
  995. key3: {r: 0, g: 0, b: 0, a: 0}
  996. key4: {r: 0, g: 0, b: 0, a: 0}
  997. key5: {r: 0, g: 0, b: 0, a: 0}
  998. key6: {r: 0, g: 0, b: 0, a: 0}
  999. key7: {r: 0, g: 0, b: 0, a: 0}
  1000. ctime0: 0
  1001. ctime1: 65535
  1002. ctime2: 0
  1003. ctime3: 0
  1004. ctime4: 0
  1005. ctime5: 0
  1006. ctime6: 0
  1007. ctime7: 0
  1008. atime0: 0
  1009. atime1: 65535
  1010. atime2: 0
  1011. atime3: 0
  1012. atime4: 0
  1013. atime5: 0
  1014. atime6: 0
  1015. atime7: 0
  1016. m_Mode: 0
  1017. m_NumColorKeys: 2
  1018. m_NumAlphaKeys: 2
  1019. UVModule:
  1020. enabled: 0
  1021. mode: 0
  1022. frameOverTime:
  1023. serializedVersion: 2
  1024. minMaxState: 1
  1025. scalar: 0.9999
  1026. minScalar: 0.9999
  1027. maxCurve:
  1028. serializedVersion: 2
  1029. m_Curve:
  1030. - serializedVersion: 2
  1031. time: 0
  1032. value: 0
  1033. inSlope: 0
  1034. outSlope: 1
  1035. tangentMode: 0
  1036. - serializedVersion: 2
  1037. time: 1
  1038. value: 1
  1039. inSlope: 1
  1040. outSlope: 0
  1041. tangentMode: 0
  1042. m_PreInfinity: 2
  1043. m_PostInfinity: 2
  1044. m_RotationOrder: 4
  1045. minCurve:
  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. startFrame:
  1064. serializedVersion: 2
  1065. minMaxState: 0
  1066. scalar: 0
  1067. minScalar: 0
  1068. maxCurve:
  1069. serializedVersion: 2
  1070. m_Curve:
  1071. - serializedVersion: 2
  1072. time: 0
  1073. value: 1
  1074. inSlope: 0
  1075. outSlope: 0
  1076. tangentMode: 0
  1077. - serializedVersion: 2
  1078. time: 1
  1079. value: 1
  1080. inSlope: 0
  1081. outSlope: 0
  1082. tangentMode: 0
  1083. m_PreInfinity: 2
  1084. m_PostInfinity: 2
  1085. m_RotationOrder: 4
  1086. minCurve:
  1087. serializedVersion: 2
  1088. m_Curve:
  1089. - serializedVersion: 2
  1090. time: 0
  1091. value: 0
  1092. inSlope: 0
  1093. outSlope: 0
  1094. tangentMode: 0
  1095. - serializedVersion: 2
  1096. time: 1
  1097. value: 0
  1098. inSlope: 0
  1099. outSlope: 0
  1100. tangentMode: 0
  1101. m_PreInfinity: 2
  1102. m_PostInfinity: 2
  1103. m_RotationOrder: 4
  1104. tilesX: 1
  1105. tilesY: 1
  1106. animationType: 0
  1107. rowIndex: 0
  1108. cycles: 1
  1109. uvChannelMask: -1
  1110. flipU: 0
  1111. flipV: 0
  1112. randomRow: 1
  1113. sprites:
  1114. - sprite: {fileID: 0}
  1115. VelocityModule:
  1116. enabled: 1
  1117. x:
  1118. serializedVersion: 2
  1119. minMaxState: 0
  1120. scalar: 0
  1121. minScalar: 0
  1122. maxCurve:
  1123. serializedVersion: 2
  1124. m_Curve:
  1125. - serializedVersion: 2
  1126. time: 0
  1127. value: 1
  1128. inSlope: 0
  1129. outSlope: 0
  1130. tangentMode: 0
  1131. - serializedVersion: 2
  1132. time: 1
  1133. value: 1
  1134. inSlope: 0
  1135. outSlope: 0
  1136. tangentMode: 0
  1137. m_PreInfinity: 2
  1138. m_PostInfinity: 2
  1139. m_RotationOrder: 4
  1140. minCurve:
  1141. serializedVersion: 2
  1142. m_Curve:
  1143. - serializedVersion: 2
  1144. time: 0
  1145. value: 0
  1146. inSlope: 0
  1147. outSlope: 0
  1148. tangentMode: 0
  1149. - serializedVersion: 2
  1150. time: 1
  1151. value: 0
  1152. inSlope: 0
  1153. outSlope: 0
  1154. tangentMode: 0
  1155. m_PreInfinity: 2
  1156. m_PostInfinity: 2
  1157. m_RotationOrder: 4
  1158. y:
  1159. serializedVersion: 2
  1160. minMaxState: 0
  1161. scalar: 0
  1162. minScalar: 0
  1163. maxCurve:
  1164. serializedVersion: 2
  1165. m_Curve:
  1166. - serializedVersion: 2
  1167. time: 0
  1168. value: 1
  1169. inSlope: 0
  1170. outSlope: 0
  1171. tangentMode: 0
  1172. - serializedVersion: 2
  1173. time: 1
  1174. value: 1
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 0
  1178. m_PreInfinity: 2
  1179. m_PostInfinity: 2
  1180. m_RotationOrder: 4
  1181. minCurve:
  1182. serializedVersion: 2
  1183. m_Curve:
  1184. - serializedVersion: 2
  1185. time: 0
  1186. value: 0
  1187. inSlope: 0
  1188. outSlope: 0
  1189. tangentMode: 0
  1190. - serializedVersion: 2
  1191. time: 1
  1192. value: 0
  1193. inSlope: 0
  1194. outSlope: 0
  1195. tangentMode: 0
  1196. m_PreInfinity: 2
  1197. m_PostInfinity: 2
  1198. m_RotationOrder: 4
  1199. z:
  1200. serializedVersion: 2
  1201. minMaxState: 0
  1202. scalar: 0
  1203. minScalar: 0
  1204. maxCurve:
  1205. serializedVersion: 2
  1206. m_Curve:
  1207. - serializedVersion: 2
  1208. time: 0
  1209. value: 1
  1210. inSlope: 0
  1211. outSlope: 0
  1212. tangentMode: 0
  1213. - serializedVersion: 2
  1214. time: 1
  1215. value: 1
  1216. inSlope: 0
  1217. outSlope: 0
  1218. tangentMode: 0
  1219. m_PreInfinity: 2
  1220. m_PostInfinity: 2
  1221. m_RotationOrder: 4
  1222. minCurve:
  1223. serializedVersion: 2
  1224. m_Curve:
  1225. - serializedVersion: 2
  1226. time: 0
  1227. value: 0
  1228. inSlope: 0
  1229. outSlope: 0
  1230. tangentMode: 0
  1231. - serializedVersion: 2
  1232. time: 1
  1233. value: 0
  1234. inSlope: 0
  1235. outSlope: 0
  1236. tangentMode: 0
  1237. m_PreInfinity: 2
  1238. m_PostInfinity: 2
  1239. m_RotationOrder: 4
  1240. inWorldSpace: 0
  1241. InheritVelocityModule:
  1242. enabled: 0
  1243. m_Mode: 0
  1244. m_Curve:
  1245. serializedVersion: 2
  1246. minMaxState: 0
  1247. scalar: 0
  1248. minScalar: 0
  1249. maxCurve:
  1250. serializedVersion: 2
  1251. m_Curve:
  1252. - serializedVersion: 2
  1253. time: 0
  1254. value: 1
  1255. inSlope: 0
  1256. outSlope: 0
  1257. tangentMode: 0
  1258. - serializedVersion: 2
  1259. time: 1
  1260. value: 1
  1261. inSlope: 0
  1262. outSlope: 0
  1263. tangentMode: 0
  1264. m_PreInfinity: 2
  1265. m_PostInfinity: 2
  1266. m_RotationOrder: 4
  1267. minCurve:
  1268. serializedVersion: 2
  1269. m_Curve:
  1270. - serializedVersion: 2
  1271. time: 0
  1272. value: 0
  1273. inSlope: 0
  1274. outSlope: 0
  1275. tangentMode: 0
  1276. - serializedVersion: 2
  1277. time: 1
  1278. value: 0
  1279. inSlope: 0
  1280. outSlope: 0
  1281. tangentMode: 0
  1282. m_PreInfinity: 2
  1283. m_PostInfinity: 2
  1284. m_RotationOrder: 4
  1285. ForceModule:
  1286. enabled: 0
  1287. x:
  1288. serializedVersion: 2
  1289. minMaxState: 0
  1290. scalar: 0
  1291. minScalar: 0
  1292. maxCurve:
  1293. serializedVersion: 2
  1294. m_Curve:
  1295. - serializedVersion: 2
  1296. time: 0
  1297. value: 1
  1298. inSlope: 0
  1299. outSlope: 0
  1300. tangentMode: 0
  1301. - serializedVersion: 2
  1302. time: 1
  1303. value: 1
  1304. inSlope: 0
  1305. outSlope: 0
  1306. tangentMode: 0
  1307. m_PreInfinity: 2
  1308. m_PostInfinity: 2
  1309. m_RotationOrder: 4
  1310. minCurve:
  1311. serializedVersion: 2
  1312. m_Curve:
  1313. - serializedVersion: 2
  1314. time: 0
  1315. value: 0
  1316. inSlope: 0
  1317. outSlope: 0
  1318. tangentMode: 0
  1319. - serializedVersion: 2
  1320. time: 1
  1321. value: 0
  1322. inSlope: 0
  1323. outSlope: 0
  1324. tangentMode: 0
  1325. m_PreInfinity: 2
  1326. m_PostInfinity: 2
  1327. m_RotationOrder: 4
  1328. y:
  1329. serializedVersion: 2
  1330. minMaxState: 0
  1331. scalar: 0
  1332. minScalar: 0
  1333. maxCurve:
  1334. serializedVersion: 2
  1335. m_Curve:
  1336. - serializedVersion: 2
  1337. time: 0
  1338. value: 1
  1339. inSlope: 0
  1340. outSlope: 0
  1341. tangentMode: 0
  1342. - serializedVersion: 2
  1343. time: 1
  1344. value: 1
  1345. inSlope: 0
  1346. outSlope: 0
  1347. tangentMode: 0
  1348. m_PreInfinity: 2
  1349. m_PostInfinity: 2
  1350. m_RotationOrder: 4
  1351. minCurve:
  1352. serializedVersion: 2
  1353. m_Curve:
  1354. - serializedVersion: 2
  1355. time: 0
  1356. value: 0
  1357. inSlope: 0
  1358. outSlope: 0
  1359. tangentMode: 0
  1360. - serializedVersion: 2
  1361. time: 1
  1362. value: 0
  1363. inSlope: 0
  1364. outSlope: 0
  1365. tangentMode: 0
  1366. m_PreInfinity: 2
  1367. m_PostInfinity: 2
  1368. m_RotationOrder: 4
  1369. z:
  1370. serializedVersion: 2
  1371. minMaxState: 0
  1372. scalar: 0
  1373. minScalar: 0
  1374. maxCurve:
  1375. serializedVersion: 2
  1376. m_Curve:
  1377. - serializedVersion: 2
  1378. time: 0
  1379. value: 1
  1380. inSlope: 0
  1381. outSlope: 0
  1382. tangentMode: 0
  1383. - serializedVersion: 2
  1384. time: 1
  1385. value: 1
  1386. inSlope: 0
  1387. outSlope: 0
  1388. tangentMode: 0
  1389. m_PreInfinity: 2
  1390. m_PostInfinity: 2
  1391. m_RotationOrder: 4
  1392. minCurve:
  1393. serializedVersion: 2
  1394. m_Curve:
  1395. - serializedVersion: 2
  1396. time: 0
  1397. value: 0
  1398. inSlope: 0
  1399. outSlope: 0
  1400. tangentMode: 0
  1401. - serializedVersion: 2
  1402. time: 1
  1403. value: 0
  1404. inSlope: 0
  1405. outSlope: 0
  1406. tangentMode: 0
  1407. m_PreInfinity: 2
  1408. m_PostInfinity: 2
  1409. m_RotationOrder: 4
  1410. inWorldSpace: 0
  1411. randomizePerFrame: 0
  1412. ExternalForcesModule:
  1413. enabled: 0
  1414. multiplier: 1
  1415. ClampVelocityModule:
  1416. enabled: 0
  1417. x:
  1418. serializedVersion: 2
  1419. minMaxState: 0
  1420. scalar: 1
  1421. minScalar: 1
  1422. maxCurve:
  1423. serializedVersion: 2
  1424. m_Curve:
  1425. - serializedVersion: 2
  1426. time: 0
  1427. value: 1
  1428. inSlope: 0
  1429. outSlope: 0
  1430. tangentMode: 0
  1431. - serializedVersion: 2
  1432. time: 1
  1433. value: 1
  1434. inSlope: 0
  1435. outSlope: 0
  1436. tangentMode: 0
  1437. m_PreInfinity: 2
  1438. m_PostInfinity: 2
  1439. m_RotationOrder: 4
  1440. minCurve:
  1441. serializedVersion: 2
  1442. m_Curve:
  1443. - serializedVersion: 2
  1444. time: 0
  1445. value: 0
  1446. inSlope: 0
  1447. outSlope: 0
  1448. tangentMode: 0
  1449. - serializedVersion: 2
  1450. time: 1
  1451. value: 0
  1452. inSlope: 0
  1453. outSlope: 0
  1454. tangentMode: 0
  1455. m_PreInfinity: 2
  1456. m_PostInfinity: 2
  1457. m_RotationOrder: 4
  1458. y:
  1459. serializedVersion: 2
  1460. minMaxState: 0
  1461. scalar: 1
  1462. minScalar: 1
  1463. maxCurve:
  1464. serializedVersion: 2
  1465. m_Curve:
  1466. - serializedVersion: 2
  1467. time: 0
  1468. value: 1
  1469. inSlope: 0
  1470. outSlope: 0
  1471. tangentMode: 0
  1472. - serializedVersion: 2
  1473. time: 1
  1474. value: 1
  1475. inSlope: 0
  1476. outSlope: 0
  1477. tangentMode: 0
  1478. m_PreInfinity: 2
  1479. m_PostInfinity: 2
  1480. m_RotationOrder: 4
  1481. minCurve:
  1482. serializedVersion: 2
  1483. m_Curve:
  1484. - serializedVersion: 2
  1485. time: 0
  1486. value: 0
  1487. inSlope: 0
  1488. outSlope: 0
  1489. tangentMode: 0
  1490. - serializedVersion: 2
  1491. time: 1
  1492. value: 0
  1493. inSlope: 0
  1494. outSlope: 0
  1495. tangentMode: 0
  1496. m_PreInfinity: 2
  1497. m_PostInfinity: 2
  1498. m_RotationOrder: 4
  1499. z:
  1500. serializedVersion: 2
  1501. minMaxState: 0
  1502. scalar: 1
  1503. minScalar: 1
  1504. maxCurve:
  1505. serializedVersion: 2
  1506. m_Curve:
  1507. - serializedVersion: 2
  1508. time: 0
  1509. value: 1
  1510. inSlope: 0
  1511. outSlope: 0
  1512. tangentMode: 0
  1513. - serializedVersion: 2
  1514. time: 1
  1515. value: 1
  1516. inSlope: 0
  1517. outSlope: 0
  1518. tangentMode: 0
  1519. m_PreInfinity: 2
  1520. m_PostInfinity: 2
  1521. m_RotationOrder: 4
  1522. minCurve:
  1523. serializedVersion: 2
  1524. m_Curve:
  1525. - serializedVersion: 2
  1526. time: 0
  1527. value: 0
  1528. inSlope: 0
  1529. outSlope: 0
  1530. tangentMode: 0
  1531. - serializedVersion: 2
  1532. time: 1
  1533. value: 0
  1534. inSlope: 0
  1535. outSlope: 0
  1536. tangentMode: 0
  1537. m_PreInfinity: 2
  1538. m_PostInfinity: 2
  1539. m_RotationOrder: 4
  1540. magnitude:
  1541. serializedVersion: 2
  1542. minMaxState: 0
  1543. scalar: 1.85
  1544. minScalar: 1
  1545. maxCurve:
  1546. serializedVersion: 2
  1547. m_Curve:
  1548. - serializedVersion: 2
  1549. time: 0
  1550. value: 1
  1551. inSlope: 0
  1552. outSlope: 0
  1553. tangentMode: 0
  1554. - serializedVersion: 2
  1555. time: 1
  1556. value: 1
  1557. inSlope: 0
  1558. outSlope: 0
  1559. tangentMode: 0
  1560. m_PreInfinity: 2
  1561. m_PostInfinity: 2
  1562. m_RotationOrder: 4
  1563. minCurve:
  1564. serializedVersion: 2
  1565. m_Curve:
  1566. - serializedVersion: 2
  1567. time: 0
  1568. value: 0
  1569. inSlope: 0
  1570. outSlope: 0
  1571. tangentMode: 0
  1572. - serializedVersion: 2
  1573. time: 1
  1574. value: 0
  1575. inSlope: 0
  1576. outSlope: 0
  1577. tangentMode: 0
  1578. m_PreInfinity: 2
  1579. m_PostInfinity: 2
  1580. m_RotationOrder: 4
  1581. separateAxis: 0
  1582. inWorldSpace: 0
  1583. dampen: 1
  1584. NoiseModule:
  1585. enabled: 1
  1586. strength:
  1587. serializedVersion: 2
  1588. minMaxState: 0
  1589. scalar: 0.1
  1590. minScalar: 1
  1591. maxCurve:
  1592. serializedVersion: 2
  1593. m_Curve:
  1594. - serializedVersion: 2
  1595. time: 0
  1596. value: 0
  1597. inSlope: 0.25340545
  1598. outSlope: 0.25340545
  1599. tangentMode: 0
  1600. - serializedVersion: 2
  1601. time: 0.34053278
  1602. value: 0.10365924
  1603. inSlope: 1.0009061
  1604. outSlope: 1.0009061
  1605. tangentMode: 0
  1606. - serializedVersion: 2
  1607. time: 1
  1608. value: 0.66139984
  1609. inSlope: 0
  1610. outSlope: 0
  1611. tangentMode: 0
  1612. m_PreInfinity: 2
  1613. m_PostInfinity: 2
  1614. m_RotationOrder: 0
  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.5
  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: 0.11963928
  1739. inSlope: -1.7758483
  1740. outSlope: -1.7758483
  1741. tangentMode: 0
  1742. m_PreInfinity: 2
  1743. m_PostInfinity: 2
  1744. m_RotationOrder: 0
  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 &199319671110171668
  3271. ParticleSystemRenderer:
  3272. serializedVersion: 4
  3273. m_ObjectHideFlags: 1
  3274. m_PrefabParentObject: {fileID: 0}
  3275. m_PrefabInternal: {fileID: 100100000}
  3276. m_GameObject: {fileID: 1181407305952352}
  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: 285b0791008c39844936e10062f85a3c, 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: 4
  3305. m_SortMode: 3
  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: 2
  3314. m_Pivot: {x: 0, y: 0, z: 0}
  3315. m_UseCustomVertexStreams: 0
  3316. m_VertexStreams: 00010304
  3317. m_Mesh: {fileID: 4300000, guid: 41e18b74cd8bd984b94d58c040bb66da, type: 3}
  3318. m_Mesh1: {fileID: 0}
  3319. m_Mesh2: {fileID: 0}
  3320. m_Mesh3: {fileID: 0}
  3321. m_MaskInteraction: 0