GlowOrbBlue.prefab 77 KB

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