FX_Sparkles_Small_01.prefab 75 KB

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