DustMotesEffect.prefab 58 KB

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