BalloonPopNoSound.prefab 76 KB

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