Ef_Bullet_01.prefab 58 KB

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