FX_Cart_Rail_01.prefab 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423
  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: 1130720615415440}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1130720615415440
  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: 4110376856010380}
  22. - component: {fileID: 198606344958251546}
  23. - component: {fileID: 199463633948712120}
  24. m_Layer: 0
  25. m_Name: FX_Cart_Rail_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 &4110376856010380
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1130720615415440}
  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 &198606344958251546
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1130720615415440}
  50. serializedVersion: 5
  51. lengthInSec: 10
  52. simulationSpeed: 1
  53. looping: 1
  54. prewarm: 1
  55. playOnAwake: 1
  56. useUnscaledTime: 0
  57. autoRandomSeed: 1
  58. useRigidbodyForVelocity: 1
  59. startDelay:
  60. serializedVersion: 2
  61. minMaxState: 0
  62. scalar: 0
  63. minScalar: 0
  64. maxCurve:
  65. serializedVersion: 2
  66. m_Curve:
  67. - serializedVersion: 2
  68. time: 0
  69. value: 0
  70. inSlope: 0
  71. outSlope: 0
  72. tangentMode: 0
  73. - serializedVersion: 2
  74. time: 1
  75. value: 0
  76. inSlope: 0
  77. outSlope: 0
  78. tangentMode: 0
  79. m_PreInfinity: 2
  80. m_PostInfinity: 2
  81. m_RotationOrder: 4
  82. minCurve:
  83. serializedVersion: 2
  84. m_Curve:
  85. - serializedVersion: 2
  86. time: 0
  87. value: 0
  88. inSlope: 0
  89. outSlope: 0
  90. tangentMode: 0
  91. - serializedVersion: 2
  92. time: 1
  93. value: 0
  94. inSlope: 0
  95. outSlope: 0
  96. tangentMode: 0
  97. m_PreInfinity: 2
  98. m_PostInfinity: 2
  99. m_RotationOrder: 4
  100. moveWithTransform: 0
  101. moveWithCustomTransform: {fileID: 0}
  102. scalingMode: 1
  103. randomSeed: 606607522
  104. InitialModule:
  105. serializedVersion: 3
  106. enabled: 1
  107. startLifetime:
  108. serializedVersion: 2
  109. minMaxState: 0
  110. scalar: 80
  111. minScalar: 5
  112. maxCurve:
  113. serializedVersion: 2
  114. m_Curve:
  115. - serializedVersion: 2
  116. time: 0
  117. value: 1
  118. inSlope: 0
  119. outSlope: 0
  120. tangentMode: 0
  121. - serializedVersion: 2
  122. time: 1
  123. value: 1
  124. inSlope: 0
  125. outSlope: 0
  126. tangentMode: 0
  127. m_PreInfinity: 2
  128. m_PostInfinity: 2
  129. m_RotationOrder: 4
  130. minCurve:
  131. serializedVersion: 2
  132. m_Curve:
  133. - serializedVersion: 2
  134. time: 0
  135. value: 1
  136. inSlope: 0
  137. outSlope: 0
  138. tangentMode: 0
  139. - serializedVersion: 2
  140. time: 1
  141. value: 1
  142. inSlope: 0
  143. outSlope: 0
  144. tangentMode: 0
  145. m_PreInfinity: 2
  146. m_PostInfinity: 2
  147. m_RotationOrder: 4
  148. startSpeed:
  149. serializedVersion: 2
  150. minMaxState: 0
  151. scalar: -2
  152. minScalar: -2.1
  153. maxCurve:
  154. serializedVersion: 2
  155. m_Curve:
  156. - serializedVersion: 2
  157. time: 0
  158. value: 1
  159. inSlope: 0
  160. outSlope: 0
  161. tangentMode: 0
  162. - serializedVersion: 2
  163. time: 1
  164. value: 1
  165. inSlope: 0
  166. outSlope: 0
  167. tangentMode: 0
  168. m_PreInfinity: 2
  169. m_PostInfinity: 2
  170. m_RotationOrder: 4
  171. minCurve:
  172. serializedVersion: 2
  173. m_Curve:
  174. - serializedVersion: 2
  175. time: 0
  176. value: 1
  177. inSlope: 0
  178. outSlope: 0
  179. tangentMode: 0
  180. - serializedVersion: 2
  181. time: 1
  182. value: 1
  183. inSlope: 0
  184. outSlope: 0
  185. tangentMode: 0
  186. m_PreInfinity: 2
  187. m_PostInfinity: 2
  188. m_RotationOrder: 4
  189. startColor:
  190. serializedVersion: 2
  191. minMaxState: 0
  192. minColor: {r: 1, g: 1, b: 1, a: 1}
  193. maxColor: {r: 1, g: 1, b: 1, a: 1}
  194. maxGradient:
  195. serializedVersion: 2
  196. key0: {r: 1, g: 1, b: 1, a: 1}
  197. key1: {r: 1, g: 1, b: 1, a: 1}
  198. key2: {r: 0, g: 0, b: 0, a: 0}
  199. key3: {r: 0, g: 0, b: 0, a: 0}
  200. key4: {r: 0, g: 0, b: 0, a: 0}
  201. key5: {r: 0, g: 0, b: 0, a: 0}
  202. key6: {r: 0, g: 0, b: 0, a: 0}
  203. key7: {r: 0, g: 0, b: 0, a: 0}
  204. ctime0: 0
  205. ctime1: 65535
  206. ctime2: 0
  207. ctime3: 0
  208. ctime4: 0
  209. ctime5: 0
  210. ctime6: 0
  211. ctime7: 0
  212. atime0: 0
  213. atime1: 65535
  214. atime2: 0
  215. atime3: 0
  216. atime4: 0
  217. atime5: 0
  218. atime6: 0
  219. atime7: 0
  220. m_Mode: 0
  221. m_NumColorKeys: 2
  222. m_NumAlphaKeys: 2
  223. minGradient:
  224. serializedVersion: 2
  225. key0: {r: 1, g: 1, b: 1, a: 1}
  226. key1: {r: 1, g: 1, b: 1, a: 1}
  227. key2: {r: 0, g: 0, b: 0, a: 0}
  228. key3: {r: 0, g: 0, b: 0, a: 0}
  229. key4: {r: 0, g: 0, b: 0, a: 0}
  230. key5: {r: 0, g: 0, b: 0, a: 0}
  231. key6: {r: 0, g: 0, b: 0, a: 0}
  232. key7: {r: 0, g: 0, b: 0, a: 0}
  233. ctime0: 0
  234. ctime1: 65535
  235. ctime2: 0
  236. ctime3: 0
  237. ctime4: 0
  238. ctime5: 0
  239. ctime6: 0
  240. ctime7: 0
  241. atime0: 0
  242. atime1: 65535
  243. atime2: 0
  244. atime3: 0
  245. atime4: 0
  246. atime5: 0
  247. atime6: 0
  248. atime7: 0
  249. m_Mode: 0
  250. m_NumColorKeys: 2
  251. m_NumAlphaKeys: 2
  252. startSize:
  253. serializedVersion: 2
  254. minMaxState: 0
  255. scalar: 1
  256. minScalar: 1
  257. maxCurve:
  258. serializedVersion: 2
  259. m_Curve:
  260. - serializedVersion: 2
  261. time: 0
  262. value: 1
  263. inSlope: 0
  264. outSlope: 0
  265. tangentMode: 0
  266. - serializedVersion: 2
  267. time: 1
  268. value: 1
  269. inSlope: 0
  270. outSlope: 0
  271. tangentMode: 0
  272. m_PreInfinity: 2
  273. m_PostInfinity: 2
  274. m_RotationOrder: 4
  275. minCurve:
  276. serializedVersion: 2
  277. m_Curve:
  278. - serializedVersion: 2
  279. time: 0
  280. value: 1
  281. inSlope: 0
  282. outSlope: 0
  283. tangentMode: 0
  284. - serializedVersion: 2
  285. time: 1
  286. value: 1
  287. inSlope: 0
  288. outSlope: 0
  289. tangentMode: 0
  290. m_PreInfinity: 2
  291. m_PostInfinity: 2
  292. m_RotationOrder: 4
  293. startSizeY:
  294. serializedVersion: 2
  295. minMaxState: 0
  296. scalar: 1
  297. minScalar: 1
  298. maxCurve:
  299. serializedVersion: 2
  300. m_Curve:
  301. - serializedVersion: 2
  302. time: 0
  303. value: 1
  304. inSlope: 0
  305. outSlope: 0
  306. tangentMode: 0
  307. - serializedVersion: 2
  308. time: 1
  309. value: 1
  310. inSlope: 0
  311. outSlope: 0
  312. tangentMode: 0
  313. m_PreInfinity: 2
  314. m_PostInfinity: 2
  315. m_RotationOrder: 4
  316. minCurve:
  317. serializedVersion: 2
  318. m_Curve:
  319. - serializedVersion: 2
  320. time: 0
  321. value: 1
  322. inSlope: 0
  323. outSlope: 0
  324. tangentMode: 0
  325. - serializedVersion: 2
  326. time: 1
  327. value: 1
  328. inSlope: 0
  329. outSlope: 0
  330. tangentMode: 0
  331. m_PreInfinity: 2
  332. m_PostInfinity: 2
  333. m_RotationOrder: 4
  334. startSizeZ:
  335. serializedVersion: 2
  336. minMaxState: 0
  337. scalar: 1
  338. minScalar: 1
  339. maxCurve:
  340. serializedVersion: 2
  341. m_Curve:
  342. - serializedVersion: 2
  343. time: 0
  344. value: 1
  345. inSlope: 0
  346. outSlope: 0
  347. tangentMode: 0
  348. - serializedVersion: 2
  349. time: 1
  350. value: 1
  351. inSlope: 0
  352. outSlope: 0
  353. tangentMode: 0
  354. m_PreInfinity: 2
  355. m_PostInfinity: 2
  356. m_RotationOrder: 4
  357. minCurve:
  358. serializedVersion: 2
  359. m_Curve:
  360. - serializedVersion: 2
  361. time: 0
  362. value: 1
  363. inSlope: 0
  364. outSlope: 0
  365. tangentMode: 0
  366. - serializedVersion: 2
  367. time: 1
  368. value: 1
  369. inSlope: 0
  370. outSlope: 0
  371. tangentMode: 0
  372. m_PreInfinity: 2
  373. m_PostInfinity: 2
  374. m_RotationOrder: 4
  375. startRotationX:
  376. serializedVersion: 2
  377. minMaxState: 0
  378. scalar: 0
  379. minScalar: 0
  380. maxCurve:
  381. serializedVersion: 2
  382. m_Curve:
  383. - serializedVersion: 2
  384. time: 0
  385. value: 0
  386. inSlope: 0
  387. outSlope: 0
  388. tangentMode: 0
  389. - serializedVersion: 2
  390. time: 1
  391. value: 0
  392. inSlope: 0
  393. outSlope: 0
  394. tangentMode: 0
  395. m_PreInfinity: 2
  396. m_PostInfinity: 2
  397. m_RotationOrder: 4
  398. minCurve:
  399. serializedVersion: 2
  400. m_Curve:
  401. - serializedVersion: 2
  402. time: 0
  403. value: 0
  404. inSlope: 0
  405. outSlope: 0
  406. tangentMode: 0
  407. - serializedVersion: 2
  408. time: 1
  409. value: 0
  410. inSlope: 0
  411. outSlope: 0
  412. tangentMode: 0
  413. m_PreInfinity: 2
  414. m_PostInfinity: 2
  415. m_RotationOrder: 4
  416. startRotationY:
  417. serializedVersion: 2
  418. minMaxState: 0
  419. scalar: -1.5707963
  420. minScalar: 0
  421. maxCurve:
  422. serializedVersion: 2
  423. m_Curve:
  424. - serializedVersion: 2
  425. time: 0
  426. value: 0
  427. inSlope: 0
  428. outSlope: 0
  429. tangentMode: 0
  430. - serializedVersion: 2
  431. time: 1
  432. value: 0
  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. startRotation:
  458. serializedVersion: 2
  459. minMaxState: 0
  460. scalar: 0.08726646
  461. minScalar: 0
  462. maxCurve:
  463. serializedVersion: 2
  464. m_Curve:
  465. - serializedVersion: 2
  466. time: 0
  467. value: 0
  468. inSlope: 0
  469. outSlope: 0
  470. tangentMode: 0
  471. - serializedVersion: 2
  472. time: 1
  473. value: 0
  474. inSlope: 0
  475. outSlope: 0
  476. tangentMode: 0
  477. m_PreInfinity: 2
  478. m_PostInfinity: 2
  479. m_RotationOrder: 4
  480. minCurve:
  481. serializedVersion: 2
  482. m_Curve:
  483. - serializedVersion: 2
  484. time: 0
  485. value: 0
  486. inSlope: 0
  487. outSlope: 0
  488. tangentMode: 0
  489. - serializedVersion: 2
  490. time: 1
  491. value: 0
  492. inSlope: 0
  493. outSlope: 0
  494. tangentMode: 0
  495. m_PreInfinity: 2
  496. m_PostInfinity: 2
  497. m_RotationOrder: 4
  498. randomizeRotationDirection: 0
  499. maxNumParticles: 100
  500. size3D: 0
  501. rotation3D: 1
  502. gravityModifier:
  503. serializedVersion: 2
  504. minMaxState: 0
  505. scalar: 0
  506. minScalar: 0
  507. maxCurve:
  508. serializedVersion: 2
  509. m_Curve:
  510. - serializedVersion: 2
  511. time: 0
  512. value: 0
  513. inSlope: 0
  514. outSlope: 0
  515. tangentMode: 0
  516. - serializedVersion: 2
  517. time: 1
  518. value: 0
  519. inSlope: 0
  520. outSlope: 0
  521. tangentMode: 0
  522. m_PreInfinity: 2
  523. m_PostInfinity: 2
  524. m_RotationOrder: 4
  525. minCurve:
  526. serializedVersion: 2
  527. m_Curve:
  528. - serializedVersion: 2
  529. time: 0
  530. value: 0
  531. inSlope: 0
  532. outSlope: 0
  533. tangentMode: 0
  534. - serializedVersion: 2
  535. time: 1
  536. value: 0
  537. inSlope: 0
  538. outSlope: 0
  539. tangentMode: 0
  540. m_PreInfinity: 2
  541. m_PostInfinity: 2
  542. m_RotationOrder: 4
  543. ShapeModule:
  544. serializedVersion: 5
  545. enabled: 1
  546. type: 5
  547. angle: 25
  548. length: 5
  549. boxThickness: {x: 0, y: 0, z: 0}
  550. radiusThickness: 1
  551. donutRadius: 0.2
  552. m_Position: {x: 0, y: 0, z: 0}
  553. m_Rotation: {x: 0, y: 0, z: 0}
  554. m_Scale: {x: 0.001, y: 0.001, z: 0.001}
  555. placementMode: 0
  556. m_Mesh: {fileID: 0}
  557. m_MeshRenderer: {fileID: 0}
  558. m_SkinnedMeshRenderer: {fileID: 0}
  559. m_MeshMaterialIndex: 0
  560. m_MeshNormalOffset: 0
  561. m_UseMeshMaterialIndex: 0
  562. m_UseMeshColors: 1
  563. alignToDirection: 0
  564. randomDirectionAmount: 0
  565. sphericalDirectionAmount: 0
  566. randomPositionAmount: 0
  567. radius:
  568. value: 1
  569. mode: 0
  570. spread: 0
  571. speed:
  572. serializedVersion: 2
  573. minMaxState: 0
  574. scalar: 1
  575. minScalar: 1
  576. maxCurve:
  577. serializedVersion: 2
  578. m_Curve:
  579. - serializedVersion: 2
  580. time: 0
  581. value: 1
  582. inSlope: 0
  583. outSlope: 0
  584. tangentMode: 0
  585. - serializedVersion: 2
  586. time: 1
  587. value: 1
  588. inSlope: 0
  589. outSlope: 0
  590. tangentMode: 0
  591. m_PreInfinity: 2
  592. m_PostInfinity: 2
  593. m_RotationOrder: 4
  594. minCurve:
  595. serializedVersion: 2
  596. m_Curve:
  597. - serializedVersion: 2
  598. time: 0
  599. value: 1
  600. inSlope: 0
  601. outSlope: 0
  602. tangentMode: 0
  603. - serializedVersion: 2
  604. time: 1
  605. value: 1
  606. inSlope: 0
  607. outSlope: 0
  608. tangentMode: 0
  609. m_PreInfinity: 2
  610. m_PostInfinity: 2
  611. m_RotationOrder: 4
  612. arc:
  613. value: 360
  614. mode: 0
  615. spread: 0
  616. speed:
  617. serializedVersion: 2
  618. minMaxState: 0
  619. scalar: 1
  620. minScalar: 1
  621. maxCurve:
  622. serializedVersion: 2
  623. m_Curve:
  624. - serializedVersion: 2
  625. time: 0
  626. value: 1
  627. inSlope: 0
  628. outSlope: 0
  629. tangentMode: 0
  630. - serializedVersion: 2
  631. time: 1
  632. value: 1
  633. inSlope: 0
  634. outSlope: 0
  635. tangentMode: 0
  636. m_PreInfinity: 2
  637. m_PostInfinity: 2
  638. m_RotationOrder: 4
  639. minCurve:
  640. serializedVersion: 2
  641. m_Curve:
  642. - serializedVersion: 2
  643. time: 0
  644. value: 1
  645. inSlope: 0
  646. outSlope: 0
  647. tangentMode: 0
  648. - serializedVersion: 2
  649. time: 1
  650. value: 1
  651. inSlope: 0
  652. outSlope: 0
  653. tangentMode: 0
  654. m_PreInfinity: 2
  655. m_PostInfinity: 2
  656. m_RotationOrder: 4
  657. EmissionModule:
  658. enabled: 1
  659. serializedVersion: 4
  660. rateOverTime:
  661. serializedVersion: 2
  662. minMaxState: 2
  663. scalar: 0.2
  664. minScalar: 0.1
  665. maxCurve:
  666. serializedVersion: 2
  667. m_Curve:
  668. - serializedVersion: 2
  669. time: 0
  670. value: 1
  671. inSlope: 0
  672. outSlope: 0
  673. tangentMode: 0
  674. - serializedVersion: 2
  675. time: 0.5072653
  676. value: 0.3496704
  677. inSlope: 0
  678. outSlope: 0
  679. tangentMode: 0
  680. - serializedVersion: 2
  681. time: 1
  682. value: 1
  683. inSlope: 0
  684. outSlope: 0
  685. tangentMode: 0
  686. m_PreInfinity: 2
  687. m_PostInfinity: 2
  688. m_RotationOrder: 0
  689. minCurve:
  690. serializedVersion: 2
  691. m_Curve:
  692. - serializedVersion: 2
  693. time: 0
  694. value: 0.61395264
  695. inSlope: 0
  696. outSlope: 0
  697. tangentMode: 0
  698. - serializedVersion: 2
  699. time: 0.47401246
  700. value: 0.98895264
  701. inSlope: 0
  702. outSlope: 0
  703. tangentMode: 0
  704. - serializedVersion: 2
  705. time: 1
  706. value: 0.67407227
  707. inSlope: 0
  708. outSlope: 0
  709. tangentMode: 0
  710. m_PreInfinity: 2
  711. m_PostInfinity: 2
  712. m_RotationOrder: 0
  713. rateOverDistance:
  714. serializedVersion: 2
  715. minMaxState: 0
  716. scalar: 0
  717. minScalar: 0
  718. maxCurve:
  719. serializedVersion: 2
  720. m_Curve:
  721. - serializedVersion: 2
  722. time: 0
  723. value: 0
  724. inSlope: 0
  725. outSlope: 0
  726. tangentMode: 0
  727. - serializedVersion: 2
  728. time: 1
  729. value: 0
  730. inSlope: 0
  731. outSlope: 0
  732. tangentMode: 0
  733. m_PreInfinity: 2
  734. m_PostInfinity: 2
  735. m_RotationOrder: 4
  736. minCurve:
  737. serializedVersion: 2
  738. m_Curve:
  739. - serializedVersion: 2
  740. time: 0
  741. value: 0
  742. inSlope: 0
  743. outSlope: 0
  744. tangentMode: 0
  745. - serializedVersion: 2
  746. time: 1
  747. value: 0
  748. inSlope: 0
  749. outSlope: 0
  750. tangentMode: 0
  751. m_PreInfinity: 2
  752. m_PostInfinity: 2
  753. m_RotationOrder: 4
  754. m_BurstCount: 0
  755. m_Bursts: []
  756. SizeModule:
  757. enabled: 0
  758. curve:
  759. serializedVersion: 2
  760. minMaxState: 1
  761. scalar: 1
  762. minScalar: 1
  763. maxCurve:
  764. serializedVersion: 2
  765. m_Curve:
  766. - serializedVersion: 2
  767. time: 0
  768. value: 0
  769. inSlope: 0
  770. outSlope: 1
  771. tangentMode: 0
  772. - serializedVersion: 2
  773. time: 1
  774. value: 1
  775. inSlope: 1
  776. outSlope: 0
  777. tangentMode: 0
  778. m_PreInfinity: 2
  779. m_PostInfinity: 2
  780. m_RotationOrder: 4
  781. minCurve:
  782. serializedVersion: 2
  783. m_Curve:
  784. - serializedVersion: 2
  785. time: 0
  786. value: 1
  787. inSlope: 0
  788. outSlope: 0
  789. tangentMode: 0
  790. - serializedVersion: 2
  791. time: 1
  792. value: 1
  793. inSlope: 0
  794. outSlope: 0
  795. tangentMode: 0
  796. m_PreInfinity: 2
  797. m_PostInfinity: 2
  798. m_RotationOrder: 4
  799. y:
  800. serializedVersion: 2
  801. minMaxState: 1
  802. scalar: 1
  803. minScalar: 1
  804. maxCurve:
  805. serializedVersion: 2
  806. m_Curve:
  807. - serializedVersion: 2
  808. time: 0
  809. value: 0
  810. inSlope: 0
  811. outSlope: 1
  812. tangentMode: 0
  813. - serializedVersion: 2
  814. time: 1
  815. value: 1
  816. inSlope: 1
  817. outSlope: 0
  818. tangentMode: 0
  819. m_PreInfinity: 2
  820. m_PostInfinity: 2
  821. m_RotationOrder: 4
  822. minCurve:
  823. serializedVersion: 2
  824. m_Curve:
  825. - serializedVersion: 2
  826. time: 0
  827. value: 1
  828. inSlope: 0
  829. outSlope: 0
  830. tangentMode: 0
  831. - serializedVersion: 2
  832. time: 1
  833. value: 1
  834. inSlope: 0
  835. outSlope: 0
  836. tangentMode: 0
  837. m_PreInfinity: 2
  838. m_PostInfinity: 2
  839. m_RotationOrder: 4
  840. z:
  841. serializedVersion: 2
  842. minMaxState: 1
  843. scalar: 1
  844. minScalar: 1
  845. maxCurve:
  846. serializedVersion: 2
  847. m_Curve:
  848. - serializedVersion: 2
  849. time: 0
  850. value: 0
  851. inSlope: 0
  852. outSlope: 1
  853. tangentMode: 0
  854. - serializedVersion: 2
  855. time: 1
  856. value: 1
  857. inSlope: 1
  858. outSlope: 0
  859. tangentMode: 0
  860. m_PreInfinity: 2
  861. m_PostInfinity: 2
  862. m_RotationOrder: 4
  863. minCurve:
  864. serializedVersion: 2
  865. m_Curve:
  866. - serializedVersion: 2
  867. time: 0
  868. value: 1
  869. inSlope: 0
  870. outSlope: 0
  871. tangentMode: 0
  872. - serializedVersion: 2
  873. time: 1
  874. value: 1
  875. inSlope: 0
  876. outSlope: 0
  877. tangentMode: 0
  878. m_PreInfinity: 2
  879. m_PostInfinity: 2
  880. m_RotationOrder: 4
  881. separateAxes: 0
  882. RotationModule:
  883. enabled: 1
  884. x:
  885. serializedVersion: 2
  886. minMaxState: 1
  887. scalar: 1
  888. minScalar: 0
  889. maxCurve:
  890. serializedVersion: 2
  891. m_Curve:
  892. - serializedVersion: 2
  893. time: 0
  894. value: 0
  895. inSlope: 0
  896. outSlope: 0
  897. tangentMode: 0
  898. - serializedVersion: 2
  899. time: 1
  900. value: 0
  901. inSlope: 0
  902. outSlope: 0
  903. tangentMode: 0
  904. m_PreInfinity: 2
  905. m_PostInfinity: 2
  906. m_RotationOrder: 4
  907. minCurve:
  908. serializedVersion: 2
  909. m_Curve:
  910. - serializedVersion: 2
  911. time: 0
  912. value: 0
  913. inSlope: 0
  914. outSlope: 0
  915. tangentMode: 0
  916. - serializedVersion: 2
  917. time: 1
  918. value: 0
  919. inSlope: 0
  920. outSlope: 0
  921. tangentMode: 0
  922. m_PreInfinity: 2
  923. m_PostInfinity: 2
  924. m_RotationOrder: 4
  925. y:
  926. serializedVersion: 2
  927. minMaxState: 1
  928. scalar: 0
  929. minScalar: 0
  930. maxCurve:
  931. serializedVersion: 2
  932. m_Curve:
  933. - serializedVersion: 2
  934. time: 0
  935. value: 0
  936. inSlope: 0
  937. outSlope: 0
  938. tangentMode: 0
  939. - serializedVersion: 2
  940. time: 1
  941. value: 0
  942. inSlope: 0
  943. outSlope: 0
  944. tangentMode: 0
  945. m_PreInfinity: 2
  946. m_PostInfinity: 2
  947. m_RotationOrder: 4
  948. minCurve:
  949. serializedVersion: 2
  950. m_Curve:
  951. - serializedVersion: 2
  952. time: 0
  953. value: 0
  954. inSlope: 0
  955. outSlope: 0
  956. tangentMode: 0
  957. - serializedVersion: 2
  958. time: 1
  959. value: 0
  960. inSlope: 0
  961. outSlope: 0
  962. tangentMode: 0
  963. m_PreInfinity: 2
  964. m_PostInfinity: 2
  965. m_RotationOrder: 4
  966. curve:
  967. serializedVersion: 2
  968. minMaxState: 1
  969. scalar: 0.34906584
  970. minScalar: 0.7853982
  971. maxCurve:
  972. serializedVersion: 2
  973. m_Curve:
  974. - serializedVersion: 2
  975. time: 0
  976. value: -0.5
  977. inSlope: 0
  978. outSlope: 0
  979. tangentMode: 0
  980. - serializedVersion: 2
  981. time: 0.020124393
  982. value: 0.5
  983. inSlope: 0
  984. outSlope: 0
  985. tangentMode: 0
  986. - serializedVersion: 2
  987. time: 0.040248785
  988. value: -0.5
  989. inSlope: 0
  990. outSlope: 0
  991. tangentMode: 0
  992. - serializedVersion: 2
  993. time: 0.06079244
  994. value: 0.5
  995. inSlope: 0
  996. outSlope: 0
  997. tangentMode: 0
  998. - serializedVersion: 2
  999. time: 0.08049757
  1000. value: -0.5
  1001. inSlope: 0
  1002. outSlope: 0
  1003. tangentMode: 0
  1004. - serializedVersion: 2
  1005. time: 0.10062196
  1006. value: 0.5
  1007. inSlope: 0
  1008. outSlope: 0
  1009. tangentMode: 0
  1010. - serializedVersion: 2
  1011. time: 0.121165626
  1012. value: -0.5
  1013. inSlope: 0
  1014. outSlope: 0
  1015. tangentMode: 0
  1016. - serializedVersion: 2
  1017. time: 0.14045149
  1018. value: 0.5
  1019. inSlope: 0
  1020. outSlope: 0
  1021. tangentMode: 0
  1022. - serializedVersion: 2
  1023. time: 0.16015662
  1024. value: -0.5
  1025. inSlope: 0
  1026. outSlope: 0
  1027. tangentMode: 0
  1028. - serializedVersion: 2
  1029. time: 0.18195805
  1030. value: 0.5
  1031. inSlope: 0
  1032. outSlope: 0
  1033. tangentMode: 0
  1034. - serializedVersion: 2
  1035. time: 0.2016632
  1036. value: -0.5
  1037. inSlope: 0
  1038. outSlope: 0
  1039. tangentMode: 0
  1040. m_PreInfinity: 2
  1041. m_PostInfinity: 1
  1042. m_RotationOrder: 0
  1043. minCurve:
  1044. serializedVersion: 2
  1045. m_Curve:
  1046. - serializedVersion: 2
  1047. time: 0
  1048. value: 1
  1049. inSlope: 0
  1050. outSlope: 0
  1051. tangentMode: 0
  1052. - serializedVersion: 2
  1053. time: 1
  1054. value: 1
  1055. inSlope: 0
  1056. outSlope: 0
  1057. tangentMode: 0
  1058. m_PreInfinity: 2
  1059. m_PostInfinity: 2
  1060. m_RotationOrder: 4
  1061. separateAxes: 1
  1062. ColorModule:
  1063. enabled: 0
  1064. gradient:
  1065. serializedVersion: 2
  1066. minMaxState: 1
  1067. minColor: {r: 1, g: 1, b: 1, a: 1}
  1068. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1069. maxGradient:
  1070. serializedVersion: 2
  1071. key0: {r: 1, g: 1, b: 1, a: 1}
  1072. key1: {r: 1, g: 1, b: 1, a: 1}
  1073. key2: {r: 0, g: 0, b: 0, a: 0}
  1074. key3: {r: 0, g: 0, b: 0, a: 0}
  1075. key4: {r: 0, g: 0, b: 0, a: 0}
  1076. key5: {r: 0, g: 0, b: 0, a: 0}
  1077. key6: {r: 0, g: 0, b: 0, a: 0}
  1078. key7: {r: 0, g: 0, b: 0, a: 0}
  1079. ctime0: 0
  1080. ctime1: 65535
  1081. ctime2: 0
  1082. ctime3: 0
  1083. ctime4: 0
  1084. ctime5: 0
  1085. ctime6: 0
  1086. ctime7: 0
  1087. atime0: 0
  1088. atime1: 65535
  1089. atime2: 0
  1090. atime3: 0
  1091. atime4: 0
  1092. atime5: 0
  1093. atime6: 0
  1094. atime7: 0
  1095. m_Mode: 0
  1096. m_NumColorKeys: 2
  1097. m_NumAlphaKeys: 2
  1098. minGradient:
  1099. serializedVersion: 2
  1100. key0: {r: 1, g: 1, b: 1, a: 1}
  1101. key1: {r: 1, g: 1, b: 1, a: 1}
  1102. key2: {r: 0, g: 0, b: 0, a: 0}
  1103. key3: {r: 0, g: 0, b: 0, a: 0}
  1104. key4: {r: 0, g: 0, b: 0, a: 0}
  1105. key5: {r: 0, g: 0, b: 0, a: 0}
  1106. key6: {r: 0, g: 0, b: 0, a: 0}
  1107. key7: {r: 0, g: 0, b: 0, a: 0}
  1108. ctime0: 0
  1109. ctime1: 65535
  1110. ctime2: 0
  1111. ctime3: 0
  1112. ctime4: 0
  1113. ctime5: 0
  1114. ctime6: 0
  1115. ctime7: 0
  1116. atime0: 0
  1117. atime1: 65535
  1118. atime2: 0
  1119. atime3: 0
  1120. atime4: 0
  1121. atime5: 0
  1122. atime6: 0
  1123. atime7: 0
  1124. m_Mode: 0
  1125. m_NumColorKeys: 2
  1126. m_NumAlphaKeys: 2
  1127. UVModule:
  1128. enabled: 0
  1129. mode: 0
  1130. frameOverTime:
  1131. serializedVersion: 2
  1132. minMaxState: 1
  1133. scalar: 0.9999
  1134. minScalar: 0.9999
  1135. maxCurve:
  1136. serializedVersion: 2
  1137. m_Curve:
  1138. - serializedVersion: 2
  1139. time: 0
  1140. value: 0
  1141. inSlope: 0
  1142. outSlope: 1
  1143. tangentMode: 0
  1144. - serializedVersion: 2
  1145. time: 1
  1146. value: 1
  1147. inSlope: 1
  1148. outSlope: 0
  1149. tangentMode: 0
  1150. m_PreInfinity: 2
  1151. m_PostInfinity: 2
  1152. m_RotationOrder: 4
  1153. minCurve:
  1154. serializedVersion: 2
  1155. m_Curve:
  1156. - serializedVersion: 2
  1157. time: 0
  1158. value: 1
  1159. inSlope: 0
  1160. outSlope: 0
  1161. tangentMode: 0
  1162. - serializedVersion: 2
  1163. time: 1
  1164. value: 1
  1165. inSlope: 0
  1166. outSlope: 0
  1167. tangentMode: 0
  1168. m_PreInfinity: 2
  1169. m_PostInfinity: 2
  1170. m_RotationOrder: 4
  1171. startFrame:
  1172. serializedVersion: 2
  1173. minMaxState: 0
  1174. scalar: 0
  1175. minScalar: 0
  1176. maxCurve:
  1177. serializedVersion: 2
  1178. m_Curve:
  1179. - serializedVersion: 2
  1180. time: 0
  1181. value: 0
  1182. inSlope: 0
  1183. outSlope: 0
  1184. tangentMode: 0
  1185. - serializedVersion: 2
  1186. time: 1
  1187. value: 0
  1188. inSlope: 0
  1189. outSlope: 0
  1190. tangentMode: 0
  1191. m_PreInfinity: 2
  1192. m_PostInfinity: 2
  1193. m_RotationOrder: 4
  1194. minCurve:
  1195. serializedVersion: 2
  1196. m_Curve:
  1197. - serializedVersion: 2
  1198. time: 0
  1199. value: 0
  1200. inSlope: 0
  1201. outSlope: 0
  1202. tangentMode: 0
  1203. - serializedVersion: 2
  1204. time: 1
  1205. value: 0
  1206. inSlope: 0
  1207. outSlope: 0
  1208. tangentMode: 0
  1209. m_PreInfinity: 2
  1210. m_PostInfinity: 2
  1211. m_RotationOrder: 4
  1212. tilesX: 1
  1213. tilesY: 1
  1214. animationType: 0
  1215. rowIndex: 0
  1216. cycles: 1
  1217. uvChannelMask: -1
  1218. flipU: 0
  1219. flipV: 0
  1220. randomRow: 1
  1221. sprites:
  1222. - sprite: {fileID: 0}
  1223. VelocityModule:
  1224. enabled: 0
  1225. x:
  1226. serializedVersion: 2
  1227. minMaxState: 0
  1228. scalar: 0
  1229. minScalar: 0
  1230. maxCurve:
  1231. serializedVersion: 2
  1232. m_Curve:
  1233. - serializedVersion: 2
  1234. time: 0
  1235. value: 0
  1236. inSlope: 0
  1237. outSlope: 0
  1238. tangentMode: 0
  1239. - serializedVersion: 2
  1240. time: 1
  1241. value: 0
  1242. inSlope: 0
  1243. outSlope: 0
  1244. tangentMode: 0
  1245. m_PreInfinity: 2
  1246. m_PostInfinity: 2
  1247. m_RotationOrder: 4
  1248. minCurve:
  1249. serializedVersion: 2
  1250. m_Curve:
  1251. - serializedVersion: 2
  1252. time: 0
  1253. value: 0
  1254. inSlope: 0
  1255. outSlope: 0
  1256. tangentMode: 0
  1257. - serializedVersion: 2
  1258. time: 1
  1259. value: 0
  1260. inSlope: 0
  1261. outSlope: 0
  1262. tangentMode: 0
  1263. m_PreInfinity: 2
  1264. m_PostInfinity: 2
  1265. m_RotationOrder: 4
  1266. y:
  1267. serializedVersion: 2
  1268. minMaxState: 0
  1269. scalar: 0
  1270. minScalar: 0
  1271. maxCurve:
  1272. serializedVersion: 2
  1273. m_Curve:
  1274. - serializedVersion: 2
  1275. time: 0
  1276. value: 0
  1277. inSlope: 0
  1278. outSlope: 0
  1279. tangentMode: 0
  1280. - serializedVersion: 2
  1281. time: 1
  1282. value: 0
  1283. inSlope: 0
  1284. outSlope: 0
  1285. tangentMode: 0
  1286. m_PreInfinity: 2
  1287. m_PostInfinity: 2
  1288. m_RotationOrder: 4
  1289. minCurve:
  1290. serializedVersion: 2
  1291. m_Curve:
  1292. - serializedVersion: 2
  1293. time: 0
  1294. value: 0
  1295. inSlope: 0
  1296. outSlope: 0
  1297. tangentMode: 0
  1298. - serializedVersion: 2
  1299. time: 1
  1300. value: 0
  1301. inSlope: 0
  1302. outSlope: 0
  1303. tangentMode: 0
  1304. m_PreInfinity: 2
  1305. m_PostInfinity: 2
  1306. m_RotationOrder: 4
  1307. z:
  1308. serializedVersion: 2
  1309. minMaxState: 0
  1310. scalar: 0
  1311. minScalar: 0
  1312. maxCurve:
  1313. serializedVersion: 2
  1314. m_Curve:
  1315. - serializedVersion: 2
  1316. time: 0
  1317. value: 0
  1318. inSlope: 0
  1319. outSlope: 0
  1320. tangentMode: 0
  1321. - serializedVersion: 2
  1322. time: 1
  1323. value: 0
  1324. inSlope: 0
  1325. outSlope: 0
  1326. tangentMode: 0
  1327. m_PreInfinity: 2
  1328. m_PostInfinity: 2
  1329. m_RotationOrder: 4
  1330. minCurve:
  1331. serializedVersion: 2
  1332. m_Curve:
  1333. - serializedVersion: 2
  1334. time: 0
  1335. value: 0
  1336. inSlope: 0
  1337. outSlope: 0
  1338. tangentMode: 0
  1339. - serializedVersion: 2
  1340. time: 1
  1341. value: 0
  1342. inSlope: 0
  1343. outSlope: 0
  1344. tangentMode: 0
  1345. m_PreInfinity: 2
  1346. m_PostInfinity: 2
  1347. m_RotationOrder: 4
  1348. inWorldSpace: 0
  1349. InheritVelocityModule:
  1350. enabled: 0
  1351. m_Mode: 0
  1352. m_Curve:
  1353. serializedVersion: 2
  1354. minMaxState: 0
  1355. scalar: 0
  1356. minScalar: 0
  1357. maxCurve:
  1358. serializedVersion: 2
  1359. m_Curve:
  1360. - serializedVersion: 2
  1361. time: 0
  1362. value: 0
  1363. inSlope: 0
  1364. outSlope: 0
  1365. tangentMode: 0
  1366. - serializedVersion: 2
  1367. time: 1
  1368. value: 0
  1369. inSlope: 0
  1370. outSlope: 0
  1371. tangentMode: 0
  1372. m_PreInfinity: 2
  1373. m_PostInfinity: 2
  1374. m_RotationOrder: 4
  1375. minCurve:
  1376. serializedVersion: 2
  1377. m_Curve:
  1378. - serializedVersion: 2
  1379. time: 0
  1380. value: 0
  1381. inSlope: 0
  1382. outSlope: 0
  1383. tangentMode: 0
  1384. - serializedVersion: 2
  1385. time: 1
  1386. value: 0
  1387. inSlope: 0
  1388. outSlope: 0
  1389. tangentMode: 0
  1390. m_PreInfinity: 2
  1391. m_PostInfinity: 2
  1392. m_RotationOrder: 4
  1393. ForceModule:
  1394. enabled: 0
  1395. x:
  1396. serializedVersion: 2
  1397. minMaxState: 0
  1398. scalar: 0
  1399. minScalar: 0
  1400. maxCurve:
  1401. serializedVersion: 2
  1402. m_Curve:
  1403. - serializedVersion: 2
  1404. time: 0
  1405. value: 0
  1406. inSlope: 0
  1407. outSlope: 0
  1408. tangentMode: 0
  1409. - serializedVersion: 2
  1410. time: 1
  1411. value: 0
  1412. inSlope: 0
  1413. outSlope: 0
  1414. tangentMode: 0
  1415. m_PreInfinity: 2
  1416. m_PostInfinity: 2
  1417. m_RotationOrder: 4
  1418. minCurve:
  1419. serializedVersion: 2
  1420. m_Curve:
  1421. - serializedVersion: 2
  1422. time: 0
  1423. value: 0
  1424. inSlope: 0
  1425. outSlope: 0
  1426. tangentMode: 0
  1427. - serializedVersion: 2
  1428. time: 1
  1429. value: 0
  1430. inSlope: 0
  1431. outSlope: 0
  1432. tangentMode: 0
  1433. m_PreInfinity: 2
  1434. m_PostInfinity: 2
  1435. m_RotationOrder: 4
  1436. y:
  1437. serializedVersion: 2
  1438. minMaxState: 0
  1439. scalar: 0
  1440. minScalar: 0
  1441. maxCurve:
  1442. serializedVersion: 2
  1443. m_Curve:
  1444. - serializedVersion: 2
  1445. time: 0
  1446. value: 0
  1447. inSlope: 0
  1448. outSlope: 0
  1449. tangentMode: 0
  1450. - serializedVersion: 2
  1451. time: 1
  1452. value: 0
  1453. inSlope: 0
  1454. outSlope: 0
  1455. tangentMode: 0
  1456. m_PreInfinity: 2
  1457. m_PostInfinity: 2
  1458. m_RotationOrder: 4
  1459. minCurve:
  1460. serializedVersion: 2
  1461. m_Curve:
  1462. - serializedVersion: 2
  1463. time: 0
  1464. value: 0
  1465. inSlope: 0
  1466. outSlope: 0
  1467. tangentMode: 0
  1468. - serializedVersion: 2
  1469. time: 1
  1470. value: 0
  1471. inSlope: 0
  1472. outSlope: 0
  1473. tangentMode: 0
  1474. m_PreInfinity: 2
  1475. m_PostInfinity: 2
  1476. m_RotationOrder: 4
  1477. z:
  1478. serializedVersion: 2
  1479. minMaxState: 0
  1480. scalar: 0
  1481. minScalar: 0
  1482. maxCurve:
  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. minCurve:
  1501. serializedVersion: 2
  1502. m_Curve:
  1503. - serializedVersion: 2
  1504. time: 0
  1505. value: 0
  1506. inSlope: 0
  1507. outSlope: 0
  1508. tangentMode: 0
  1509. - serializedVersion: 2
  1510. time: 1
  1511. value: 0
  1512. inSlope: 0
  1513. outSlope: 0
  1514. tangentMode: 0
  1515. m_PreInfinity: 2
  1516. m_PostInfinity: 2
  1517. m_RotationOrder: 4
  1518. inWorldSpace: 0
  1519. randomizePerFrame: 0
  1520. ExternalForcesModule:
  1521. enabled: 0
  1522. multiplier: 1
  1523. ClampVelocityModule:
  1524. enabled: 0
  1525. x:
  1526. serializedVersion: 2
  1527. minMaxState: 0
  1528. scalar: 1
  1529. minScalar: 1
  1530. maxCurve:
  1531. serializedVersion: 2
  1532. m_Curve:
  1533. - serializedVersion: 2
  1534. time: 0
  1535. value: 1
  1536. inSlope: 0
  1537. outSlope: 0
  1538. tangentMode: 0
  1539. - serializedVersion: 2
  1540. time: 1
  1541. value: 1
  1542. inSlope: 0
  1543. outSlope: 0
  1544. tangentMode: 0
  1545. m_PreInfinity: 2
  1546. m_PostInfinity: 2
  1547. m_RotationOrder: 4
  1548. minCurve:
  1549. serializedVersion: 2
  1550. m_Curve:
  1551. - serializedVersion: 2
  1552. time: 0
  1553. value: 1
  1554. inSlope: 0
  1555. outSlope: 0
  1556. tangentMode: 0
  1557. - serializedVersion: 2
  1558. time: 1
  1559. value: 1
  1560. inSlope: 0
  1561. outSlope: 0
  1562. tangentMode: 0
  1563. m_PreInfinity: 2
  1564. m_PostInfinity: 2
  1565. m_RotationOrder: 4
  1566. y:
  1567. serializedVersion: 2
  1568. minMaxState: 0
  1569. scalar: 1
  1570. minScalar: 1
  1571. maxCurve:
  1572. serializedVersion: 2
  1573. m_Curve:
  1574. - serializedVersion: 2
  1575. time: 0
  1576. value: 1
  1577. inSlope: 0
  1578. outSlope: 0
  1579. tangentMode: 0
  1580. - serializedVersion: 2
  1581. time: 1
  1582. value: 1
  1583. inSlope: 0
  1584. outSlope: 0
  1585. tangentMode: 0
  1586. m_PreInfinity: 2
  1587. m_PostInfinity: 2
  1588. m_RotationOrder: 4
  1589. minCurve:
  1590. serializedVersion: 2
  1591. m_Curve:
  1592. - serializedVersion: 2
  1593. time: 0
  1594. value: 1
  1595. inSlope: 0
  1596. outSlope: 0
  1597. tangentMode: 0
  1598. - serializedVersion: 2
  1599. time: 1
  1600. value: 1
  1601. inSlope: 0
  1602. outSlope: 0
  1603. tangentMode: 0
  1604. m_PreInfinity: 2
  1605. m_PostInfinity: 2
  1606. m_RotationOrder: 4
  1607. z:
  1608. serializedVersion: 2
  1609. minMaxState: 0
  1610. scalar: 1
  1611. minScalar: 1
  1612. maxCurve:
  1613. serializedVersion: 2
  1614. m_Curve:
  1615. - serializedVersion: 2
  1616. time: 0
  1617. value: 1
  1618. inSlope: 0
  1619. outSlope: 0
  1620. tangentMode: 0
  1621. - serializedVersion: 2
  1622. time: 1
  1623. value: 1
  1624. inSlope: 0
  1625. outSlope: 0
  1626. tangentMode: 0
  1627. m_PreInfinity: 2
  1628. m_PostInfinity: 2
  1629. m_RotationOrder: 4
  1630. minCurve:
  1631. serializedVersion: 2
  1632. m_Curve:
  1633. - serializedVersion: 2
  1634. time: 0
  1635. value: 1
  1636. inSlope: 0
  1637. outSlope: 0
  1638. tangentMode: 0
  1639. - serializedVersion: 2
  1640. time: 1
  1641. value: 1
  1642. inSlope: 0
  1643. outSlope: 0
  1644. tangentMode: 0
  1645. m_PreInfinity: 2
  1646. m_PostInfinity: 2
  1647. m_RotationOrder: 4
  1648. magnitude:
  1649. serializedVersion: 2
  1650. minMaxState: 0
  1651. scalar: 1
  1652. minScalar: 1
  1653. maxCurve:
  1654. serializedVersion: 2
  1655. m_Curve:
  1656. - serializedVersion: 2
  1657. time: 0
  1658. value: 1
  1659. inSlope: 0
  1660. outSlope: 0
  1661. tangentMode: 0
  1662. - serializedVersion: 2
  1663. time: 1
  1664. value: 1
  1665. inSlope: 0
  1666. outSlope: 0
  1667. tangentMode: 0
  1668. m_PreInfinity: 2
  1669. m_PostInfinity: 2
  1670. m_RotationOrder: 4
  1671. minCurve:
  1672. serializedVersion: 2
  1673. m_Curve:
  1674. - serializedVersion: 2
  1675. time: 0
  1676. value: 1
  1677. inSlope: 0
  1678. outSlope: 0
  1679. tangentMode: 0
  1680. - serializedVersion: 2
  1681. time: 1
  1682. value: 1
  1683. inSlope: 0
  1684. outSlope: 0
  1685. tangentMode: 0
  1686. m_PreInfinity: 2
  1687. m_PostInfinity: 2
  1688. m_RotationOrder: 4
  1689. separateAxis: 0
  1690. inWorldSpace: 0
  1691. dampen: 1
  1692. NoiseModule:
  1693. enabled: 0
  1694. strength:
  1695. serializedVersion: 2
  1696. minMaxState: 0
  1697. scalar: 1
  1698. minScalar: 1
  1699. maxCurve:
  1700. serializedVersion: 2
  1701. m_Curve:
  1702. - serializedVersion: 2
  1703. time: 0
  1704. value: 1
  1705. inSlope: 0
  1706. outSlope: 0
  1707. tangentMode: 0
  1708. - serializedVersion: 2
  1709. time: 1
  1710. value: 1
  1711. inSlope: 0
  1712. outSlope: 0
  1713. tangentMode: 0
  1714. m_PreInfinity: 2
  1715. m_PostInfinity: 2
  1716. m_RotationOrder: 4
  1717. minCurve:
  1718. serializedVersion: 2
  1719. m_Curve:
  1720. - serializedVersion: 2
  1721. time: 0
  1722. value: 1
  1723. inSlope: 0
  1724. outSlope: 0
  1725. tangentMode: 0
  1726. - serializedVersion: 2
  1727. time: 1
  1728. value: 1
  1729. inSlope: 0
  1730. outSlope: 0
  1731. tangentMode: 0
  1732. m_PreInfinity: 2
  1733. m_PostInfinity: 2
  1734. m_RotationOrder: 4
  1735. strengthY:
  1736. serializedVersion: 2
  1737. minMaxState: 0
  1738. scalar: 1
  1739. minScalar: 1
  1740. maxCurve:
  1741. serializedVersion: 2
  1742. m_Curve:
  1743. - serializedVersion: 2
  1744. time: 0
  1745. value: 1
  1746. inSlope: 0
  1747. outSlope: 0
  1748. tangentMode: 0
  1749. - serializedVersion: 2
  1750. time: 1
  1751. value: 1
  1752. inSlope: 0
  1753. outSlope: 0
  1754. tangentMode: 0
  1755. m_PreInfinity: 2
  1756. m_PostInfinity: 2
  1757. m_RotationOrder: 4
  1758. minCurve:
  1759. serializedVersion: 2
  1760. m_Curve:
  1761. - serializedVersion: 2
  1762. time: 0
  1763. value: 1
  1764. inSlope: 0
  1765. outSlope: 0
  1766. tangentMode: 0
  1767. - serializedVersion: 2
  1768. time: 1
  1769. value: 1
  1770. inSlope: 0
  1771. outSlope: 0
  1772. tangentMode: 0
  1773. m_PreInfinity: 2
  1774. m_PostInfinity: 2
  1775. m_RotationOrder: 4
  1776. strengthZ:
  1777. serializedVersion: 2
  1778. minMaxState: 0
  1779. scalar: 1
  1780. minScalar: 1
  1781. maxCurve:
  1782. serializedVersion: 2
  1783. m_Curve:
  1784. - serializedVersion: 2
  1785. time: 0
  1786. value: 1
  1787. inSlope: 0
  1788. outSlope: 0
  1789. tangentMode: 0
  1790. - serializedVersion: 2
  1791. time: 1
  1792. value: 1
  1793. inSlope: 0
  1794. outSlope: 0
  1795. tangentMode: 0
  1796. m_PreInfinity: 2
  1797. m_PostInfinity: 2
  1798. m_RotationOrder: 4
  1799. minCurve:
  1800. serializedVersion: 2
  1801. m_Curve:
  1802. - serializedVersion: 2
  1803. time: 0
  1804. value: 1
  1805. inSlope: 0
  1806. outSlope: 0
  1807. tangentMode: 0
  1808. - serializedVersion: 2
  1809. time: 1
  1810. value: 1
  1811. inSlope: 0
  1812. outSlope: 0
  1813. tangentMode: 0
  1814. m_PreInfinity: 2
  1815. m_PostInfinity: 2
  1816. m_RotationOrder: 4
  1817. separateAxes: 0
  1818. frequency: 0.5
  1819. damping: 1
  1820. octaves: 1
  1821. octaveMultiplier: 0.5
  1822. octaveScale: 2
  1823. quality: 2
  1824. scrollSpeed:
  1825. serializedVersion: 2
  1826. minMaxState: 0
  1827. scalar: 0
  1828. minScalar: 0
  1829. maxCurve:
  1830. serializedVersion: 2
  1831. m_Curve:
  1832. - serializedVersion: 2
  1833. time: 0
  1834. value: 0
  1835. inSlope: 0
  1836. outSlope: 0
  1837. tangentMode: 0
  1838. - serializedVersion: 2
  1839. time: 1
  1840. value: 0
  1841. inSlope: 0
  1842. outSlope: 0
  1843. tangentMode: 0
  1844. m_PreInfinity: 2
  1845. m_PostInfinity: 2
  1846. m_RotationOrder: 4
  1847. minCurve:
  1848. serializedVersion: 2
  1849. m_Curve:
  1850. - serializedVersion: 2
  1851. time: 0
  1852. value: 0
  1853. inSlope: 0
  1854. outSlope: 0
  1855. tangentMode: 0
  1856. - serializedVersion: 2
  1857. time: 1
  1858. value: 0
  1859. inSlope: 0
  1860. outSlope: 0
  1861. tangentMode: 0
  1862. m_PreInfinity: 2
  1863. m_PostInfinity: 2
  1864. m_RotationOrder: 4
  1865. remap:
  1866. serializedVersion: 2
  1867. minMaxState: 1
  1868. scalar: 1
  1869. minScalar: 1
  1870. maxCurve:
  1871. serializedVersion: 2
  1872. m_Curve:
  1873. - serializedVersion: 2
  1874. time: 0
  1875. value: 0
  1876. inSlope: 0
  1877. outSlope: 1
  1878. tangentMode: 0
  1879. - serializedVersion: 2
  1880. time: 1
  1881. value: 1
  1882. inSlope: 1
  1883. outSlope: 0
  1884. tangentMode: 0
  1885. m_PreInfinity: 2
  1886. m_PostInfinity: 2
  1887. m_RotationOrder: 4
  1888. minCurve:
  1889. serializedVersion: 2
  1890. m_Curve:
  1891. - serializedVersion: 2
  1892. time: 0
  1893. value: 1
  1894. inSlope: 0
  1895. outSlope: 0
  1896. tangentMode: 0
  1897. - serializedVersion: 2
  1898. time: 1
  1899. value: 1
  1900. inSlope: 0
  1901. outSlope: 0
  1902. tangentMode: 0
  1903. m_PreInfinity: 2
  1904. m_PostInfinity: 2
  1905. m_RotationOrder: 4
  1906. remapY:
  1907. serializedVersion: 2
  1908. minMaxState: 1
  1909. scalar: 1
  1910. minScalar: 1
  1911. maxCurve:
  1912. serializedVersion: 2
  1913. m_Curve:
  1914. - serializedVersion: 2
  1915. time: 0
  1916. value: 0
  1917. inSlope: 0
  1918. outSlope: 1
  1919. tangentMode: 0
  1920. - serializedVersion: 2
  1921. time: 1
  1922. value: 1
  1923. inSlope: 1
  1924. outSlope: 0
  1925. tangentMode: 0
  1926. m_PreInfinity: 2
  1927. m_PostInfinity: 2
  1928. m_RotationOrder: 4
  1929. minCurve:
  1930. serializedVersion: 2
  1931. m_Curve:
  1932. - serializedVersion: 2
  1933. time: 0
  1934. value: 1
  1935. inSlope: 0
  1936. outSlope: 0
  1937. tangentMode: 0
  1938. - serializedVersion: 2
  1939. time: 1
  1940. value: 1
  1941. inSlope: 0
  1942. outSlope: 0
  1943. tangentMode: 0
  1944. m_PreInfinity: 2
  1945. m_PostInfinity: 2
  1946. m_RotationOrder: 4
  1947. remapZ:
  1948. serializedVersion: 2
  1949. minMaxState: 1
  1950. scalar: 1
  1951. minScalar: 1
  1952. maxCurve:
  1953. serializedVersion: 2
  1954. m_Curve:
  1955. - serializedVersion: 2
  1956. time: 0
  1957. value: 0
  1958. inSlope: 0
  1959. outSlope: 1
  1960. tangentMode: 0
  1961. - serializedVersion: 2
  1962. time: 1
  1963. value: 1
  1964. inSlope: 1
  1965. outSlope: 0
  1966. tangentMode: 0
  1967. m_PreInfinity: 2
  1968. m_PostInfinity: 2
  1969. m_RotationOrder: 4
  1970. minCurve:
  1971. serializedVersion: 2
  1972. m_Curve:
  1973. - serializedVersion: 2
  1974. time: 0
  1975. value: 1
  1976. inSlope: 0
  1977. outSlope: 0
  1978. tangentMode: 0
  1979. - serializedVersion: 2
  1980. time: 1
  1981. value: 1
  1982. inSlope: 0
  1983. outSlope: 0
  1984. tangentMode: 0
  1985. m_PreInfinity: 2
  1986. m_PostInfinity: 2
  1987. m_RotationOrder: 4
  1988. remapEnabled: 0
  1989. positionAmount:
  1990. serializedVersion: 2
  1991. minMaxState: 0
  1992. scalar: 1
  1993. minScalar: 1
  1994. maxCurve:
  1995. serializedVersion: 2
  1996. m_Curve:
  1997. - serializedVersion: 2
  1998. time: 0
  1999. value: 1
  2000. inSlope: 0
  2001. outSlope: 0
  2002. tangentMode: 0
  2003. - serializedVersion: 2
  2004. time: 1
  2005. value: 1
  2006. inSlope: 0
  2007. outSlope: 0
  2008. tangentMode: 0
  2009. m_PreInfinity: 2
  2010. m_PostInfinity: 2
  2011. m_RotationOrder: 4
  2012. minCurve:
  2013. serializedVersion: 2
  2014. m_Curve:
  2015. - serializedVersion: 2
  2016. time: 0
  2017. value: 1
  2018. inSlope: 0
  2019. outSlope: 0
  2020. tangentMode: 0
  2021. - serializedVersion: 2
  2022. time: 1
  2023. value: 1
  2024. inSlope: 0
  2025. outSlope: 0
  2026. tangentMode: 0
  2027. m_PreInfinity: 2
  2028. m_PostInfinity: 2
  2029. m_RotationOrder: 4
  2030. rotationAmount:
  2031. serializedVersion: 2
  2032. minMaxState: 0
  2033. scalar: 0
  2034. minScalar: 0
  2035. maxCurve:
  2036. serializedVersion: 2
  2037. m_Curve:
  2038. - serializedVersion: 2
  2039. time: 0
  2040. value: 0
  2041. inSlope: 0
  2042. outSlope: 0
  2043. tangentMode: 0
  2044. - serializedVersion: 2
  2045. time: 1
  2046. value: 0
  2047. inSlope: 0
  2048. outSlope: 0
  2049. tangentMode: 0
  2050. m_PreInfinity: 2
  2051. m_PostInfinity: 2
  2052. m_RotationOrder: 4
  2053. minCurve:
  2054. serializedVersion: 2
  2055. m_Curve:
  2056. - serializedVersion: 2
  2057. time: 0
  2058. value: 0
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 0
  2062. - serializedVersion: 2
  2063. time: 1
  2064. value: 0
  2065. inSlope: 0
  2066. outSlope: 0
  2067. tangentMode: 0
  2068. m_PreInfinity: 2
  2069. m_PostInfinity: 2
  2070. m_RotationOrder: 4
  2071. sizeAmount:
  2072. serializedVersion: 2
  2073. minMaxState: 0
  2074. scalar: 0
  2075. minScalar: 0
  2076. maxCurve:
  2077. serializedVersion: 2
  2078. m_Curve:
  2079. - serializedVersion: 2
  2080. time: 0
  2081. value: 0
  2082. inSlope: 0
  2083. outSlope: 0
  2084. tangentMode: 0
  2085. - serializedVersion: 2
  2086. time: 1
  2087. value: 0
  2088. inSlope: 0
  2089. outSlope: 0
  2090. tangentMode: 0
  2091. m_PreInfinity: 2
  2092. m_PostInfinity: 2
  2093. m_RotationOrder: 4
  2094. minCurve:
  2095. serializedVersion: 2
  2096. m_Curve:
  2097. - serializedVersion: 2
  2098. time: 0
  2099. value: 0
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 0
  2103. - serializedVersion: 2
  2104. time: 1
  2105. value: 0
  2106. inSlope: 0
  2107. outSlope: 0
  2108. tangentMode: 0
  2109. m_PreInfinity: 2
  2110. m_PostInfinity: 2
  2111. m_RotationOrder: 4
  2112. SizeBySpeedModule:
  2113. enabled: 0
  2114. curve:
  2115. serializedVersion: 2
  2116. minMaxState: 1
  2117. scalar: 1
  2118. minScalar: 1
  2119. maxCurve:
  2120. serializedVersion: 2
  2121. m_Curve:
  2122. - serializedVersion: 2
  2123. time: 0
  2124. value: 0
  2125. inSlope: 0
  2126. outSlope: 1
  2127. tangentMode: 0
  2128. - serializedVersion: 2
  2129. time: 1
  2130. value: 1
  2131. inSlope: 1
  2132. outSlope: 0
  2133. tangentMode: 0
  2134. m_PreInfinity: 2
  2135. m_PostInfinity: 2
  2136. m_RotationOrder: 4
  2137. minCurve:
  2138. serializedVersion: 2
  2139. m_Curve:
  2140. - serializedVersion: 2
  2141. time: 0
  2142. value: 1
  2143. inSlope: 0
  2144. outSlope: 0
  2145. tangentMode: 0
  2146. - serializedVersion: 2
  2147. time: 1
  2148. value: 1
  2149. inSlope: 0
  2150. outSlope: 0
  2151. tangentMode: 0
  2152. m_PreInfinity: 2
  2153. m_PostInfinity: 2
  2154. m_RotationOrder: 4
  2155. y:
  2156. serializedVersion: 2
  2157. minMaxState: 1
  2158. scalar: 1
  2159. minScalar: 1
  2160. maxCurve:
  2161. serializedVersion: 2
  2162. m_Curve:
  2163. - serializedVersion: 2
  2164. time: 0
  2165. value: 0
  2166. inSlope: 0
  2167. outSlope: 1
  2168. tangentMode: 0
  2169. - serializedVersion: 2
  2170. time: 1
  2171. value: 1
  2172. inSlope: 1
  2173. outSlope: 0
  2174. tangentMode: 0
  2175. m_PreInfinity: 2
  2176. m_PostInfinity: 2
  2177. m_RotationOrder: 4
  2178. minCurve:
  2179. serializedVersion: 2
  2180. m_Curve:
  2181. - serializedVersion: 2
  2182. time: 0
  2183. value: 1
  2184. inSlope: 0
  2185. outSlope: 0
  2186. tangentMode: 0
  2187. - serializedVersion: 2
  2188. time: 1
  2189. value: 1
  2190. inSlope: 0
  2191. outSlope: 0
  2192. tangentMode: 0
  2193. m_PreInfinity: 2
  2194. m_PostInfinity: 2
  2195. m_RotationOrder: 4
  2196. z:
  2197. serializedVersion: 2
  2198. minMaxState: 1
  2199. scalar: 1
  2200. minScalar: 1
  2201. maxCurve:
  2202. serializedVersion: 2
  2203. m_Curve:
  2204. - serializedVersion: 2
  2205. time: 0
  2206. value: 0
  2207. inSlope: 0
  2208. outSlope: 1
  2209. tangentMode: 0
  2210. - serializedVersion: 2
  2211. time: 1
  2212. value: 1
  2213. inSlope: 1
  2214. outSlope: 0
  2215. tangentMode: 0
  2216. m_PreInfinity: 2
  2217. m_PostInfinity: 2
  2218. m_RotationOrder: 4
  2219. minCurve:
  2220. serializedVersion: 2
  2221. m_Curve:
  2222. - serializedVersion: 2
  2223. time: 0
  2224. value: 1
  2225. inSlope: 0
  2226. outSlope: 0
  2227. tangentMode: 0
  2228. - serializedVersion: 2
  2229. time: 1
  2230. value: 1
  2231. inSlope: 0
  2232. outSlope: 0
  2233. tangentMode: 0
  2234. m_PreInfinity: 2
  2235. m_PostInfinity: 2
  2236. m_RotationOrder: 4
  2237. range: {x: 0, y: 1}
  2238. separateAxes: 0
  2239. RotationBySpeedModule:
  2240. enabled: 0
  2241. x:
  2242. serializedVersion: 2
  2243. minMaxState: 0
  2244. scalar: 0
  2245. minScalar: 0
  2246. maxCurve:
  2247. serializedVersion: 2
  2248. m_Curve:
  2249. - serializedVersion: 2
  2250. time: 0
  2251. value: 0
  2252. inSlope: 0
  2253. outSlope: 0
  2254. tangentMode: 0
  2255. - serializedVersion: 2
  2256. time: 1
  2257. value: 0
  2258. inSlope: 0
  2259. outSlope: 0
  2260. tangentMode: 0
  2261. m_PreInfinity: 2
  2262. m_PostInfinity: 2
  2263. m_RotationOrder: 4
  2264. minCurve:
  2265. serializedVersion: 2
  2266. m_Curve:
  2267. - serializedVersion: 2
  2268. time: 0
  2269. value: 0
  2270. inSlope: 0
  2271. outSlope: 0
  2272. tangentMode: 0
  2273. - serializedVersion: 2
  2274. time: 1
  2275. value: 0
  2276. inSlope: 0
  2277. outSlope: 0
  2278. tangentMode: 0
  2279. m_PreInfinity: 2
  2280. m_PostInfinity: 2
  2281. m_RotationOrder: 4
  2282. y:
  2283. serializedVersion: 2
  2284. minMaxState: 0
  2285. scalar: 0
  2286. minScalar: 0
  2287. maxCurve:
  2288. serializedVersion: 2
  2289. m_Curve:
  2290. - serializedVersion: 2
  2291. time: 0
  2292. value: 0
  2293. inSlope: 0
  2294. outSlope: 0
  2295. tangentMode: 0
  2296. - serializedVersion: 2
  2297. time: 1
  2298. value: 0
  2299. inSlope: 0
  2300. outSlope: 0
  2301. tangentMode: 0
  2302. m_PreInfinity: 2
  2303. m_PostInfinity: 2
  2304. m_RotationOrder: 4
  2305. minCurve:
  2306. serializedVersion: 2
  2307. m_Curve:
  2308. - serializedVersion: 2
  2309. time: 0
  2310. value: 0
  2311. inSlope: 0
  2312. outSlope: 0
  2313. tangentMode: 0
  2314. - serializedVersion: 2
  2315. time: 1
  2316. value: 0
  2317. inSlope: 0
  2318. outSlope: 0
  2319. tangentMode: 0
  2320. m_PreInfinity: 2
  2321. m_PostInfinity: 2
  2322. m_RotationOrder: 4
  2323. curve:
  2324. serializedVersion: 2
  2325. minMaxState: 0
  2326. scalar: 0.7853982
  2327. minScalar: 0.7853982
  2328. maxCurve:
  2329. serializedVersion: 2
  2330. m_Curve:
  2331. - serializedVersion: 2
  2332. time: 0
  2333. value: 1
  2334. inSlope: 0
  2335. outSlope: 0
  2336. tangentMode: 0
  2337. - serializedVersion: 2
  2338. time: 1
  2339. value: 1
  2340. inSlope: 0
  2341. outSlope: 0
  2342. tangentMode: 0
  2343. m_PreInfinity: 2
  2344. m_PostInfinity: 2
  2345. m_RotationOrder: 4
  2346. minCurve:
  2347. serializedVersion: 2
  2348. m_Curve:
  2349. - serializedVersion: 2
  2350. time: 0
  2351. value: 1
  2352. inSlope: 0
  2353. outSlope: 0
  2354. tangentMode: 0
  2355. - serializedVersion: 2
  2356. time: 1
  2357. value: 1
  2358. inSlope: 0
  2359. outSlope: 0
  2360. tangentMode: 0
  2361. m_PreInfinity: 2
  2362. m_PostInfinity: 2
  2363. m_RotationOrder: 4
  2364. separateAxes: 0
  2365. range: {x: 0, y: 1}
  2366. ColorBySpeedModule:
  2367. enabled: 0
  2368. gradient:
  2369. serializedVersion: 2
  2370. minMaxState: 1
  2371. minColor: {r: 1, g: 1, b: 1, a: 1}
  2372. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2373. maxGradient:
  2374. serializedVersion: 2
  2375. key0: {r: 1, g: 1, b: 1, a: 1}
  2376. key1: {r: 1, g: 1, b: 1, a: 1}
  2377. key2: {r: 0, g: 0, b: 0, a: 0}
  2378. key3: {r: 0, g: 0, b: 0, a: 0}
  2379. key4: {r: 0, g: 0, b: 0, a: 0}
  2380. key5: {r: 0, g: 0, b: 0, a: 0}
  2381. key6: {r: 0, g: 0, b: 0, a: 0}
  2382. key7: {r: 0, g: 0, b: 0, a: 0}
  2383. ctime0: 0
  2384. ctime1: 65535
  2385. ctime2: 0
  2386. ctime3: 0
  2387. ctime4: 0
  2388. ctime5: 0
  2389. ctime6: 0
  2390. ctime7: 0
  2391. atime0: 0
  2392. atime1: 65535
  2393. atime2: 0
  2394. atime3: 0
  2395. atime4: 0
  2396. atime5: 0
  2397. atime6: 0
  2398. atime7: 0
  2399. m_Mode: 0
  2400. m_NumColorKeys: 2
  2401. m_NumAlphaKeys: 2
  2402. minGradient:
  2403. serializedVersion: 2
  2404. key0: {r: 1, g: 1, b: 1, a: 1}
  2405. key1: {r: 1, g: 1, b: 1, a: 1}
  2406. key2: {r: 0, g: 0, b: 0, a: 0}
  2407. key3: {r: 0, g: 0, b: 0, a: 0}
  2408. key4: {r: 0, g: 0, b: 0, a: 0}
  2409. key5: {r: 0, g: 0, b: 0, a: 0}
  2410. key6: {r: 0, g: 0, b: 0, a: 0}
  2411. key7: {r: 0, g: 0, b: 0, a: 0}
  2412. ctime0: 0
  2413. ctime1: 65535
  2414. ctime2: 0
  2415. ctime3: 0
  2416. ctime4: 0
  2417. ctime5: 0
  2418. ctime6: 0
  2419. ctime7: 0
  2420. atime0: 0
  2421. atime1: 65535
  2422. atime2: 0
  2423. atime3: 0
  2424. atime4: 0
  2425. atime5: 0
  2426. atime6: 0
  2427. atime7: 0
  2428. m_Mode: 0
  2429. m_NumColorKeys: 2
  2430. m_NumAlphaKeys: 2
  2431. range: {x: 0, y: 1}
  2432. CollisionModule:
  2433. enabled: 0
  2434. serializedVersion: 3
  2435. type: 0
  2436. collisionMode: 0
  2437. colliderForce: 0
  2438. multiplyColliderForceByParticleSize: 0
  2439. multiplyColliderForceByParticleSpeed: 0
  2440. multiplyColliderForceByCollisionAngle: 1
  2441. plane0: {fileID: 0}
  2442. plane1: {fileID: 0}
  2443. plane2: {fileID: 0}
  2444. plane3: {fileID: 0}
  2445. plane4: {fileID: 0}
  2446. plane5: {fileID: 0}
  2447. m_Dampen:
  2448. serializedVersion: 2
  2449. minMaxState: 0
  2450. scalar: 0
  2451. minScalar: 0
  2452. maxCurve:
  2453. serializedVersion: 2
  2454. m_Curve:
  2455. - serializedVersion: 2
  2456. time: 0
  2457. value: 0
  2458. inSlope: 0
  2459. outSlope: 0
  2460. tangentMode: 0
  2461. - serializedVersion: 2
  2462. time: 1
  2463. value: 0
  2464. inSlope: 0
  2465. outSlope: 0
  2466. tangentMode: 0
  2467. m_PreInfinity: 2
  2468. m_PostInfinity: 2
  2469. m_RotationOrder: 4
  2470. minCurve:
  2471. serializedVersion: 2
  2472. m_Curve:
  2473. - serializedVersion: 2
  2474. time: 0
  2475. value: 0
  2476. inSlope: 0
  2477. outSlope: 0
  2478. tangentMode: 0
  2479. - serializedVersion: 2
  2480. time: 1
  2481. value: 0
  2482. inSlope: 0
  2483. outSlope: 0
  2484. tangentMode: 0
  2485. m_PreInfinity: 2
  2486. m_PostInfinity: 2
  2487. m_RotationOrder: 4
  2488. m_Bounce:
  2489. serializedVersion: 2
  2490. minMaxState: 0
  2491. scalar: 1
  2492. minScalar: 1
  2493. maxCurve:
  2494. serializedVersion: 2
  2495. m_Curve:
  2496. - serializedVersion: 2
  2497. time: 0
  2498. value: 1
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 0
  2502. - serializedVersion: 2
  2503. time: 1
  2504. value: 1
  2505. inSlope: 0
  2506. outSlope: 0
  2507. tangentMode: 0
  2508. m_PreInfinity: 2
  2509. m_PostInfinity: 2
  2510. m_RotationOrder: 4
  2511. minCurve:
  2512. serializedVersion: 2
  2513. m_Curve:
  2514. - serializedVersion: 2
  2515. time: 0
  2516. value: 1
  2517. inSlope: 0
  2518. outSlope: 0
  2519. tangentMode: 0
  2520. - serializedVersion: 2
  2521. time: 1
  2522. value: 1
  2523. inSlope: 0
  2524. outSlope: 0
  2525. tangentMode: 0
  2526. m_PreInfinity: 2
  2527. m_PostInfinity: 2
  2528. m_RotationOrder: 4
  2529. m_EnergyLossOnCollision:
  2530. serializedVersion: 2
  2531. minMaxState: 0
  2532. scalar: 0
  2533. minScalar: 0
  2534. maxCurve:
  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. minCurve:
  2553. serializedVersion: 2
  2554. m_Curve:
  2555. - serializedVersion: 2
  2556. time: 0
  2557. value: 0
  2558. inSlope: 0
  2559. outSlope: 0
  2560. tangentMode: 0
  2561. - serializedVersion: 2
  2562. time: 1
  2563. value: 0
  2564. inSlope: 0
  2565. outSlope: 0
  2566. tangentMode: 0
  2567. m_PreInfinity: 2
  2568. m_PostInfinity: 2
  2569. m_RotationOrder: 4
  2570. minKillSpeed: 0
  2571. maxKillSpeed: 10000
  2572. radiusScale: 1
  2573. collidesWith:
  2574. serializedVersion: 2
  2575. m_Bits: 4294967295
  2576. maxCollisionShapes: 256
  2577. quality: 0
  2578. voxelSize: 0.5
  2579. collisionMessages: 0
  2580. collidesWithDynamic: 1
  2581. interiorCollisions: 0
  2582. TriggerModule:
  2583. enabled: 0
  2584. collisionShape0: {fileID: 0}
  2585. collisionShape1: {fileID: 0}
  2586. collisionShape2: {fileID: 0}
  2587. collisionShape3: {fileID: 0}
  2588. collisionShape4: {fileID: 0}
  2589. collisionShape5: {fileID: 0}
  2590. inside: 1
  2591. outside: 0
  2592. enter: 0
  2593. exit: 0
  2594. radiusScale: 1
  2595. SubModule:
  2596. serializedVersion: 2
  2597. enabled: 0
  2598. subEmitters:
  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: 1
  2639. inSlope: 0
  2640. outSlope: 0
  2641. tangentMode: 0
  2642. - serializedVersion: 2
  2643. time: 1
  2644. value: 1
  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: 1
  2680. inSlope: 0
  2681. outSlope: 0
  2682. tangentMode: 0
  2683. - serializedVersion: 2
  2684. time: 1
  2685. value: 1
  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: 1
  2725. inSlope: 0
  2726. outSlope: 0
  2727. tangentMode: 0
  2728. - serializedVersion: 2
  2729. time: 1
  2730. value: 1
  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: 1
  2837. inSlope: 0
  2838. outSlope: 0
  2839. tangentMode: 0
  2840. - serializedVersion: 2
  2841. time: 1
  2842. value: 1
  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. vector0_0:
  2980. serializedVersion: 2
  2981. minMaxState: 0
  2982. scalar: 0
  2983. minScalar: 0
  2984. maxCurve:
  2985. serializedVersion: 2
  2986. m_Curve:
  2987. - serializedVersion: 2
  2988. time: 0
  2989. value: 0
  2990. inSlope: 0
  2991. outSlope: 0
  2992. tangentMode: 0
  2993. - serializedVersion: 2
  2994. time: 1
  2995. value: 0
  2996. inSlope: 0
  2997. outSlope: 0
  2998. tangentMode: 0
  2999. m_PreInfinity: 2
  3000. m_PostInfinity: 2
  3001. m_RotationOrder: 4
  3002. minCurve:
  3003. serializedVersion: 2
  3004. m_Curve:
  3005. - serializedVersion: 2
  3006. time: 0
  3007. value: 0
  3008. inSlope: 0
  3009. outSlope: 0
  3010. tangentMode: 0
  3011. - serializedVersion: 2
  3012. time: 1
  3013. value: 0
  3014. inSlope: 0
  3015. outSlope: 0
  3016. tangentMode: 0
  3017. m_PreInfinity: 2
  3018. m_PostInfinity: 2
  3019. m_RotationOrder: 4
  3020. vector0_1:
  3021. serializedVersion: 2
  3022. minMaxState: 0
  3023. scalar: 0
  3024. minScalar: 0
  3025. maxCurve:
  3026. serializedVersion: 2
  3027. m_Curve:
  3028. - serializedVersion: 2
  3029. time: 0
  3030. value: 0
  3031. inSlope: 0
  3032. outSlope: 0
  3033. tangentMode: 0
  3034. - serializedVersion: 2
  3035. time: 1
  3036. value: 0
  3037. inSlope: 0
  3038. outSlope: 0
  3039. tangentMode: 0
  3040. m_PreInfinity: 2
  3041. m_PostInfinity: 2
  3042. m_RotationOrder: 4
  3043. minCurve:
  3044. serializedVersion: 2
  3045. m_Curve:
  3046. - serializedVersion: 2
  3047. time: 0
  3048. value: 0
  3049. inSlope: 0
  3050. outSlope: 0
  3051. tangentMode: 0
  3052. - serializedVersion: 2
  3053. time: 1
  3054. value: 0
  3055. inSlope: 0
  3056. outSlope: 0
  3057. tangentMode: 0
  3058. m_PreInfinity: 2
  3059. m_PostInfinity: 2
  3060. m_RotationOrder: 4
  3061. vector0_2:
  3062. serializedVersion: 2
  3063. minMaxState: 0
  3064. scalar: 0
  3065. minScalar: 0
  3066. maxCurve:
  3067. serializedVersion: 2
  3068. m_Curve:
  3069. - serializedVersion: 2
  3070. time: 0
  3071. value: 0
  3072. inSlope: 0
  3073. outSlope: 0
  3074. tangentMode: 0
  3075. - serializedVersion: 2
  3076. time: 1
  3077. value: 0
  3078. inSlope: 0
  3079. outSlope: 0
  3080. tangentMode: 0
  3081. m_PreInfinity: 2
  3082. m_PostInfinity: 2
  3083. m_RotationOrder: 4
  3084. minCurve:
  3085. serializedVersion: 2
  3086. m_Curve:
  3087. - serializedVersion: 2
  3088. time: 0
  3089. value: 0
  3090. inSlope: 0
  3091. outSlope: 0
  3092. tangentMode: 0
  3093. - serializedVersion: 2
  3094. time: 1
  3095. value: 0
  3096. inSlope: 0
  3097. outSlope: 0
  3098. tangentMode: 0
  3099. m_PreInfinity: 2
  3100. m_PostInfinity: 2
  3101. m_RotationOrder: 4
  3102. vector0_3:
  3103. serializedVersion: 2
  3104. minMaxState: 0
  3105. scalar: 0
  3106. minScalar: 0
  3107. maxCurve:
  3108. serializedVersion: 2
  3109. m_Curve:
  3110. - serializedVersion: 2
  3111. time: 0
  3112. value: 0
  3113. inSlope: 0
  3114. outSlope: 0
  3115. tangentMode: 0
  3116. - serializedVersion: 2
  3117. time: 1
  3118. value: 0
  3119. inSlope: 0
  3120. outSlope: 0
  3121. tangentMode: 0
  3122. m_PreInfinity: 2
  3123. m_PostInfinity: 2
  3124. m_RotationOrder: 4
  3125. minCurve:
  3126. serializedVersion: 2
  3127. m_Curve:
  3128. - serializedVersion: 2
  3129. time: 0
  3130. value: 0
  3131. inSlope: 0
  3132. outSlope: 0
  3133. tangentMode: 0
  3134. - serializedVersion: 2
  3135. time: 1
  3136. value: 0
  3137. inSlope: 0
  3138. outSlope: 0
  3139. tangentMode: 0
  3140. m_PreInfinity: 2
  3141. m_PostInfinity: 2
  3142. m_RotationOrder: 4
  3143. mode1: 0
  3144. vectorComponentCount1: 4
  3145. color1:
  3146. serializedVersion: 2
  3147. minMaxState: 0
  3148. minColor: {r: 1, g: 1, b: 1, a: 1}
  3149. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3150. maxGradient:
  3151. serializedVersion: 2
  3152. key0: {r: 1, g: 1, b: 1, a: 1}
  3153. key1: {r: 1, g: 1, b: 1, a: 1}
  3154. key2: {r: 0, g: 0, b: 0, a: 0}
  3155. key3: {r: 0, g: 0, b: 0, a: 0}
  3156. key4: {r: 0, g: 0, b: 0, a: 0}
  3157. key5: {r: 0, g: 0, b: 0, a: 0}
  3158. key6: {r: 0, g: 0, b: 0, a: 0}
  3159. key7: {r: 0, g: 0, b: 0, a: 0}
  3160. ctime0: 0
  3161. ctime1: 65535
  3162. ctime2: 0
  3163. ctime3: 0
  3164. ctime4: 0
  3165. ctime5: 0
  3166. ctime6: 0
  3167. ctime7: 0
  3168. atime0: 0
  3169. atime1: 65535
  3170. atime2: 0
  3171. atime3: 0
  3172. atime4: 0
  3173. atime5: 0
  3174. atime6: 0
  3175. atime7: 0
  3176. m_Mode: 0
  3177. m_NumColorKeys: 2
  3178. m_NumAlphaKeys: 2
  3179. minGradient:
  3180. serializedVersion: 2
  3181. key0: {r: 1, g: 1, b: 1, a: 1}
  3182. key1: {r: 1, g: 1, b: 1, a: 1}
  3183. key2: {r: 0, g: 0, b: 0, a: 0}
  3184. key3: {r: 0, g: 0, b: 0, a: 0}
  3185. key4: {r: 0, g: 0, b: 0, a: 0}
  3186. key5: {r: 0, g: 0, b: 0, a: 0}
  3187. key6: {r: 0, g: 0, b: 0, a: 0}
  3188. key7: {r: 0, g: 0, b: 0, a: 0}
  3189. ctime0: 0
  3190. ctime1: 65535
  3191. ctime2: 0
  3192. ctime3: 0
  3193. ctime4: 0
  3194. ctime5: 0
  3195. ctime6: 0
  3196. ctime7: 0
  3197. atime0: 0
  3198. atime1: 65535
  3199. atime2: 0
  3200. atime3: 0
  3201. atime4: 0
  3202. atime5: 0
  3203. atime6: 0
  3204. atime7: 0
  3205. m_Mode: 0
  3206. m_NumColorKeys: 2
  3207. m_NumAlphaKeys: 2
  3208. vector1_0:
  3209. serializedVersion: 2
  3210. minMaxState: 0
  3211. scalar: 0
  3212. minScalar: 0
  3213. maxCurve:
  3214. serializedVersion: 2
  3215. m_Curve:
  3216. - serializedVersion: 2
  3217. time: 0
  3218. value: 0
  3219. inSlope: 0
  3220. outSlope: 0
  3221. tangentMode: 0
  3222. - serializedVersion: 2
  3223. time: 1
  3224. value: 0
  3225. inSlope: 0
  3226. outSlope: 0
  3227. tangentMode: 0
  3228. m_PreInfinity: 2
  3229. m_PostInfinity: 2
  3230. m_RotationOrder: 4
  3231. minCurve:
  3232. serializedVersion: 2
  3233. m_Curve:
  3234. - serializedVersion: 2
  3235. time: 0
  3236. value: 0
  3237. inSlope: 0
  3238. outSlope: 0
  3239. tangentMode: 0
  3240. - serializedVersion: 2
  3241. time: 1
  3242. value: 0
  3243. inSlope: 0
  3244. outSlope: 0
  3245. tangentMode: 0
  3246. m_PreInfinity: 2
  3247. m_PostInfinity: 2
  3248. m_RotationOrder: 4
  3249. vector1_1:
  3250. serializedVersion: 2
  3251. minMaxState: 0
  3252. scalar: 0
  3253. minScalar: 0
  3254. maxCurve:
  3255. serializedVersion: 2
  3256. m_Curve:
  3257. - serializedVersion: 2
  3258. time: 0
  3259. value: 0
  3260. inSlope: 0
  3261. outSlope: 0
  3262. tangentMode: 0
  3263. - serializedVersion: 2
  3264. time: 1
  3265. value: 0
  3266. inSlope: 0
  3267. outSlope: 0
  3268. tangentMode: 0
  3269. m_PreInfinity: 2
  3270. m_PostInfinity: 2
  3271. m_RotationOrder: 4
  3272. minCurve:
  3273. serializedVersion: 2
  3274. m_Curve:
  3275. - serializedVersion: 2
  3276. time: 0
  3277. value: 0
  3278. inSlope: 0
  3279. outSlope: 0
  3280. tangentMode: 0
  3281. - serializedVersion: 2
  3282. time: 1
  3283. value: 0
  3284. inSlope: 0
  3285. outSlope: 0
  3286. tangentMode: 0
  3287. m_PreInfinity: 2
  3288. m_PostInfinity: 2
  3289. m_RotationOrder: 4
  3290. vector1_2:
  3291. serializedVersion: 2
  3292. minMaxState: 0
  3293. scalar: 0
  3294. minScalar: 0
  3295. maxCurve:
  3296. serializedVersion: 2
  3297. m_Curve:
  3298. - serializedVersion: 2
  3299. time: 0
  3300. value: 0
  3301. inSlope: 0
  3302. outSlope: 0
  3303. tangentMode: 0
  3304. - serializedVersion: 2
  3305. time: 1
  3306. value: 0
  3307. inSlope: 0
  3308. outSlope: 0
  3309. tangentMode: 0
  3310. m_PreInfinity: 2
  3311. m_PostInfinity: 2
  3312. m_RotationOrder: 4
  3313. minCurve:
  3314. serializedVersion: 2
  3315. m_Curve:
  3316. - serializedVersion: 2
  3317. time: 0
  3318. value: 0
  3319. inSlope: 0
  3320. outSlope: 0
  3321. tangentMode: 0
  3322. - serializedVersion: 2
  3323. time: 1
  3324. value: 0
  3325. inSlope: 0
  3326. outSlope: 0
  3327. tangentMode: 0
  3328. m_PreInfinity: 2
  3329. m_PostInfinity: 2
  3330. m_RotationOrder: 4
  3331. vector1_3:
  3332. serializedVersion: 2
  3333. minMaxState: 0
  3334. scalar: 0
  3335. minScalar: 0
  3336. maxCurve:
  3337. serializedVersion: 2
  3338. m_Curve:
  3339. - serializedVersion: 2
  3340. time: 0
  3341. value: 0
  3342. inSlope: 0
  3343. outSlope: 0
  3344. tangentMode: 0
  3345. - serializedVersion: 2
  3346. time: 1
  3347. value: 0
  3348. inSlope: 0
  3349. outSlope: 0
  3350. tangentMode: 0
  3351. m_PreInfinity: 2
  3352. m_PostInfinity: 2
  3353. m_RotationOrder: 4
  3354. minCurve:
  3355. serializedVersion: 2
  3356. m_Curve:
  3357. - serializedVersion: 2
  3358. time: 0
  3359. value: 0
  3360. inSlope: 0
  3361. outSlope: 0
  3362. tangentMode: 0
  3363. - serializedVersion: 2
  3364. time: 1
  3365. value: 0
  3366. inSlope: 0
  3367. outSlope: 0
  3368. tangentMode: 0
  3369. m_PreInfinity: 2
  3370. m_PostInfinity: 2
  3371. m_RotationOrder: 4
  3372. --- !u!199 &199463633948712120
  3373. ParticleSystemRenderer:
  3374. serializedVersion: 4
  3375. m_ObjectHideFlags: 1
  3376. m_PrefabParentObject: {fileID: 0}
  3377. m_PrefabInternal: {fileID: 100100000}
  3378. m_GameObject: {fileID: 1130720615415440}
  3379. m_Enabled: 1
  3380. m_CastShadows: 1
  3381. m_ReceiveShadows: 1
  3382. m_MotionVectors: 1
  3383. m_LightProbeUsage: 0
  3384. m_ReflectionProbeUsage: 0
  3385. m_Materials:
  3386. - {fileID: 2100000, guid: 2a12d3fc0532ba64e972160db18dfd99, type: 2}
  3387. - {fileID: 0}
  3388. m_StaticBatchInfo:
  3389. firstSubMesh: 0
  3390. subMeshCount: 0
  3391. m_StaticBatchRoot: {fileID: 0}
  3392. m_ProbeAnchor: {fileID: 0}
  3393. m_LightProbeVolumeOverride: {fileID: 0}
  3394. m_ScaleInLightmap: 1
  3395. m_PreserveUVs: 0
  3396. m_IgnoreNormalsForChartDetection: 0
  3397. m_ImportantGI: 0
  3398. m_SelectedEditorRenderState: 0
  3399. m_MinimumChartSize: 4
  3400. m_AutoUVMaxDistance: 0.5
  3401. m_AutoUVMaxAngle: 89
  3402. m_LightmapParameters: {fileID: 0}
  3403. m_SortingLayerID: 0
  3404. m_SortingLayer: 0
  3405. m_SortingOrder: 0
  3406. m_RenderMode: 4
  3407. m_SortMode: 0
  3408. m_MinParticleSize: 0
  3409. m_MaxParticleSize: 0.5
  3410. m_CameraVelocityScale: 0
  3411. m_VelocityScale: 0
  3412. m_LengthScale: 2
  3413. m_SortingFudge: 0
  3414. m_NormalDirection: 1
  3415. m_RenderAlignment: 1
  3416. m_Pivot: {x: 0, y: 0, z: 0}
  3417. m_UseCustomVertexStreams: 0
  3418. m_VertexStreams: 00010304
  3419. m_Mesh: {fileID: 4300000, guid: 2d8ca7f59b0badd4db5d3c5d204e0964, type: 3}
  3420. m_Mesh1: {fileID: 4300000, guid: 2d3ec382112b53346a96f0a868be771c, type: 3}
  3421. m_Mesh2: {fileID: 4300000, guid: 6d427dfe3eb62914cb85231f8b9cc6c9, type: 3}
  3422. m_Mesh3: {fileID: 4300000, guid: adc494179fa1c7a4dbda87fc0d628b8d, type: 3}
  3423. m_MaskInteraction: 0