FX_Steam.prefab 75 KB

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