FX_Grenade_Smoke_01.prefab 77 KB

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