FX_Flies_01.prefab 73 KB

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