CFXM_Text Hit Random.prefab 58 KB

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