FX_Wind_Hard_01.prefab 75 KB

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