FX_Bubbles_Float_01.prefab 76 KB

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