EmojiDisappointed.prefab 80 KB

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