FX_Fairy_01.prefab 74 KB

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