NotePartical.prefab 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730
  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: 1976919018343882}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1976919018343882
  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: 4784130365705390}
  22. - component: {fileID: 198047900219734454}
  23. - component: {fileID: 199997109612976202}
  24. m_Layer: 0
  25. m_Name: NotePartical
  26. m_TagString: Untagged
  27. m_Icon: {fileID: 0}
  28. m_NavMeshLayer: 0
  29. m_StaticEditorFlags: 0
  30. m_IsActive: 1
  31. --- !u!4 &4784130365705390
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1976919018343882}
  37. m_LocalRotation: {x: -0.6599197, y: 0.25398037, z: 0.6599197, w: 0.25398037}
  38. m_LocalPosition: {x: 12.58, y: 2.1, z: -2.1}
  39. m_LocalScale: {x: 1, y: 2.6849442, z: 1.0526316}
  40. m_Children: []
  41. m_Father: {fileID: 0}
  42. m_RootOrder: 0
  43. m_LocalEulerAnglesHint: {x: -42.1, y: -90.00001, z: 180}
  44. --- !u!198 &198047900219734454
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1976919018343882}
  50. serializedVersion: 5
  51. lengthInSec: 5
  52. simulationSpeed: 2
  53. looping: 1
  54. prewarm: 0
  55. playOnAwake: 1
  56. autoRandomSeed: 1
  57. startDelay:
  58. scalar: 0
  59. maxCurve:
  60. serializedVersion: 2
  61. m_Curve:
  62. - serializedVersion: 2
  63. time: 0
  64. value: 1
  65. inSlope: 0
  66. outSlope: 0
  67. tangentMode: 0
  68. - serializedVersion: 2
  69. time: 1
  70. value: 1
  71. inSlope: 0
  72. outSlope: 0
  73. tangentMode: 0
  74. m_PreInfinity: 2
  75. m_PostInfinity: 2
  76. m_RotationOrder: 4
  77. minCurve:
  78. serializedVersion: 2
  79. m_Curve:
  80. - serializedVersion: 2
  81. time: 0
  82. value: 0
  83. inSlope: 0
  84. outSlope: 0
  85. tangentMode: 0
  86. - serializedVersion: 2
  87. time: 1
  88. value: 0
  89. inSlope: 0
  90. outSlope: 0
  91. tangentMode: 0
  92. m_PreInfinity: 2
  93. m_PostInfinity: 2
  94. m_RotationOrder: 4
  95. minMaxState: 0
  96. moveWithTransform: 0
  97. moveWithCustomTransform: {fileID: 0}
  98. scalingMode: 2
  99. randomSeed: 1124945505
  100. InitialModule:
  101. serializedVersion: 3
  102. enabled: 1
  103. startLifetime:
  104. scalar: 5
  105. maxCurve:
  106. serializedVersion: 2
  107. m_Curve:
  108. - serializedVersion: 2
  109. time: 0
  110. value: 1
  111. inSlope: 0
  112. outSlope: 0
  113. tangentMode: 0
  114. - serializedVersion: 2
  115. time: 1
  116. value: 1
  117. inSlope: 0
  118. outSlope: 0
  119. tangentMode: 0
  120. m_PreInfinity: 2
  121. m_PostInfinity: 2
  122. m_RotationOrder: 4
  123. minCurve:
  124. serializedVersion: 2
  125. m_Curve:
  126. - serializedVersion: 2
  127. time: 0
  128. value: 0
  129. inSlope: 0
  130. outSlope: 0
  131. tangentMode: 0
  132. - serializedVersion: 2
  133. time: 1
  134. value: 0
  135. inSlope: 0
  136. outSlope: 0
  137. tangentMode: 0
  138. m_PreInfinity: 2
  139. m_PostInfinity: 2
  140. m_RotationOrder: 4
  141. minMaxState: 0
  142. startSpeed:
  143. scalar: 1
  144. maxCurve:
  145. serializedVersion: 2
  146. m_Curve:
  147. - serializedVersion: 2
  148. time: 0
  149. value: 1
  150. inSlope: 0
  151. outSlope: 0
  152. tangentMode: 0
  153. - serializedVersion: 2
  154. time: 1
  155. value: 1
  156. inSlope: 0
  157. outSlope: 0
  158. tangentMode: 0
  159. m_PreInfinity: 2
  160. m_PostInfinity: 2
  161. m_RotationOrder: 4
  162. minCurve:
  163. serializedVersion: 2
  164. m_Curve:
  165. - serializedVersion: 2
  166. time: 0
  167. value: 0
  168. inSlope: 0
  169. outSlope: 0
  170. tangentMode: 0
  171. - serializedVersion: 2
  172. time: 1
  173. value: 0
  174. inSlope: 0
  175. outSlope: 0
  176. tangentMode: 0
  177. m_PreInfinity: 2
  178. m_PostInfinity: 2
  179. m_RotationOrder: 4
  180. minMaxState: 0
  181. startColor:
  182. serializedVersion: 2
  183. maxGradient:
  184. key0:
  185. serializedVersion: 2
  186. rgba: 4294967295
  187. key1:
  188. serializedVersion: 2
  189. rgba: 4294967295
  190. key2:
  191. serializedVersion: 2
  192. rgba: 0
  193. key3:
  194. serializedVersion: 2
  195. rgba: 0
  196. key4:
  197. serializedVersion: 2
  198. rgba: 0
  199. key5:
  200. serializedVersion: 2
  201. rgba: 0
  202. key6:
  203. serializedVersion: 2
  204. rgba: 0
  205. key7:
  206. serializedVersion: 2
  207. rgba: 0
  208. ctime0: 0
  209. ctime1: 65535
  210. ctime2: 0
  211. ctime3: 0
  212. ctime4: 0
  213. ctime5: 0
  214. ctime6: 0
  215. ctime7: 0
  216. atime0: 0
  217. atime1: 65535
  218. atime2: 0
  219. atime3: 0
  220. atime4: 0
  221. atime5: 0
  222. atime6: 0
  223. atime7: 0
  224. m_Mode: 0
  225. m_NumColorKeys: 2
  226. m_NumAlphaKeys: 2
  227. minGradient:
  228. key0:
  229. serializedVersion: 2
  230. rgba: 4294967295
  231. key1:
  232. serializedVersion: 2
  233. rgba: 4294967295
  234. key2:
  235. serializedVersion: 2
  236. rgba: 0
  237. key3:
  238. serializedVersion: 2
  239. rgba: 0
  240. key4:
  241. serializedVersion: 2
  242. rgba: 0
  243. key5:
  244. serializedVersion: 2
  245. rgba: 0
  246. key6:
  247. serializedVersion: 2
  248. rgba: 0
  249. key7:
  250. serializedVersion: 2
  251. rgba: 0
  252. ctime0: 0
  253. ctime1: 65535
  254. ctime2: 0
  255. ctime3: 0
  256. ctime4: 0
  257. ctime5: 0
  258. ctime6: 0
  259. ctime7: 0
  260. atime0: 0
  261. atime1: 65535
  262. atime2: 0
  263. atime3: 0
  264. atime4: 0
  265. atime5: 0
  266. atime6: 0
  267. atime7: 0
  268. m_Mode: 0
  269. m_NumColorKeys: 2
  270. m_NumAlphaKeys: 2
  271. minColor: {r: 1, g: 1, b: 1, a: 1}
  272. maxColor: {r: 1, g: 1, b: 1, a: 1}
  273. minMaxState: 0
  274. startSize:
  275. scalar: 0.5
  276. maxCurve:
  277. serializedVersion: 2
  278. m_Curve:
  279. - serializedVersion: 2
  280. time: 0
  281. value: 1
  282. inSlope: 0
  283. outSlope: 0
  284. tangentMode: 0
  285. - serializedVersion: 2
  286. time: 1
  287. value: 1
  288. inSlope: 0
  289. outSlope: 0
  290. tangentMode: 0
  291. m_PreInfinity: 2
  292. m_PostInfinity: 2
  293. m_RotationOrder: 4
  294. minCurve:
  295. serializedVersion: 2
  296. m_Curve:
  297. - serializedVersion: 2
  298. time: 0
  299. value: 0
  300. inSlope: 0
  301. outSlope: 0
  302. tangentMode: 0
  303. - serializedVersion: 2
  304. time: 1
  305. value: 0
  306. inSlope: 0
  307. outSlope: 0
  308. tangentMode: 0
  309. m_PreInfinity: 2
  310. m_PostInfinity: 2
  311. m_RotationOrder: 4
  312. minMaxState: 0
  313. startSizeY:
  314. scalar: 1
  315. maxCurve:
  316. serializedVersion: 2
  317. m_Curve:
  318. - serializedVersion: 2
  319. time: 0
  320. value: 1
  321. inSlope: 0
  322. outSlope: 0
  323. tangentMode: 0
  324. - serializedVersion: 2
  325. time: 1
  326. value: 1
  327. inSlope: 0
  328. outSlope: 0
  329. tangentMode: 0
  330. m_PreInfinity: 2
  331. m_PostInfinity: 2
  332. m_RotationOrder: 4
  333. minCurve:
  334. serializedVersion: 2
  335. m_Curve:
  336. - serializedVersion: 2
  337. time: 0
  338. value: 0
  339. inSlope: 0
  340. outSlope: 0
  341. tangentMode: 0
  342. - serializedVersion: 2
  343. time: 1
  344. value: 0
  345. inSlope: 0
  346. outSlope: 0
  347. tangentMode: 0
  348. m_PreInfinity: 2
  349. m_PostInfinity: 2
  350. m_RotationOrder: 4
  351. minMaxState: 0
  352. startSizeZ:
  353. scalar: 1
  354. maxCurve:
  355. serializedVersion: 2
  356. m_Curve:
  357. - serializedVersion: 2
  358. time: 0
  359. value: 1
  360. inSlope: 0
  361. outSlope: 0
  362. tangentMode: 0
  363. - serializedVersion: 2
  364. time: 1
  365. value: 1
  366. inSlope: 0
  367. outSlope: 0
  368. tangentMode: 0
  369. m_PreInfinity: 2
  370. m_PostInfinity: 2
  371. m_RotationOrder: 4
  372. minCurve:
  373. serializedVersion: 2
  374. m_Curve:
  375. - serializedVersion: 2
  376. time: 0
  377. value: 0
  378. inSlope: 0
  379. outSlope: 0
  380. tangentMode: 0
  381. - serializedVersion: 2
  382. time: 1
  383. value: 0
  384. inSlope: 0
  385. outSlope: 0
  386. tangentMode: 0
  387. m_PreInfinity: 2
  388. m_PostInfinity: 2
  389. m_RotationOrder: 4
  390. minMaxState: 0
  391. startRotationX:
  392. scalar: 0
  393. maxCurve:
  394. serializedVersion: 2
  395. m_Curve:
  396. - serializedVersion: 2
  397. time: 0
  398. value: 1
  399. inSlope: 0
  400. outSlope: 0
  401. tangentMode: 0
  402. - serializedVersion: 2
  403. time: 1
  404. value: 1
  405. inSlope: 0
  406. outSlope: 0
  407. tangentMode: 0
  408. m_PreInfinity: 2
  409. m_PostInfinity: 2
  410. m_RotationOrder: 4
  411. minCurve:
  412. serializedVersion: 2
  413. m_Curve:
  414. - serializedVersion: 2
  415. time: 0
  416. value: 0
  417. inSlope: 0
  418. outSlope: 0
  419. tangentMode: 0
  420. - serializedVersion: 2
  421. time: 1
  422. value: 0
  423. inSlope: 0
  424. outSlope: 0
  425. tangentMode: 0
  426. m_PreInfinity: 2
  427. m_PostInfinity: 2
  428. m_RotationOrder: 4
  429. minMaxState: 0
  430. startRotationY:
  431. scalar: 0
  432. maxCurve:
  433. serializedVersion: 2
  434. m_Curve:
  435. - serializedVersion: 2
  436. time: 0
  437. value: 1
  438. inSlope: 0
  439. outSlope: 0
  440. tangentMode: 0
  441. - serializedVersion: 2
  442. time: 1
  443. value: 1
  444. inSlope: 0
  445. outSlope: 0
  446. tangentMode: 0
  447. m_PreInfinity: 2
  448. m_PostInfinity: 2
  449. m_RotationOrder: 4
  450. minCurve:
  451. serializedVersion: 2
  452. m_Curve:
  453. - serializedVersion: 2
  454. time: 0
  455. value: 0
  456. inSlope: 0
  457. outSlope: 0
  458. tangentMode: 0
  459. - serializedVersion: 2
  460. time: 1
  461. value: 0
  462. inSlope: 0
  463. outSlope: 0
  464. tangentMode: 0
  465. m_PreInfinity: 2
  466. m_PostInfinity: 2
  467. m_RotationOrder: 4
  468. minMaxState: 0
  469. startRotation:
  470. scalar: 0
  471. maxCurve:
  472. serializedVersion: 2
  473. m_Curve:
  474. - serializedVersion: 2
  475. time: 0
  476. value: 1
  477. inSlope: 0
  478. outSlope: 0
  479. tangentMode: 0
  480. - serializedVersion: 2
  481. time: 1
  482. value: 1
  483. inSlope: 0
  484. outSlope: 0
  485. tangentMode: 0
  486. m_PreInfinity: 2
  487. m_PostInfinity: 2
  488. m_RotationOrder: 4
  489. minCurve:
  490. serializedVersion: 2
  491. m_Curve:
  492. - serializedVersion: 2
  493. time: 0
  494. value: 0
  495. inSlope: 0
  496. outSlope: 0
  497. tangentMode: 0
  498. - serializedVersion: 2
  499. time: 1
  500. value: 0
  501. inSlope: 0
  502. outSlope: 0
  503. tangentMode: 0
  504. m_PreInfinity: 2
  505. m_PostInfinity: 2
  506. m_RotationOrder: 4
  507. minMaxState: 0
  508. randomizeRotationDirection: 0
  509. maxNumParticles: 100
  510. size3D: 0
  511. rotation3D: 0
  512. gravityModifier:
  513. scalar: 0
  514. maxCurve:
  515. serializedVersion: 2
  516. m_Curve:
  517. - serializedVersion: 2
  518. time: 0
  519. value: 1
  520. inSlope: 0
  521. outSlope: 0
  522. tangentMode: 0
  523. - serializedVersion: 2
  524. time: 1
  525. value: 1
  526. inSlope: 0
  527. outSlope: 0
  528. tangentMode: 0
  529. m_PreInfinity: 2
  530. m_PostInfinity: 2
  531. m_RotationOrder: 4
  532. minCurve:
  533. serializedVersion: 2
  534. m_Curve:
  535. - serializedVersion: 2
  536. time: 0
  537. value: 0
  538. inSlope: 0
  539. outSlope: 0
  540. tangentMode: 0
  541. - serializedVersion: 2
  542. time: 1
  543. value: 0
  544. inSlope: 0
  545. outSlope: 0
  546. tangentMode: 0
  547. m_PreInfinity: 2
  548. m_PostInfinity: 2
  549. m_RotationOrder: 4
  550. minMaxState: 0
  551. ShapeModule:
  552. serializedVersion: 3
  553. enabled: 1
  554. type: 6
  555. radius: 3.1590137
  556. angle: 25
  557. length: 5
  558. boxX: 1
  559. boxY: 1
  560. boxZ: 1
  561. arc: 360
  562. placementMode: 1
  563. m_Mesh: {fileID: 4300000, guid: 885d6c99746f9db4a83145e1d01a84e2, type: 2}
  564. m_MeshRenderer: {fileID: 0}
  565. m_SkinnedMeshRenderer: {fileID: 0}
  566. m_MeshMaterialIndex: 0
  567. m_MeshNormalOffset: 0
  568. m_MeshScale: 1
  569. m_UseMeshMaterialIndex: 0
  570. m_UseMeshColors: 1
  571. alignToDirection: 0
  572. randomDirectionAmount: 0
  573. sphericalDirectionAmount: 0
  574. EmissionModule:
  575. enabled: 1
  576. serializedVersion: 3
  577. rateOverTime:
  578. scalar: 2
  579. maxCurve:
  580. serializedVersion: 2
  581. m_Curve:
  582. - serializedVersion: 2
  583. time: 0
  584. value: 1
  585. inSlope: 0
  586. outSlope: 0
  587. tangentMode: 0
  588. - serializedVersion: 2
  589. time: 1
  590. value: 1
  591. inSlope: 0
  592. outSlope: 0
  593. tangentMode: 0
  594. m_PreInfinity: 2
  595. m_PostInfinity: 2
  596. m_RotationOrder: 4
  597. minCurve:
  598. serializedVersion: 2
  599. m_Curve:
  600. - serializedVersion: 2
  601. time: 0
  602. value: 0
  603. inSlope: 0
  604. outSlope: 0
  605. tangentMode: 0
  606. - serializedVersion: 2
  607. time: 1
  608. value: 0
  609. inSlope: 0
  610. outSlope: 0
  611. tangentMode: 0
  612. m_PreInfinity: 2
  613. m_PostInfinity: 2
  614. m_RotationOrder: 4
  615. minMaxState: 0
  616. rateOverDistance:
  617. scalar: 0
  618. maxCurve:
  619. serializedVersion: 2
  620. m_Curve:
  621. - serializedVersion: 2
  622. time: 0
  623. value: 1
  624. inSlope: 0
  625. outSlope: 0
  626. tangentMode: 0
  627. - serializedVersion: 2
  628. time: 1
  629. value: 1
  630. inSlope: 0
  631. outSlope: 0
  632. tangentMode: 0
  633. m_PreInfinity: 2
  634. m_PostInfinity: 2
  635. m_RotationOrder: 4
  636. minCurve:
  637. serializedVersion: 2
  638. m_Curve:
  639. - serializedVersion: 2
  640. time: 0
  641. value: 0
  642. inSlope: 0
  643. outSlope: 0
  644. tangentMode: 0
  645. - serializedVersion: 2
  646. time: 1
  647. value: 0
  648. inSlope: 0
  649. outSlope: 0
  650. tangentMode: 0
  651. m_PreInfinity: 2
  652. m_PostInfinity: 2
  653. m_RotationOrder: 4
  654. minMaxState: 0
  655. cnt0: 30
  656. cnt1: 30
  657. cnt2: 30
  658. cnt3: 30
  659. cntmax0: 30
  660. cntmax1: 30
  661. cntmax2: 30
  662. cntmax3: 30
  663. time0: 0
  664. time1: 0
  665. time2: 0
  666. time3: 0
  667. m_BurstCount: 0
  668. SizeModule:
  669. enabled: 0
  670. curve:
  671. scalar: 1
  672. maxCurve:
  673. serializedVersion: 2
  674. m_Curve:
  675. - serializedVersion: 2
  676. time: 0
  677. value: 1
  678. inSlope: 0
  679. outSlope: 0
  680. tangentMode: 0
  681. - serializedVersion: 2
  682. time: 1
  683. value: 1
  684. inSlope: 0
  685. outSlope: 0
  686. tangentMode: 0
  687. m_PreInfinity: 2
  688. m_PostInfinity: 2
  689. m_RotationOrder: 4
  690. minCurve:
  691. serializedVersion: 2
  692. m_Curve:
  693. - serializedVersion: 2
  694. time: 0
  695. value: 0
  696. inSlope: 0
  697. outSlope: 0
  698. tangentMode: 0
  699. - serializedVersion: 2
  700. time: 1
  701. value: 0
  702. inSlope: 0
  703. outSlope: 0
  704. tangentMode: 0
  705. m_PreInfinity: 2
  706. m_PostInfinity: 2
  707. m_RotationOrder: 4
  708. minMaxState: 1
  709. y:
  710. scalar: 1
  711. maxCurve:
  712. serializedVersion: 2
  713. m_Curve:
  714. - serializedVersion: 2
  715. time: 0
  716. value: 1
  717. inSlope: 0
  718. outSlope: 0
  719. tangentMode: 0
  720. - serializedVersion: 2
  721. time: 1
  722. value: 1
  723. inSlope: 0
  724. outSlope: 0
  725. tangentMode: 0
  726. m_PreInfinity: 2
  727. m_PostInfinity: 2
  728. m_RotationOrder: 4
  729. minCurve:
  730. serializedVersion: 2
  731. m_Curve:
  732. - serializedVersion: 2
  733. time: 0
  734. value: 0
  735. inSlope: 0
  736. outSlope: 0
  737. tangentMode: 0
  738. - serializedVersion: 2
  739. time: 1
  740. value: 0
  741. inSlope: 0
  742. outSlope: 0
  743. tangentMode: 0
  744. m_PreInfinity: 2
  745. m_PostInfinity: 2
  746. m_RotationOrder: 4
  747. minMaxState: 1
  748. z:
  749. scalar: 1
  750. maxCurve:
  751. serializedVersion: 2
  752. m_Curve:
  753. - serializedVersion: 2
  754. time: 0
  755. value: 1
  756. inSlope: 0
  757. outSlope: 0
  758. tangentMode: 0
  759. - serializedVersion: 2
  760. time: 1
  761. value: 1
  762. inSlope: 0
  763. outSlope: 0
  764. tangentMode: 0
  765. m_PreInfinity: 2
  766. m_PostInfinity: 2
  767. m_RotationOrder: 4
  768. minCurve:
  769. serializedVersion: 2
  770. m_Curve:
  771. - serializedVersion: 2
  772. time: 0
  773. value: 0
  774. inSlope: 0
  775. outSlope: 0
  776. tangentMode: 0
  777. - serializedVersion: 2
  778. time: 1
  779. value: 0
  780. inSlope: 0
  781. outSlope: 0
  782. tangentMode: 0
  783. m_PreInfinity: 2
  784. m_PostInfinity: 2
  785. m_RotationOrder: 4
  786. minMaxState: 1
  787. separateAxes: 0
  788. RotationModule:
  789. enabled: 0
  790. x:
  791. scalar: 0
  792. maxCurve:
  793. serializedVersion: 2
  794. m_Curve:
  795. - serializedVersion: 2
  796. time: 0
  797. value: 1
  798. inSlope: 0
  799. outSlope: 0
  800. tangentMode: 0
  801. - serializedVersion: 2
  802. time: 1
  803. value: 1
  804. inSlope: 0
  805. outSlope: 0
  806. tangentMode: 0
  807. m_PreInfinity: 2
  808. m_PostInfinity: 2
  809. m_RotationOrder: 4
  810. minCurve:
  811. serializedVersion: 2
  812. m_Curve:
  813. - serializedVersion: 2
  814. time: 0
  815. value: 0
  816. inSlope: 0
  817. outSlope: 0
  818. tangentMode: 0
  819. - serializedVersion: 2
  820. time: 1
  821. value: 0
  822. inSlope: 0
  823. outSlope: 0
  824. tangentMode: 0
  825. m_PreInfinity: 2
  826. m_PostInfinity: 2
  827. m_RotationOrder: 4
  828. minMaxState: 0
  829. y:
  830. scalar: 0
  831. maxCurve:
  832. serializedVersion: 2
  833. m_Curve:
  834. - serializedVersion: 2
  835. time: 0
  836. value: 1
  837. inSlope: 0
  838. outSlope: 0
  839. tangentMode: 0
  840. - serializedVersion: 2
  841. time: 1
  842. value: 1
  843. inSlope: 0
  844. outSlope: 0
  845. tangentMode: 0
  846. m_PreInfinity: 2
  847. m_PostInfinity: 2
  848. m_RotationOrder: 4
  849. minCurve:
  850. serializedVersion: 2
  851. m_Curve:
  852. - serializedVersion: 2
  853. time: 0
  854. value: 0
  855. inSlope: 0
  856. outSlope: 0
  857. tangentMode: 0
  858. - serializedVersion: 2
  859. time: 1
  860. value: 0
  861. inSlope: 0
  862. outSlope: 0
  863. tangentMode: 0
  864. m_PreInfinity: 2
  865. m_PostInfinity: 2
  866. m_RotationOrder: 4
  867. minMaxState: 0
  868. curve:
  869. scalar: 0.7853982
  870. maxCurve:
  871. serializedVersion: 2
  872. m_Curve:
  873. - serializedVersion: 2
  874. time: 0
  875. value: 1
  876. inSlope: 0
  877. outSlope: 0
  878. tangentMode: 0
  879. - serializedVersion: 2
  880. time: 1
  881. value: 1
  882. inSlope: 0
  883. outSlope: 0
  884. tangentMode: 0
  885. m_PreInfinity: 2
  886. m_PostInfinity: 2
  887. m_RotationOrder: 4
  888. minCurve:
  889. serializedVersion: 2
  890. m_Curve:
  891. - serializedVersion: 2
  892. time: 0
  893. value: 0
  894. inSlope: 0
  895. outSlope: 0
  896. tangentMode: 0
  897. - serializedVersion: 2
  898. time: 1
  899. value: 0
  900. inSlope: 0
  901. outSlope: 0
  902. tangentMode: 0
  903. m_PreInfinity: 2
  904. m_PostInfinity: 2
  905. m_RotationOrder: 4
  906. minMaxState: 0
  907. separateAxes: 0
  908. ColorModule:
  909. enabled: 0
  910. gradient:
  911. serializedVersion: 2
  912. maxGradient:
  913. key0:
  914. serializedVersion: 2
  915. rgba: 4294967295
  916. key1:
  917. serializedVersion: 2
  918. rgba: 4294967295
  919. key2:
  920. serializedVersion: 2
  921. rgba: 0
  922. key3:
  923. serializedVersion: 2
  924. rgba: 0
  925. key4:
  926. serializedVersion: 2
  927. rgba: 0
  928. key5:
  929. serializedVersion: 2
  930. rgba: 0
  931. key6:
  932. serializedVersion: 2
  933. rgba: 0
  934. key7:
  935. serializedVersion: 2
  936. rgba: 0
  937. ctime0: 0
  938. ctime1: 65535
  939. ctime2: 0
  940. ctime3: 0
  941. ctime4: 0
  942. ctime5: 0
  943. ctime6: 0
  944. ctime7: 0
  945. atime0: 0
  946. atime1: 65535
  947. atime2: 0
  948. atime3: 0
  949. atime4: 0
  950. atime5: 0
  951. atime6: 0
  952. atime7: 0
  953. m_Mode: 0
  954. m_NumColorKeys: 2
  955. m_NumAlphaKeys: 2
  956. minGradient:
  957. key0:
  958. serializedVersion: 2
  959. rgba: 4294967295
  960. key1:
  961. serializedVersion: 2
  962. rgba: 4294967295
  963. key2:
  964. serializedVersion: 2
  965. rgba: 0
  966. key3:
  967. serializedVersion: 2
  968. rgba: 0
  969. key4:
  970. serializedVersion: 2
  971. rgba: 0
  972. key5:
  973. serializedVersion: 2
  974. rgba: 0
  975. key6:
  976. serializedVersion: 2
  977. rgba: 0
  978. key7:
  979. serializedVersion: 2
  980. rgba: 0
  981. ctime0: 0
  982. ctime1: 65535
  983. ctime2: 0
  984. ctime3: 0
  985. ctime4: 0
  986. ctime5: 0
  987. ctime6: 0
  988. ctime7: 0
  989. atime0: 0
  990. atime1: 65535
  991. atime2: 0
  992. atime3: 0
  993. atime4: 0
  994. atime5: 0
  995. atime6: 0
  996. atime7: 0
  997. m_Mode: 0
  998. m_NumColorKeys: 2
  999. m_NumAlphaKeys: 2
  1000. minColor: {r: 1, g: 1, b: 1, a: 1}
  1001. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1002. minMaxState: 1
  1003. UVModule:
  1004. enabled: 0
  1005. frameOverTime:
  1006. scalar: 0.9999
  1007. maxCurve:
  1008. serializedVersion: 2
  1009. m_Curve:
  1010. - serializedVersion: 2
  1011. time: 0
  1012. value: 0
  1013. inSlope: 0
  1014. outSlope: 1
  1015. tangentMode: 0
  1016. - serializedVersion: 2
  1017. time: 1
  1018. value: 1
  1019. inSlope: 1
  1020. outSlope: 0
  1021. tangentMode: 0
  1022. m_PreInfinity: 2
  1023. m_PostInfinity: 2
  1024. m_RotationOrder: 4
  1025. minCurve:
  1026. serializedVersion: 2
  1027. m_Curve:
  1028. - serializedVersion: 2
  1029. time: 0
  1030. value: 0
  1031. inSlope: 0
  1032. outSlope: 1
  1033. tangentMode: 0
  1034. - serializedVersion: 2
  1035. time: 1
  1036. value: 1
  1037. inSlope: 1
  1038. outSlope: 0
  1039. tangentMode: 0
  1040. m_PreInfinity: 2
  1041. m_PostInfinity: 2
  1042. m_RotationOrder: 4
  1043. minMaxState: 1
  1044. startFrame:
  1045. scalar: 0
  1046. maxCurve:
  1047. serializedVersion: 2
  1048. m_Curve:
  1049. - serializedVersion: 2
  1050. time: 0
  1051. value: 1
  1052. inSlope: 0
  1053. outSlope: 0
  1054. tangentMode: 0
  1055. - serializedVersion: 2
  1056. time: 1
  1057. value: 1
  1058. inSlope: 0
  1059. outSlope: 0
  1060. tangentMode: 0
  1061. m_PreInfinity: 2
  1062. m_PostInfinity: 2
  1063. m_RotationOrder: 4
  1064. minCurve:
  1065. serializedVersion: 2
  1066. m_Curve:
  1067. - serializedVersion: 2
  1068. time: 0
  1069. value: 0
  1070. inSlope: 0
  1071. outSlope: 0
  1072. tangentMode: 0
  1073. - serializedVersion: 2
  1074. time: 1
  1075. value: 0
  1076. inSlope: 0
  1077. outSlope: 0
  1078. tangentMode: 0
  1079. m_PreInfinity: 2
  1080. m_PostInfinity: 2
  1081. m_RotationOrder: 4
  1082. minMaxState: 0
  1083. tilesX: 1
  1084. tilesY: 1
  1085. animationType: 0
  1086. rowIndex: 0
  1087. cycles: 1
  1088. uvChannelMask: -1
  1089. flipU: 0
  1090. flipV: 0
  1091. randomRow: 1
  1092. VelocityModule:
  1093. enabled: 1
  1094. x:
  1095. scalar: 0
  1096. maxCurve:
  1097. serializedVersion: 2
  1098. m_Curve:
  1099. - serializedVersion: 2
  1100. time: 0
  1101. value: 1
  1102. inSlope: 0
  1103. outSlope: 0
  1104. tangentMode: 0
  1105. - serializedVersion: 2
  1106. time: 1
  1107. value: 1
  1108. inSlope: 0
  1109. outSlope: 0
  1110. tangentMode: 0
  1111. m_PreInfinity: 2
  1112. m_PostInfinity: 2
  1113. m_RotationOrder: 4
  1114. minCurve:
  1115. serializedVersion: 2
  1116. m_Curve:
  1117. - serializedVersion: 2
  1118. time: 0
  1119. value: 0
  1120. inSlope: 0
  1121. outSlope: 0
  1122. tangentMode: 0
  1123. - serializedVersion: 2
  1124. time: 1
  1125. value: 0
  1126. inSlope: 0
  1127. outSlope: 0
  1128. tangentMode: 0
  1129. m_PreInfinity: 2
  1130. m_PostInfinity: 2
  1131. m_RotationOrder: 4
  1132. minMaxState: 0
  1133. y:
  1134. scalar: 0
  1135. maxCurve:
  1136. serializedVersion: 2
  1137. m_Curve:
  1138. - serializedVersion: 2
  1139. time: 0
  1140. value: 1
  1141. inSlope: 0
  1142. outSlope: 0
  1143. tangentMode: 0
  1144. - serializedVersion: 2
  1145. time: 1
  1146. value: 1
  1147. inSlope: 0
  1148. outSlope: 0
  1149. tangentMode: 0
  1150. m_PreInfinity: 2
  1151. m_PostInfinity: 2
  1152. m_RotationOrder: 4
  1153. minCurve:
  1154. serializedVersion: 2
  1155. m_Curve:
  1156. - serializedVersion: 2
  1157. time: 0
  1158. value: 0
  1159. inSlope: 0
  1160. outSlope: 0
  1161. tangentMode: 0
  1162. - serializedVersion: 2
  1163. time: 1
  1164. value: 0
  1165. inSlope: 0
  1166. outSlope: 0
  1167. tangentMode: 0
  1168. m_PreInfinity: 2
  1169. m_PostInfinity: 2
  1170. m_RotationOrder: 4
  1171. minMaxState: 0
  1172. z:
  1173. scalar: 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. minMaxState: 0
  1211. inWorldSpace: 0
  1212. InheritVelocityModule:
  1213. enabled: 0
  1214. m_Mode: 0
  1215. m_Curve:
  1216. scalar: 0
  1217. maxCurve:
  1218. serializedVersion: 2
  1219. m_Curve:
  1220. - serializedVersion: 2
  1221. time: 0
  1222. value: 1
  1223. inSlope: 0
  1224. outSlope: 0
  1225. tangentMode: 0
  1226. - serializedVersion: 2
  1227. time: 1
  1228. value: 1
  1229. inSlope: 0
  1230. outSlope: 0
  1231. tangentMode: 0
  1232. m_PreInfinity: 2
  1233. m_PostInfinity: 2
  1234. m_RotationOrder: 4
  1235. minCurve:
  1236. serializedVersion: 2
  1237. m_Curve:
  1238. - serializedVersion: 2
  1239. time: 0
  1240. value: 0
  1241. inSlope: 0
  1242. outSlope: 0
  1243. tangentMode: 0
  1244. - serializedVersion: 2
  1245. time: 1
  1246. value: 0
  1247. inSlope: 0
  1248. outSlope: 0
  1249. tangentMode: 0
  1250. m_PreInfinity: 2
  1251. m_PostInfinity: 2
  1252. m_RotationOrder: 4
  1253. minMaxState: 0
  1254. ForceModule:
  1255. enabled: 0
  1256. x:
  1257. scalar: 0
  1258. maxCurve:
  1259. serializedVersion: 2
  1260. m_Curve:
  1261. - serializedVersion: 2
  1262. time: 0
  1263. value: 1
  1264. inSlope: 0
  1265. outSlope: 0
  1266. tangentMode: 0
  1267. - serializedVersion: 2
  1268. time: 1
  1269. value: 1
  1270. inSlope: 0
  1271. outSlope: 0
  1272. tangentMode: 0
  1273. m_PreInfinity: 2
  1274. m_PostInfinity: 2
  1275. m_RotationOrder: 4
  1276. minCurve:
  1277. serializedVersion: 2
  1278. m_Curve:
  1279. - serializedVersion: 2
  1280. time: 0
  1281. value: 0
  1282. inSlope: 0
  1283. outSlope: 0
  1284. tangentMode: 0
  1285. - serializedVersion: 2
  1286. time: 1
  1287. value: 0
  1288. inSlope: 0
  1289. outSlope: 0
  1290. tangentMode: 0
  1291. m_PreInfinity: 2
  1292. m_PostInfinity: 2
  1293. m_RotationOrder: 4
  1294. minMaxState: 0
  1295. y:
  1296. scalar: 0
  1297. maxCurve:
  1298. serializedVersion: 2
  1299. m_Curve:
  1300. - serializedVersion: 2
  1301. time: 0
  1302. value: 1
  1303. inSlope: 0
  1304. outSlope: 0
  1305. tangentMode: 0
  1306. - serializedVersion: 2
  1307. time: 1
  1308. value: 1
  1309. inSlope: 0
  1310. outSlope: 0
  1311. tangentMode: 0
  1312. m_PreInfinity: 2
  1313. m_PostInfinity: 2
  1314. m_RotationOrder: 4
  1315. minCurve:
  1316. serializedVersion: 2
  1317. m_Curve:
  1318. - serializedVersion: 2
  1319. time: 0
  1320. value: 0
  1321. inSlope: 0
  1322. outSlope: 0
  1323. tangentMode: 0
  1324. - serializedVersion: 2
  1325. time: 1
  1326. value: 0
  1327. inSlope: 0
  1328. outSlope: 0
  1329. tangentMode: 0
  1330. m_PreInfinity: 2
  1331. m_PostInfinity: 2
  1332. m_RotationOrder: 4
  1333. minMaxState: 0
  1334. z:
  1335. scalar: 0
  1336. maxCurve:
  1337. serializedVersion: 2
  1338. m_Curve:
  1339. - serializedVersion: 2
  1340. time: 0
  1341. value: 1
  1342. inSlope: 0
  1343. outSlope: 0
  1344. tangentMode: 0
  1345. - serializedVersion: 2
  1346. time: 1
  1347. value: 1
  1348. inSlope: 0
  1349. outSlope: 0
  1350. tangentMode: 0
  1351. m_PreInfinity: 2
  1352. m_PostInfinity: 2
  1353. m_RotationOrder: 4
  1354. minCurve:
  1355. serializedVersion: 2
  1356. m_Curve:
  1357. - serializedVersion: 2
  1358. time: 0
  1359. value: 0
  1360. inSlope: 0
  1361. outSlope: 0
  1362. tangentMode: 0
  1363. - serializedVersion: 2
  1364. time: 1
  1365. value: 0
  1366. inSlope: 0
  1367. outSlope: 0
  1368. tangentMode: 0
  1369. m_PreInfinity: 2
  1370. m_PostInfinity: 2
  1371. m_RotationOrder: 4
  1372. minMaxState: 0
  1373. inWorldSpace: 0
  1374. randomizePerFrame: 0
  1375. ExternalForcesModule:
  1376. enabled: 0
  1377. multiplier: 1
  1378. ClampVelocityModule:
  1379. enabled: 0
  1380. x:
  1381. scalar: 1
  1382. maxCurve:
  1383. serializedVersion: 2
  1384. m_Curve:
  1385. - serializedVersion: 2
  1386. time: 0
  1387. value: 1
  1388. inSlope: 0
  1389. outSlope: 0
  1390. tangentMode: 0
  1391. - serializedVersion: 2
  1392. time: 1
  1393. value: 1
  1394. inSlope: 0
  1395. outSlope: 0
  1396. tangentMode: 0
  1397. m_PreInfinity: 2
  1398. m_PostInfinity: 2
  1399. m_RotationOrder: 4
  1400. minCurve:
  1401. serializedVersion: 2
  1402. m_Curve:
  1403. - serializedVersion: 2
  1404. time: 0
  1405. value: 0
  1406. inSlope: 0
  1407. outSlope: 0
  1408. tangentMode: 0
  1409. - serializedVersion: 2
  1410. time: 1
  1411. value: 0
  1412. inSlope: 0
  1413. outSlope: 0
  1414. tangentMode: 0
  1415. m_PreInfinity: 2
  1416. m_PostInfinity: 2
  1417. m_RotationOrder: 4
  1418. minMaxState: 0
  1419. y:
  1420. scalar: 1
  1421. maxCurve:
  1422. serializedVersion: 2
  1423. m_Curve:
  1424. - serializedVersion: 2
  1425. time: 0
  1426. value: 1
  1427. inSlope: 0
  1428. outSlope: 0
  1429. tangentMode: 0
  1430. - serializedVersion: 2
  1431. time: 1
  1432. value: 1
  1433. inSlope: 0
  1434. outSlope: 0
  1435. tangentMode: 0
  1436. m_PreInfinity: 2
  1437. m_PostInfinity: 2
  1438. m_RotationOrder: 4
  1439. minCurve:
  1440. serializedVersion: 2
  1441. m_Curve:
  1442. - serializedVersion: 2
  1443. time: 0
  1444. value: 0
  1445. inSlope: 0
  1446. outSlope: 0
  1447. tangentMode: 0
  1448. - serializedVersion: 2
  1449. time: 1
  1450. value: 0
  1451. inSlope: 0
  1452. outSlope: 0
  1453. tangentMode: 0
  1454. m_PreInfinity: 2
  1455. m_PostInfinity: 2
  1456. m_RotationOrder: 4
  1457. minMaxState: 0
  1458. z:
  1459. scalar: 1
  1460. maxCurve:
  1461. serializedVersion: 2
  1462. m_Curve:
  1463. - serializedVersion: 2
  1464. time: 0
  1465. value: 1
  1466. inSlope: 0
  1467. outSlope: 0
  1468. tangentMode: 0
  1469. - serializedVersion: 2
  1470. time: 1
  1471. value: 1
  1472. inSlope: 0
  1473. outSlope: 0
  1474. tangentMode: 0
  1475. m_PreInfinity: 2
  1476. m_PostInfinity: 2
  1477. m_RotationOrder: 4
  1478. minCurve:
  1479. serializedVersion: 2
  1480. m_Curve:
  1481. - serializedVersion: 2
  1482. time: 0
  1483. value: 0
  1484. inSlope: 0
  1485. outSlope: 0
  1486. tangentMode: 0
  1487. - serializedVersion: 2
  1488. time: 1
  1489. value: 0
  1490. inSlope: 0
  1491. outSlope: 0
  1492. tangentMode: 0
  1493. m_PreInfinity: 2
  1494. m_PostInfinity: 2
  1495. m_RotationOrder: 4
  1496. minMaxState: 0
  1497. magnitude:
  1498. scalar: 1
  1499. maxCurve:
  1500. serializedVersion: 2
  1501. m_Curve:
  1502. - serializedVersion: 2
  1503. time: 0
  1504. value: 1
  1505. inSlope: 0
  1506. outSlope: 0
  1507. tangentMode: 0
  1508. - serializedVersion: 2
  1509. time: 1
  1510. value: 1
  1511. inSlope: 0
  1512. outSlope: 0
  1513. tangentMode: 0
  1514. m_PreInfinity: 2
  1515. m_PostInfinity: 2
  1516. m_RotationOrder: 4
  1517. minCurve:
  1518. serializedVersion: 2
  1519. m_Curve:
  1520. - serializedVersion: 2
  1521. time: 0
  1522. value: 0
  1523. inSlope: 0
  1524. outSlope: 0
  1525. tangentMode: 0
  1526. - serializedVersion: 2
  1527. time: 1
  1528. value: 0
  1529. inSlope: 0
  1530. outSlope: 0
  1531. tangentMode: 0
  1532. m_PreInfinity: 2
  1533. m_PostInfinity: 2
  1534. m_RotationOrder: 4
  1535. minMaxState: 0
  1536. separateAxis: 0
  1537. inWorldSpace: 0
  1538. dampen: 1
  1539. NoiseModule:
  1540. enabled: 0
  1541. strength:
  1542. scalar: 1
  1543. maxCurve:
  1544. serializedVersion: 2
  1545. m_Curve:
  1546. - serializedVersion: 2
  1547. time: 0
  1548. value: 1
  1549. inSlope: 0
  1550. outSlope: 0
  1551. tangentMode: 0
  1552. - serializedVersion: 2
  1553. time: 1
  1554. value: 1
  1555. inSlope: 0
  1556. outSlope: 0
  1557. tangentMode: 0
  1558. m_PreInfinity: 2
  1559. m_PostInfinity: 2
  1560. m_RotationOrder: 4
  1561. minCurve:
  1562. serializedVersion: 2
  1563. m_Curve:
  1564. - serializedVersion: 2
  1565. time: 0
  1566. value: 0
  1567. inSlope: 0
  1568. outSlope: 0
  1569. tangentMode: 0
  1570. - serializedVersion: 2
  1571. time: 1
  1572. value: 0
  1573. inSlope: 0
  1574. outSlope: 0
  1575. tangentMode: 0
  1576. m_PreInfinity: 2
  1577. m_PostInfinity: 2
  1578. m_RotationOrder: 4
  1579. minMaxState: 0
  1580. strengthY:
  1581. scalar: 1
  1582. maxCurve:
  1583. serializedVersion: 2
  1584. m_Curve:
  1585. - serializedVersion: 2
  1586. time: 0
  1587. value: 1
  1588. inSlope: 0
  1589. outSlope: 0
  1590. tangentMode: 0
  1591. - serializedVersion: 2
  1592. time: 1
  1593. value: 1
  1594. inSlope: 0
  1595. outSlope: 0
  1596. tangentMode: 0
  1597. m_PreInfinity: 2
  1598. m_PostInfinity: 2
  1599. m_RotationOrder: 4
  1600. minCurve:
  1601. serializedVersion: 2
  1602. m_Curve:
  1603. - serializedVersion: 2
  1604. time: 0
  1605. value: 0
  1606. inSlope: 0
  1607. outSlope: 0
  1608. tangentMode: 0
  1609. - serializedVersion: 2
  1610. time: 1
  1611. value: 0
  1612. inSlope: 0
  1613. outSlope: 0
  1614. tangentMode: 0
  1615. m_PreInfinity: 2
  1616. m_PostInfinity: 2
  1617. m_RotationOrder: 4
  1618. minMaxState: 0
  1619. strengthZ:
  1620. scalar: 1
  1621. maxCurve:
  1622. serializedVersion: 2
  1623. m_Curve:
  1624. - serializedVersion: 2
  1625. time: 0
  1626. value: 1
  1627. inSlope: 0
  1628. outSlope: 0
  1629. tangentMode: 0
  1630. - serializedVersion: 2
  1631. time: 1
  1632. value: 1
  1633. inSlope: 0
  1634. outSlope: 0
  1635. tangentMode: 0
  1636. m_PreInfinity: 2
  1637. m_PostInfinity: 2
  1638. m_RotationOrder: 4
  1639. minCurve:
  1640. serializedVersion: 2
  1641. m_Curve:
  1642. - serializedVersion: 2
  1643. time: 0
  1644. value: 0
  1645. inSlope: 0
  1646. outSlope: 0
  1647. tangentMode: 0
  1648. - serializedVersion: 2
  1649. time: 1
  1650. value: 0
  1651. inSlope: 0
  1652. outSlope: 0
  1653. tangentMode: 0
  1654. m_PreInfinity: 2
  1655. m_PostInfinity: 2
  1656. m_RotationOrder: 4
  1657. minMaxState: 0
  1658. separateAxes: 0
  1659. frequency: 0.5
  1660. damping: 1
  1661. octaves: 1
  1662. octaveMultiplier: 0.5
  1663. octaveScale: 2
  1664. quality: 2
  1665. scrollSpeed:
  1666. scalar: 0
  1667. maxCurve:
  1668. serializedVersion: 2
  1669. m_Curve:
  1670. - serializedVersion: 2
  1671. time: 0
  1672. value: 1
  1673. inSlope: 0
  1674. outSlope: 0
  1675. tangentMode: 0
  1676. - serializedVersion: 2
  1677. time: 1
  1678. value: 1
  1679. inSlope: 0
  1680. outSlope: 0
  1681. tangentMode: 0
  1682. m_PreInfinity: 2
  1683. m_PostInfinity: 2
  1684. m_RotationOrder: 4
  1685. minCurve:
  1686. serializedVersion: 2
  1687. m_Curve:
  1688. - serializedVersion: 2
  1689. time: 0
  1690. value: 0
  1691. inSlope: 0
  1692. outSlope: 0
  1693. tangentMode: 0
  1694. - serializedVersion: 2
  1695. time: 1
  1696. value: 0
  1697. inSlope: 0
  1698. outSlope: 0
  1699. tangentMode: 0
  1700. m_PreInfinity: 2
  1701. m_PostInfinity: 2
  1702. m_RotationOrder: 4
  1703. minMaxState: 0
  1704. remap:
  1705. scalar: 1
  1706. maxCurve:
  1707. serializedVersion: 2
  1708. m_Curve:
  1709. - serializedVersion: 2
  1710. time: 0
  1711. value: -1
  1712. inSlope: 0
  1713. outSlope: 2
  1714. tangentMode: 0
  1715. - serializedVersion: 2
  1716. time: 1
  1717. value: 1
  1718. inSlope: 2
  1719. outSlope: 0
  1720. tangentMode: 0
  1721. m_PreInfinity: 2
  1722. m_PostInfinity: 2
  1723. m_RotationOrder: 4
  1724. minCurve:
  1725. serializedVersion: 2
  1726. m_Curve:
  1727. - serializedVersion: 2
  1728. time: 0
  1729. value: 0
  1730. inSlope: 0
  1731. outSlope: 0
  1732. tangentMode: 0
  1733. - serializedVersion: 2
  1734. time: 1
  1735. value: 0
  1736. inSlope: 0
  1737. outSlope: 0
  1738. tangentMode: 0
  1739. m_PreInfinity: 2
  1740. m_PostInfinity: 2
  1741. m_RotationOrder: 4
  1742. minMaxState: 1
  1743. remapY:
  1744. scalar: 1
  1745. maxCurve:
  1746. serializedVersion: 2
  1747. m_Curve:
  1748. - serializedVersion: 2
  1749. time: 0
  1750. value: -1
  1751. inSlope: 0
  1752. outSlope: 2
  1753. tangentMode: 0
  1754. - serializedVersion: 2
  1755. time: 1
  1756. value: 1
  1757. inSlope: 2
  1758. outSlope: 0
  1759. tangentMode: 0
  1760. m_PreInfinity: 2
  1761. m_PostInfinity: 2
  1762. m_RotationOrder: 4
  1763. minCurve:
  1764. serializedVersion: 2
  1765. m_Curve:
  1766. - serializedVersion: 2
  1767. time: 0
  1768. value: 0
  1769. inSlope: 0
  1770. outSlope: 0
  1771. tangentMode: 0
  1772. - serializedVersion: 2
  1773. time: 1
  1774. value: 0
  1775. inSlope: 0
  1776. outSlope: 0
  1777. tangentMode: 0
  1778. m_PreInfinity: 2
  1779. m_PostInfinity: 2
  1780. m_RotationOrder: 4
  1781. minMaxState: 1
  1782. remapZ:
  1783. scalar: 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. minMaxState: 1
  1821. remapEnabled: 0
  1822. SizeBySpeedModule:
  1823. enabled: 0
  1824. curve:
  1825. scalar: 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: 0
  1850. inSlope: 0
  1851. outSlope: 0
  1852. tangentMode: 0
  1853. - serializedVersion: 2
  1854. time: 1
  1855. value: 0
  1856. inSlope: 0
  1857. outSlope: 0
  1858. tangentMode: 0
  1859. m_PreInfinity: 2
  1860. m_PostInfinity: 2
  1861. m_RotationOrder: 4
  1862. minMaxState: 1
  1863. y:
  1864. scalar: 1
  1865. maxCurve:
  1866. serializedVersion: 2
  1867. m_Curve:
  1868. - serializedVersion: 2
  1869. time: 0
  1870. value: 1
  1871. inSlope: 0
  1872. outSlope: 0
  1873. tangentMode: 0
  1874. - serializedVersion: 2
  1875. time: 1
  1876. value: 1
  1877. inSlope: 0
  1878. outSlope: 0
  1879. tangentMode: 0
  1880. m_PreInfinity: 2
  1881. m_PostInfinity: 2
  1882. m_RotationOrder: 4
  1883. minCurve:
  1884. serializedVersion: 2
  1885. m_Curve:
  1886. - serializedVersion: 2
  1887. time: 0
  1888. value: 0
  1889. inSlope: 0
  1890. outSlope: 0
  1891. tangentMode: 0
  1892. - serializedVersion: 2
  1893. time: 1
  1894. value: 0
  1895. inSlope: 0
  1896. outSlope: 0
  1897. tangentMode: 0
  1898. m_PreInfinity: 2
  1899. m_PostInfinity: 2
  1900. m_RotationOrder: 4
  1901. minMaxState: 1
  1902. z:
  1903. scalar: 1
  1904. maxCurve:
  1905. serializedVersion: 2
  1906. m_Curve:
  1907. - serializedVersion: 2
  1908. time: 0
  1909. value: 1
  1910. inSlope: 0
  1911. outSlope: 0
  1912. tangentMode: 0
  1913. - serializedVersion: 2
  1914. time: 1
  1915. value: 1
  1916. inSlope: 0
  1917. outSlope: 0
  1918. tangentMode: 0
  1919. m_PreInfinity: 2
  1920. m_PostInfinity: 2
  1921. m_RotationOrder: 4
  1922. minCurve:
  1923. serializedVersion: 2
  1924. m_Curve:
  1925. - serializedVersion: 2
  1926. time: 0
  1927. value: 0
  1928. inSlope: 0
  1929. outSlope: 0
  1930. tangentMode: 0
  1931. - serializedVersion: 2
  1932. time: 1
  1933. value: 0
  1934. inSlope: 0
  1935. outSlope: 0
  1936. tangentMode: 0
  1937. m_PreInfinity: 2
  1938. m_PostInfinity: 2
  1939. m_RotationOrder: 4
  1940. minMaxState: 1
  1941. range: {x: 0, y: 1}
  1942. separateAxes: 0
  1943. RotationBySpeedModule:
  1944. enabled: 0
  1945. x:
  1946. scalar: 0
  1947. maxCurve:
  1948. serializedVersion: 2
  1949. m_Curve:
  1950. - serializedVersion: 2
  1951. time: 0
  1952. value: 1
  1953. inSlope: 0
  1954. outSlope: 0
  1955. tangentMode: 0
  1956. - serializedVersion: 2
  1957. time: 1
  1958. value: 1
  1959. inSlope: 0
  1960. outSlope: 0
  1961. tangentMode: 0
  1962. m_PreInfinity: 2
  1963. m_PostInfinity: 2
  1964. m_RotationOrder: 4
  1965. minCurve:
  1966. serializedVersion: 2
  1967. m_Curve:
  1968. - serializedVersion: 2
  1969. time: 0
  1970. value: 0
  1971. inSlope: 0
  1972. outSlope: 0
  1973. tangentMode: 0
  1974. - serializedVersion: 2
  1975. time: 1
  1976. value: 0
  1977. inSlope: 0
  1978. outSlope: 0
  1979. tangentMode: 0
  1980. m_PreInfinity: 2
  1981. m_PostInfinity: 2
  1982. m_RotationOrder: 4
  1983. minMaxState: 0
  1984. y:
  1985. scalar: 0
  1986. maxCurve:
  1987. serializedVersion: 2
  1988. m_Curve:
  1989. - serializedVersion: 2
  1990. time: 0
  1991. value: 1
  1992. inSlope: 0
  1993. outSlope: 0
  1994. tangentMode: 0
  1995. - serializedVersion: 2
  1996. time: 1
  1997. value: 1
  1998. inSlope: 0
  1999. outSlope: 0
  2000. tangentMode: 0
  2001. m_PreInfinity: 2
  2002. m_PostInfinity: 2
  2003. m_RotationOrder: 4
  2004. minCurve:
  2005. serializedVersion: 2
  2006. m_Curve:
  2007. - serializedVersion: 2
  2008. time: 0
  2009. value: 0
  2010. inSlope: 0
  2011. outSlope: 0
  2012. tangentMode: 0
  2013. - serializedVersion: 2
  2014. time: 1
  2015. value: 0
  2016. inSlope: 0
  2017. outSlope: 0
  2018. tangentMode: 0
  2019. m_PreInfinity: 2
  2020. m_PostInfinity: 2
  2021. m_RotationOrder: 4
  2022. minMaxState: 0
  2023. curve:
  2024. scalar: 0.7853982
  2025. maxCurve:
  2026. serializedVersion: 2
  2027. m_Curve:
  2028. - serializedVersion: 2
  2029. time: 0
  2030. value: 1
  2031. inSlope: 0
  2032. outSlope: 0
  2033. tangentMode: 0
  2034. - serializedVersion: 2
  2035. time: 1
  2036. value: 1
  2037. inSlope: 0
  2038. outSlope: 0
  2039. tangentMode: 0
  2040. m_PreInfinity: 2
  2041. m_PostInfinity: 2
  2042. m_RotationOrder: 4
  2043. minCurve:
  2044. serializedVersion: 2
  2045. m_Curve:
  2046. - serializedVersion: 2
  2047. time: 0
  2048. value: 0
  2049. inSlope: 0
  2050. outSlope: 0
  2051. tangentMode: 0
  2052. - serializedVersion: 2
  2053. time: 1
  2054. value: 0
  2055. inSlope: 0
  2056. outSlope: 0
  2057. tangentMode: 0
  2058. m_PreInfinity: 2
  2059. m_PostInfinity: 2
  2060. m_RotationOrder: 4
  2061. minMaxState: 0
  2062. separateAxes: 0
  2063. range: {x: 0, y: 1}
  2064. ColorBySpeedModule:
  2065. enabled: 0
  2066. gradient:
  2067. serializedVersion: 2
  2068. maxGradient:
  2069. key0:
  2070. serializedVersion: 2
  2071. rgba: 4294967295
  2072. key1:
  2073. serializedVersion: 2
  2074. rgba: 4294967295
  2075. key2:
  2076. serializedVersion: 2
  2077. rgba: 0
  2078. key3:
  2079. serializedVersion: 2
  2080. rgba: 0
  2081. key4:
  2082. serializedVersion: 2
  2083. rgba: 0
  2084. key5:
  2085. serializedVersion: 2
  2086. rgba: 0
  2087. key6:
  2088. serializedVersion: 2
  2089. rgba: 0
  2090. key7:
  2091. serializedVersion: 2
  2092. rgba: 0
  2093. ctime0: 0
  2094. ctime1: 65535
  2095. ctime2: 0
  2096. ctime3: 0
  2097. ctime4: 0
  2098. ctime5: 0
  2099. ctime6: 0
  2100. ctime7: 0
  2101. atime0: 0
  2102. atime1: 65535
  2103. atime2: 0
  2104. atime3: 0
  2105. atime4: 0
  2106. atime5: 0
  2107. atime6: 0
  2108. atime7: 0
  2109. m_Mode: 0
  2110. m_NumColorKeys: 2
  2111. m_NumAlphaKeys: 2
  2112. minGradient:
  2113. key0:
  2114. serializedVersion: 2
  2115. rgba: 4294967295
  2116. key1:
  2117. serializedVersion: 2
  2118. rgba: 4294967295
  2119. key2:
  2120. serializedVersion: 2
  2121. rgba: 0
  2122. key3:
  2123. serializedVersion: 2
  2124. rgba: 0
  2125. key4:
  2126. serializedVersion: 2
  2127. rgba: 0
  2128. key5:
  2129. serializedVersion: 2
  2130. rgba: 0
  2131. key6:
  2132. serializedVersion: 2
  2133. rgba: 0
  2134. key7:
  2135. serializedVersion: 2
  2136. rgba: 0
  2137. ctime0: 0
  2138. ctime1: 65535
  2139. ctime2: 0
  2140. ctime3: 0
  2141. ctime4: 0
  2142. ctime5: 0
  2143. ctime6: 0
  2144. ctime7: 0
  2145. atime0: 0
  2146. atime1: 65535
  2147. atime2: 0
  2148. atime3: 0
  2149. atime4: 0
  2150. atime5: 0
  2151. atime6: 0
  2152. atime7: 0
  2153. m_Mode: 0
  2154. m_NumColorKeys: 2
  2155. m_NumAlphaKeys: 2
  2156. minColor: {r: 1, g: 1, b: 1, a: 1}
  2157. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2158. minMaxState: 1
  2159. range: {x: 0, y: 1}
  2160. CollisionModule:
  2161. enabled: 0
  2162. serializedVersion: 3
  2163. type: 0
  2164. collisionMode: 0
  2165. plane0: {fileID: 0}
  2166. plane1: {fileID: 0}
  2167. plane2: {fileID: 0}
  2168. plane3: {fileID: 0}
  2169. plane4: {fileID: 0}
  2170. plane5: {fileID: 0}
  2171. m_Dampen:
  2172. scalar: 0
  2173. maxCurve:
  2174. serializedVersion: 2
  2175. m_Curve:
  2176. - serializedVersion: 2
  2177. time: 0
  2178. value: 1
  2179. inSlope: 0
  2180. outSlope: 0
  2181. tangentMode: 0
  2182. - serializedVersion: 2
  2183. time: 1
  2184. value: 1
  2185. inSlope: 0
  2186. outSlope: 0
  2187. tangentMode: 0
  2188. m_PreInfinity: 2
  2189. m_PostInfinity: 2
  2190. m_RotationOrder: 4
  2191. minCurve:
  2192. serializedVersion: 2
  2193. m_Curve:
  2194. - serializedVersion: 2
  2195. time: 0
  2196. value: 0
  2197. inSlope: 0
  2198. outSlope: 0
  2199. tangentMode: 0
  2200. - serializedVersion: 2
  2201. time: 1
  2202. value: 0
  2203. inSlope: 0
  2204. outSlope: 0
  2205. tangentMode: 0
  2206. m_PreInfinity: 2
  2207. m_PostInfinity: 2
  2208. m_RotationOrder: 4
  2209. minMaxState: 0
  2210. m_Bounce:
  2211. scalar: 1
  2212. maxCurve:
  2213. serializedVersion: 2
  2214. m_Curve:
  2215. - serializedVersion: 2
  2216. time: 0
  2217. value: 1
  2218. inSlope: 0
  2219. outSlope: 0
  2220. tangentMode: 0
  2221. - serializedVersion: 2
  2222. time: 1
  2223. value: 1
  2224. inSlope: 0
  2225. outSlope: 0
  2226. tangentMode: 0
  2227. m_PreInfinity: 2
  2228. m_PostInfinity: 2
  2229. m_RotationOrder: 4
  2230. minCurve:
  2231. serializedVersion: 2
  2232. m_Curve:
  2233. - serializedVersion: 2
  2234. time: 0
  2235. value: 0
  2236. inSlope: 0
  2237. outSlope: 0
  2238. tangentMode: 0
  2239. - serializedVersion: 2
  2240. time: 1
  2241. value: 0
  2242. inSlope: 0
  2243. outSlope: 0
  2244. tangentMode: 0
  2245. m_PreInfinity: 2
  2246. m_PostInfinity: 2
  2247. m_RotationOrder: 4
  2248. minMaxState: 0
  2249. m_EnergyLossOnCollision:
  2250. scalar: 0
  2251. maxCurve:
  2252. serializedVersion: 2
  2253. m_Curve:
  2254. - serializedVersion: 2
  2255. time: 0
  2256. value: 1
  2257. inSlope: 0
  2258. outSlope: 0
  2259. tangentMode: 0
  2260. - serializedVersion: 2
  2261. time: 1
  2262. value: 1
  2263. inSlope: 0
  2264. outSlope: 0
  2265. tangentMode: 0
  2266. m_PreInfinity: 2
  2267. m_PostInfinity: 2
  2268. m_RotationOrder: 4
  2269. minCurve:
  2270. serializedVersion: 2
  2271. m_Curve:
  2272. - serializedVersion: 2
  2273. time: 0
  2274. value: 0
  2275. inSlope: 0
  2276. outSlope: 0
  2277. tangentMode: 0
  2278. - serializedVersion: 2
  2279. time: 1
  2280. value: 0
  2281. inSlope: 0
  2282. outSlope: 0
  2283. tangentMode: 0
  2284. m_PreInfinity: 2
  2285. m_PostInfinity: 2
  2286. m_RotationOrder: 4
  2287. minMaxState: 0
  2288. minKillSpeed: 0
  2289. maxKillSpeed: 10000
  2290. radiusScale: 1
  2291. collidesWith:
  2292. serializedVersion: 2
  2293. m_Bits: 4294967295
  2294. maxCollisionShapes: 256
  2295. quality: 0
  2296. voxelSize: 0.5
  2297. collisionMessages: 0
  2298. collidesWithDynamic: 1
  2299. interiorCollisions: 1
  2300. TriggerModule:
  2301. enabled: 0
  2302. collisionShape0: {fileID: 0}
  2303. collisionShape1: {fileID: 0}
  2304. collisionShape2: {fileID: 0}
  2305. collisionShape3: {fileID: 0}
  2306. collisionShape4: {fileID: 0}
  2307. collisionShape5: {fileID: 0}
  2308. inside: 1
  2309. outside: 0
  2310. enter: 0
  2311. exit: 0
  2312. radiusScale: 1
  2313. SubModule:
  2314. serializedVersion: 2
  2315. enabled: 0
  2316. subEmitters:
  2317. - emitter: {fileID: 0}
  2318. type: 0
  2319. properties: 0
  2320. LightsModule:
  2321. enabled: 0
  2322. ratio: 0
  2323. light: {fileID: 0}
  2324. randomDistribution: 1
  2325. color: 1
  2326. range: 1
  2327. intensity: 1
  2328. rangeCurve:
  2329. scalar: 1
  2330. maxCurve:
  2331. serializedVersion: 2
  2332. m_Curve:
  2333. - serializedVersion: 2
  2334. time: 0
  2335. value: 1
  2336. inSlope: 0
  2337. outSlope: 0
  2338. tangentMode: 0
  2339. - serializedVersion: 2
  2340. time: 1
  2341. value: 1
  2342. inSlope: 0
  2343. outSlope: 0
  2344. tangentMode: 0
  2345. m_PreInfinity: 2
  2346. m_PostInfinity: 2
  2347. m_RotationOrder: 4
  2348. minCurve:
  2349. serializedVersion: 2
  2350. m_Curve:
  2351. - serializedVersion: 2
  2352. time: 0
  2353. value: 0
  2354. inSlope: 0
  2355. outSlope: 0
  2356. tangentMode: 0
  2357. - serializedVersion: 2
  2358. time: 1
  2359. value: 0
  2360. inSlope: 0
  2361. outSlope: 0
  2362. tangentMode: 0
  2363. m_PreInfinity: 2
  2364. m_PostInfinity: 2
  2365. m_RotationOrder: 4
  2366. minMaxState: 0
  2367. intensityCurve:
  2368. scalar: 1
  2369. maxCurve:
  2370. serializedVersion: 2
  2371. m_Curve:
  2372. - serializedVersion: 2
  2373. time: 0
  2374. value: 1
  2375. inSlope: 0
  2376. outSlope: 0
  2377. tangentMode: 0
  2378. - serializedVersion: 2
  2379. time: 1
  2380. value: 1
  2381. inSlope: 0
  2382. outSlope: 0
  2383. tangentMode: 0
  2384. m_PreInfinity: 2
  2385. m_PostInfinity: 2
  2386. m_RotationOrder: 4
  2387. minCurve:
  2388. serializedVersion: 2
  2389. m_Curve:
  2390. - serializedVersion: 2
  2391. time: 0
  2392. value: 0
  2393. inSlope: 0
  2394. outSlope: 0
  2395. tangentMode: 0
  2396. - serializedVersion: 2
  2397. time: 1
  2398. value: 0
  2399. inSlope: 0
  2400. outSlope: 0
  2401. tangentMode: 0
  2402. m_PreInfinity: 2
  2403. m_PostInfinity: 2
  2404. m_RotationOrder: 4
  2405. minMaxState: 0
  2406. maxLights: 20
  2407. TrailModule:
  2408. enabled: 0
  2409. ratio: 1
  2410. lifetime:
  2411. scalar: 1
  2412. maxCurve:
  2413. serializedVersion: 2
  2414. m_Curve:
  2415. - serializedVersion: 2
  2416. time: 0
  2417. value: 1
  2418. inSlope: 0
  2419. outSlope: 0
  2420. tangentMode: 0
  2421. - serializedVersion: 2
  2422. time: 1
  2423. value: 1
  2424. inSlope: 0
  2425. outSlope: 0
  2426. tangentMode: 0
  2427. m_PreInfinity: 2
  2428. m_PostInfinity: 2
  2429. m_RotationOrder: 4
  2430. minCurve:
  2431. serializedVersion: 2
  2432. m_Curve:
  2433. - serializedVersion: 2
  2434. time: 0
  2435. value: 0
  2436. inSlope: 0
  2437. outSlope: 0
  2438. tangentMode: 0
  2439. - serializedVersion: 2
  2440. time: 1
  2441. value: 0
  2442. inSlope: 0
  2443. outSlope: 0
  2444. tangentMode: 0
  2445. m_PreInfinity: 2
  2446. m_PostInfinity: 2
  2447. m_RotationOrder: 4
  2448. minMaxState: 0
  2449. minVertexDistance: 0.2
  2450. textureMode: 0
  2451. worldSpace: 0
  2452. dieWithParticles: 1
  2453. sizeAffectsWidth: 1
  2454. sizeAffectsLifetime: 0
  2455. inheritParticleColor: 1
  2456. colorOverLifetime:
  2457. serializedVersion: 2
  2458. maxGradient:
  2459. key0:
  2460. serializedVersion: 2
  2461. rgba: 4294967295
  2462. key1:
  2463. serializedVersion: 2
  2464. rgba: 4294967295
  2465. key2:
  2466. serializedVersion: 2
  2467. rgba: 0
  2468. key3:
  2469. serializedVersion: 2
  2470. rgba: 0
  2471. key4:
  2472. serializedVersion: 2
  2473. rgba: 0
  2474. key5:
  2475. serializedVersion: 2
  2476. rgba: 0
  2477. key6:
  2478. serializedVersion: 2
  2479. rgba: 0
  2480. key7:
  2481. serializedVersion: 2
  2482. rgba: 0
  2483. ctime0: 0
  2484. ctime1: 65535
  2485. ctime2: 0
  2486. ctime3: 0
  2487. ctime4: 0
  2488. ctime5: 0
  2489. ctime6: 0
  2490. ctime7: 0
  2491. atime0: 0
  2492. atime1: 65535
  2493. atime2: 0
  2494. atime3: 0
  2495. atime4: 0
  2496. atime5: 0
  2497. atime6: 0
  2498. atime7: 0
  2499. m_Mode: 0
  2500. m_NumColorKeys: 2
  2501. m_NumAlphaKeys: 2
  2502. minGradient:
  2503. key0:
  2504. serializedVersion: 2
  2505. rgba: 4294967295
  2506. key1:
  2507. serializedVersion: 2
  2508. rgba: 4294967295
  2509. key2:
  2510. serializedVersion: 2
  2511. rgba: 0
  2512. key3:
  2513. serializedVersion: 2
  2514. rgba: 0
  2515. key4:
  2516. serializedVersion: 2
  2517. rgba: 0
  2518. key5:
  2519. serializedVersion: 2
  2520. rgba: 0
  2521. key6:
  2522. serializedVersion: 2
  2523. rgba: 0
  2524. key7:
  2525. serializedVersion: 2
  2526. rgba: 0
  2527. ctime0: 0
  2528. ctime1: 65535
  2529. ctime2: 0
  2530. ctime3: 0
  2531. ctime4: 0
  2532. ctime5: 0
  2533. ctime6: 0
  2534. ctime7: 0
  2535. atime0: 0
  2536. atime1: 65535
  2537. atime2: 0
  2538. atime3: 0
  2539. atime4: 0
  2540. atime5: 0
  2541. atime6: 0
  2542. atime7: 0
  2543. m_Mode: 0
  2544. m_NumColorKeys: 2
  2545. m_NumAlphaKeys: 2
  2546. minColor: {r: 1, g: 1, b: 1, a: 1}
  2547. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2548. minMaxState: 0
  2549. widthOverTrail:
  2550. scalar: 1
  2551. maxCurve:
  2552. serializedVersion: 2
  2553. m_Curve:
  2554. - serializedVersion: 2
  2555. time: 0
  2556. value: 1
  2557. inSlope: 0
  2558. outSlope: 0
  2559. tangentMode: 0
  2560. - serializedVersion: 2
  2561. time: 1
  2562. value: 1
  2563. inSlope: 0
  2564. outSlope: 0
  2565. tangentMode: 0
  2566. m_PreInfinity: 2
  2567. m_PostInfinity: 2
  2568. m_RotationOrder: 4
  2569. minCurve:
  2570. serializedVersion: 2
  2571. m_Curve:
  2572. - serializedVersion: 2
  2573. time: 0
  2574. value: 0
  2575. inSlope: 0
  2576. outSlope: 0
  2577. tangentMode: 0
  2578. - serializedVersion: 2
  2579. time: 1
  2580. value: 0
  2581. inSlope: 0
  2582. outSlope: 0
  2583. tangentMode: 0
  2584. m_PreInfinity: 2
  2585. m_PostInfinity: 2
  2586. m_RotationOrder: 4
  2587. minMaxState: 0
  2588. colorOverTrail:
  2589. serializedVersion: 2
  2590. maxGradient:
  2591. key0:
  2592. serializedVersion: 2
  2593. rgba: 4294967295
  2594. key1:
  2595. serializedVersion: 2
  2596. rgba: 4294967295
  2597. key2:
  2598. serializedVersion: 2
  2599. rgba: 0
  2600. key3:
  2601. serializedVersion: 2
  2602. rgba: 0
  2603. key4:
  2604. serializedVersion: 2
  2605. rgba: 0
  2606. key5:
  2607. serializedVersion: 2
  2608. rgba: 0
  2609. key6:
  2610. serializedVersion: 2
  2611. rgba: 0
  2612. key7:
  2613. serializedVersion: 2
  2614. rgba: 0
  2615. ctime0: 0
  2616. ctime1: 65535
  2617. ctime2: 0
  2618. ctime3: 0
  2619. ctime4: 0
  2620. ctime5: 0
  2621. ctime6: 0
  2622. ctime7: 0
  2623. atime0: 0
  2624. atime1: 65535
  2625. atime2: 0
  2626. atime3: 0
  2627. atime4: 0
  2628. atime5: 0
  2629. atime6: 0
  2630. atime7: 0
  2631. m_Mode: 0
  2632. m_NumColorKeys: 2
  2633. m_NumAlphaKeys: 2
  2634. minGradient:
  2635. key0:
  2636. serializedVersion: 2
  2637. rgba: 4294967295
  2638. key1:
  2639. serializedVersion: 2
  2640. rgba: 4294967295
  2641. key2:
  2642. serializedVersion: 2
  2643. rgba: 0
  2644. key3:
  2645. serializedVersion: 2
  2646. rgba: 0
  2647. key4:
  2648. serializedVersion: 2
  2649. rgba: 0
  2650. key5:
  2651. serializedVersion: 2
  2652. rgba: 0
  2653. key6:
  2654. serializedVersion: 2
  2655. rgba: 0
  2656. key7:
  2657. serializedVersion: 2
  2658. rgba: 0
  2659. ctime0: 0
  2660. ctime1: 65535
  2661. ctime2: 0
  2662. ctime3: 0
  2663. ctime4: 0
  2664. ctime5: 0
  2665. ctime6: 0
  2666. ctime7: 0
  2667. atime0: 0
  2668. atime1: 65535
  2669. atime2: 0
  2670. atime3: 0
  2671. atime4: 0
  2672. atime5: 0
  2673. atime6: 0
  2674. atime7: 0
  2675. m_Mode: 0
  2676. m_NumColorKeys: 2
  2677. m_NumAlphaKeys: 2
  2678. minColor: {r: 1, g: 1, b: 1, a: 1}
  2679. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2680. minMaxState: 0
  2681. --- !u!199 &199997109612976202
  2682. ParticleSystemRenderer:
  2683. serializedVersion: 2
  2684. m_ObjectHideFlags: 1
  2685. m_PrefabParentObject: {fileID: 0}
  2686. m_PrefabInternal: {fileID: 100100000}
  2687. m_GameObject: {fileID: 1976919018343882}
  2688. m_Enabled: 1
  2689. m_CastShadows: 0
  2690. m_ReceiveShadows: 0
  2691. m_MotionVectors: 1
  2692. m_LightProbeUsage: 1
  2693. m_ReflectionProbeUsage: 0
  2694. m_Materials:
  2695. - {fileID: 2100000, guid: d62d7d40db395f642b0e46983cdacb6c, type: 2}
  2696. - {fileID: 0}
  2697. m_StaticBatchInfo:
  2698. firstSubMesh: 0
  2699. subMeshCount: 0
  2700. m_StaticBatchRoot: {fileID: 0}
  2701. m_ProbeAnchor: {fileID: 0}
  2702. m_LightProbeVolumeOverride: {fileID: 0}
  2703. m_ScaleInLightmap: 1
  2704. m_PreserveUVs: 0
  2705. m_IgnoreNormalsForChartDetection: 0
  2706. m_ImportantGI: 0
  2707. m_SelectedEditorRenderState: 0
  2708. m_MinimumChartSize: 4
  2709. m_AutoUVMaxDistance: 0.5
  2710. m_AutoUVMaxAngle: 89
  2711. m_LightmapParameters: {fileID: 0}
  2712. m_SortingLayerID: 0
  2713. m_SortingOrder: 0
  2714. m_RenderMode: 0
  2715. m_SortMode: 0
  2716. m_MinParticleSize: 0
  2717. m_MaxParticleSize: 0.5
  2718. m_CameraVelocityScale: 0
  2719. m_VelocityScale: 0
  2720. m_LengthScale: 2
  2721. m_SortingFudge: 0
  2722. m_NormalDirection: 1
  2723. m_RenderAlignment: 0
  2724. m_Pivot: {x: 0, y: 0, z: 0}
  2725. m_UseCustomVertexStreams: 0
  2726. m_VertexStreamMask: 27
  2727. m_Mesh: {fileID: 0}
  2728. m_Mesh1: {fileID: 0}
  2729. m_Mesh2: {fileID: 0}
  2730. m_Mesh3: {fileID: 0}