ParticlePrefab.prefab 72 KB

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