FireSmall.prefab 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1 &105996
  4. GameObject:
  5. m_ObjectHideFlags: 0
  6. m_PrefabParentObject: {fileID: 0}
  7. m_PrefabInternal: {fileID: 100100000}
  8. serializedVersion: 4
  9. m_Component:
  10. - 4: {fileID: 440108}
  11. - 198: {fileID: 19823612}
  12. - 199: {fileID: 19915112}
  13. m_Layer: 0
  14. m_Name: FireSmall
  15. m_TagString: Untagged
  16. m_Icon: {fileID: 0}
  17. m_NavMeshLayer: 0
  18. m_StaticEditorFlags: 0
  19. m_IsActive: 1
  20. --- !u!1 &156090
  21. GameObject:
  22. m_ObjectHideFlags: 0
  23. m_PrefabParentObject: {fileID: 0}
  24. m_PrefabInternal: {fileID: 100100000}
  25. serializedVersion: 4
  26. m_Component:
  27. - 4: {fileID: 455324}
  28. - 198: {fileID: 19861084}
  29. - 199: {fileID: 19977994}
  30. m_Layer: 0
  31. m_Name: Flame
  32. m_TagString: Untagged
  33. m_Icon: {fileID: 0}
  34. m_NavMeshLayer: 0
  35. m_StaticEditorFlags: 0
  36. m_IsActive: 1
  37. --- !u!1 &173482
  38. GameObject:
  39. m_ObjectHideFlags: 0
  40. m_PrefabParentObject: {fileID: 0}
  41. m_PrefabInternal: {fileID: 100100000}
  42. serializedVersion: 4
  43. m_Component:
  44. - 4: {fileID: 455428}
  45. - 82: {fileID: 8235270}
  46. - 114: {fileID: 11408998}
  47. m_Layer: 0
  48. m_Name: Sound_TorchFire
  49. m_TagString: Untagged
  50. m_Icon: {fileID: 0}
  51. m_NavMeshLayer: 0
  52. m_StaticEditorFlags: 0
  53. m_IsActive: 1
  54. --- !u!4 &440108
  55. Transform:
  56. m_ObjectHideFlags: 1
  57. m_PrefabParentObject: {fileID: 0}
  58. m_PrefabInternal: {fileID: 100100000}
  59. m_GameObject: {fileID: 105996}
  60. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  61. m_LocalPosition: {x: 0, y: 0, z: 0}
  62. m_LocalScale: {x: 1, y: 1, z: 1}
  63. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  64. m_Children:
  65. - {fileID: 455324}
  66. - {fileID: 455428}
  67. m_Father: {fileID: 0}
  68. m_RootOrder: 0
  69. --- !u!4 &455324
  70. Transform:
  71. m_ObjectHideFlags: 1
  72. m_PrefabParentObject: {fileID: 0}
  73. m_PrefabInternal: {fileID: 100100000}
  74. m_GameObject: {fileID: 156090}
  75. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  76. m_LocalPosition: {x: 0, y: 0, z: 0}
  77. m_LocalScale: {x: 1, y: 1, z: 1}
  78. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  79. m_Children: []
  80. m_Father: {fileID: 440108}
  81. m_RootOrder: 0
  82. --- !u!4 &455428
  83. Transform:
  84. m_ObjectHideFlags: 1
  85. m_PrefabParentObject: {fileID: 0}
  86. m_PrefabInternal: {fileID: 100100000}
  87. m_GameObject: {fileID: 173482}
  88. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  89. m_LocalPosition: {x: 0, y: 0, z: 0}
  90. m_LocalScale: {x: 1, y: 1, z: 1}
  91. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  92. m_Children: []
  93. m_Father: {fileID: 440108}
  94. m_RootOrder: 1
  95. --- !u!82 &8235270
  96. AudioSource:
  97. m_ObjectHideFlags: 1
  98. m_PrefabParentObject: {fileID: 0}
  99. m_PrefabInternal: {fileID: 100100000}
  100. m_GameObject: {fileID: 173482}
  101. m_Enabled: 1
  102. serializedVersion: 4
  103. OutputAudioMixerGroup: {fileID: 24300001, guid: 95096f29d1ddcd647ace66f3641d42f5,
  104. type: 2}
  105. m_audioClip: {fileID: 0}
  106. m_PlayOnAwake: 1
  107. m_Volume: 1
  108. m_Pitch: 1
  109. Loop: 1
  110. Mute: 0
  111. Spatialize: 0
  112. Priority: 128
  113. DopplerLevel: 1
  114. MinDistance: 0.2
  115. MaxDistance: 1.7
  116. Pan2D: 0
  117. rolloffMode: 2
  118. BypassEffects: 0
  119. BypassListenerEffects: 0
  120. BypassReverbZones: 0
  121. rolloffCustomCurve:
  122. serializedVersion: 2
  123. m_Curve:
  124. - time: 0.0541779
  125. value: 0.998018
  126. inSlope: -10.0039835
  127. outSlope: -10.0039835
  128. tangentMode: 0
  129. - time: 0.18921833
  130. value: 0.4563964
  131. inSlope: -1.4898049
  132. outSlope: -1.4898049
  133. tangentMode: 0
  134. - time: 0.4
  135. value: 0.25
  136. inSlope: -0.62524897
  137. outSlope: -0.62524897
  138. tangentMode: 0
  139. - time: 0.65040433
  140. value: 0.10121621
  141. inSlope: -0.49853253
  142. outSlope: -0.49853253
  143. tangentMode: 0
  144. - time: 0.9986523
  145. value: 0
  146. inSlope: -0.10003988
  147. outSlope: -0.10003988
  148. tangentMode: 0
  149. m_PreInfinity: 2
  150. m_PostInfinity: 2
  151. m_RotationOrder: 4
  152. panLevelCustomCurve:
  153. serializedVersion: 2
  154. m_Curve:
  155. - time: 0
  156. value: 1
  157. inSlope: 0
  158. outSlope: 0
  159. tangentMode: 0
  160. m_PreInfinity: 2
  161. m_PostInfinity: 2
  162. m_RotationOrder: 0
  163. spreadCustomCurve:
  164. serializedVersion: 2
  165. m_Curve:
  166. - time: 0
  167. value: 0
  168. inSlope: 0
  169. outSlope: 0
  170. tangentMode: 0
  171. m_PreInfinity: 2
  172. m_PostInfinity: 2
  173. m_RotationOrder: 4
  174. reverbZoneMixCustomCurve:
  175. serializedVersion: 2
  176. m_Curve:
  177. - time: 0
  178. value: 1
  179. inSlope: 0
  180. outSlope: 0
  181. tangentMode: 0
  182. m_PreInfinity: 2
  183. m_PostInfinity: 2
  184. m_RotationOrder: 0
  185. --- !u!114 &11408998
  186. MonoBehaviour:
  187. m_ObjectHideFlags: 1
  188. m_PrefabParentObject: {fileID: 0}
  189. m_PrefabInternal: {fileID: 100100000}
  190. m_GameObject: {fileID: 173482}
  191. m_Enabled: 1
  192. m_EditorHideFlags: 0
  193. m_Script: {fileID: 11500000, guid: 1a125d9df683e2a49b12babced273360, type: 3}
  194. m_Name:
  195. m_EditorClassIdentifier:
  196. waveFile:
  197. - {fileID: 8300000, guid: b6fb03c27a50bde4c90aa0b2d201eab7, type: 3}
  198. - {fileID: 8300000, guid: 6820d5b6e4c56b748b1afe3f5d550ee7, type: 3}
  199. - {fileID: 8300000, guid: a58fa4585fefc5043a66e30d7b6b9e70, type: 3}
  200. - {fileID: 8300000, guid: 2c93df0cf367b8941a8c03c309134408, type: 3}
  201. stopOnPlay: 0
  202. disableOnEnd: 0
  203. looping: 1
  204. stopOnEnd: 0
  205. playOnAwakeWithDelay: 0
  206. useRandomVolume: 1
  207. volMin: 0.3
  208. volMax: 0.3
  209. useRandomPitch: 0
  210. pitchMin: 1
  211. pitchMax: 1
  212. useRetriggerTime: 0
  213. timeInitial: 0
  214. timeMin: 0
  215. timeMax: 0
  216. useRandomSilence: 0
  217. percentToNotPlay: 0
  218. delayOffsetTime: 0
  219. --- !u!198 &19823612
  220. ParticleSystem:
  221. m_ObjectHideFlags: 1
  222. m_PrefabParentObject: {fileID: 0}
  223. m_PrefabInternal: {fileID: 100100000}
  224. m_GameObject: {fileID: 105996}
  225. serializedVersion: 4
  226. lengthInSec: 2
  227. startDelay:
  228. scalar: 0
  229. maxCurve:
  230. serializedVersion: 2
  231. m_Curve:
  232. - time: 0
  233. value: 1
  234. inSlope: 0
  235. outSlope: 0
  236. tangentMode: 0
  237. - time: 1
  238. value: 1
  239. inSlope: 0
  240. outSlope: 0
  241. tangentMode: 0
  242. m_PreInfinity: 2
  243. m_PostInfinity: 2
  244. m_RotationOrder: 4
  245. minCurve:
  246. serializedVersion: 2
  247. m_Curve:
  248. - time: 0
  249. value: 0
  250. inSlope: 0
  251. outSlope: 0
  252. tangentMode: 0
  253. - time: 1
  254. value: 0
  255. inSlope: 0
  256. outSlope: 0
  257. tangentMode: 0
  258. m_PreInfinity: 2
  259. m_PostInfinity: 2
  260. m_RotationOrder: 4
  261. minMaxState: 0
  262. speed: 1
  263. looping: 1
  264. prewarm: 0
  265. playOnAwake: 1
  266. moveWithTransform: 0
  267. autoRandomSeed: 1
  268. scalingMode: 2
  269. randomSeed: 1624116357
  270. InitialModule:
  271. serializedVersion: 2
  272. enabled: 1
  273. startLifetime:
  274. scalar: 2.14
  275. maxCurve:
  276. serializedVersion: 2
  277. m_Curve:
  278. - time: 0
  279. value: 0.5
  280. inSlope: 0
  281. outSlope: 0
  282. tangentMode: 0
  283. m_PreInfinity: 2
  284. m_PostInfinity: 2
  285. m_RotationOrder: 4
  286. minCurve:
  287. serializedVersion: 2
  288. m_Curve:
  289. - time: 0
  290. value: 1
  291. inSlope: 0
  292. outSlope: 0
  293. tangentMode: 0
  294. m_PreInfinity: 2
  295. m_PostInfinity: 2
  296. m_RotationOrder: 4
  297. minMaxState: 3
  298. startSpeed:
  299. scalar: 0.015872
  300. maxCurve:
  301. serializedVersion: 2
  302. m_Curve:
  303. - time: 0
  304. value: 1
  305. inSlope: 0
  306. outSlope: 0
  307. tangentMode: 0
  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. - time: 0
  320. value: 0
  321. inSlope: 0
  322. outSlope: 0
  323. tangentMode: 0
  324. - time: 1
  325. value: 0
  326. inSlope: 0
  327. outSlope: 0
  328. tangentMode: 0
  329. m_PreInfinity: 2
  330. m_PostInfinity: 2
  331. m_RotationOrder: 4
  332. minMaxState: 0
  333. startColor:
  334. serializedVersion: 2
  335. maxGradient:
  336. key0:
  337. serializedVersion: 2
  338. rgba: 4278190335
  339. key1:
  340. serializedVersion: 2
  341. rgba: 4278255576
  342. key2:
  343. serializedVersion: 2
  344. rgba: 0
  345. key3:
  346. serializedVersion: 2
  347. rgba: 0
  348. key4:
  349. serializedVersion: 2
  350. rgba: 0
  351. key5:
  352. serializedVersion: 2
  353. rgba: 0
  354. key6:
  355. serializedVersion: 2
  356. rgba: 0
  357. key7:
  358. serializedVersion: 2
  359. rgba: 0
  360. ctime0: 0
  361. ctime1: 65535
  362. ctime2: 0
  363. ctime3: 0
  364. ctime4: 0
  365. ctime5: 0
  366. ctime6: 0
  367. ctime7: 0
  368. atime0: 0
  369. atime1: 65535
  370. atime2: 0
  371. atime3: 0
  372. atime4: 0
  373. atime5: 0
  374. atime6: 0
  375. atime7: 0
  376. m_NumColorKeys: 2
  377. m_NumAlphaKeys: 2
  378. minGradient:
  379. key0:
  380. serializedVersion: 2
  381. rgba: 4278255576
  382. key1:
  383. serializedVersion: 2
  384. rgba: 4278190335
  385. key2:
  386. serializedVersion: 2
  387. rgba: 0
  388. key3:
  389. serializedVersion: 2
  390. rgba: 0
  391. key4:
  392. serializedVersion: 2
  393. rgba: 0
  394. key5:
  395. serializedVersion: 2
  396. rgba: 0
  397. key6:
  398. serializedVersion: 2
  399. rgba: 0
  400. key7:
  401. serializedVersion: 2
  402. rgba: 0
  403. ctime0: 0
  404. ctime1: 65535
  405. ctime2: 0
  406. ctime3: 0
  407. ctime4: 0
  408. ctime5: 0
  409. ctime6: 0
  410. ctime7: 0
  411. atime0: 0
  412. atime1: 65535
  413. atime2: 0
  414. atime3: 0
  415. atime4: 0
  416. atime5: 0
  417. atime6: 0
  418. atime7: 0
  419. m_NumColorKeys: 2
  420. m_NumAlphaKeys: 2
  421. minColor: {r: 0.67058825, g: 0.67058825, b: 0.67058825, a: 1}
  422. maxColor: {r: 0.5294118, g: 0.5294118, b: 0.5294118, a: 1}
  423. minMaxState: 2
  424. startSize:
  425. scalar: 0.11648001
  426. maxCurve:
  427. serializedVersion: 2
  428. m_Curve:
  429. - time: 0
  430. value: 1
  431. inSlope: 0
  432. outSlope: 0
  433. tangentMode: 0
  434. m_PreInfinity: 2
  435. m_PostInfinity: 2
  436. m_RotationOrder: 4
  437. minCurve:
  438. serializedVersion: 2
  439. m_Curve:
  440. - time: 0
  441. value: 0.04395604
  442. inSlope: 0
  443. outSlope: 0
  444. tangentMode: 0
  445. m_PreInfinity: 2
  446. m_PostInfinity: 2
  447. m_RotationOrder: 4
  448. minMaxState: 3
  449. startSizeY:
  450. scalar: 1
  451. maxCurve:
  452. serializedVersion: 2
  453. m_Curve:
  454. - time: 0
  455. value: 1
  456. inSlope: 0
  457. outSlope: 0
  458. tangentMode: 0
  459. - time: 1
  460. value: 1
  461. inSlope: 0
  462. outSlope: 0
  463. tangentMode: 0
  464. m_PreInfinity: 2
  465. m_PostInfinity: 2
  466. m_RotationOrder: 4
  467. minCurve:
  468. serializedVersion: 2
  469. m_Curve:
  470. - time: 0
  471. value: 0
  472. inSlope: 0
  473. outSlope: 0
  474. tangentMode: 0
  475. - time: 1
  476. value: 0
  477. inSlope: 0
  478. outSlope: 0
  479. tangentMode: 0
  480. m_PreInfinity: 2
  481. m_PostInfinity: 2
  482. m_RotationOrder: 4
  483. minMaxState: 0
  484. startSizeZ:
  485. scalar: 1
  486. maxCurve:
  487. serializedVersion: 2
  488. m_Curve:
  489. - time: 0
  490. value: 1
  491. inSlope: 0
  492. outSlope: 0
  493. tangentMode: 0
  494. - time: 1
  495. value: 1
  496. inSlope: 0
  497. outSlope: 0
  498. tangentMode: 0
  499. m_PreInfinity: 2
  500. m_PostInfinity: 2
  501. m_RotationOrder: 4
  502. minCurve:
  503. serializedVersion: 2
  504. m_Curve:
  505. - time: 0
  506. value: 0
  507. inSlope: 0
  508. outSlope: 0
  509. tangentMode: 0
  510. - time: 1
  511. value: 0
  512. inSlope: 0
  513. outSlope: 0
  514. tangentMode: 0
  515. m_PreInfinity: 2
  516. m_PostInfinity: 2
  517. m_RotationOrder: 4
  518. minMaxState: 0
  519. startRotationX:
  520. scalar: 0
  521. maxCurve:
  522. serializedVersion: 2
  523. m_Curve:
  524. - time: 0
  525. value: 1
  526. inSlope: 0
  527. outSlope: 0
  528. tangentMode: 0
  529. - time: 1
  530. value: 1
  531. inSlope: 0
  532. outSlope: 0
  533. tangentMode: 0
  534. m_PreInfinity: 2
  535. m_PostInfinity: 2
  536. m_RotationOrder: 4
  537. minCurve:
  538. serializedVersion: 2
  539. m_Curve:
  540. - time: 0
  541. value: 0
  542. inSlope: 0
  543. outSlope: 0
  544. tangentMode: 0
  545. - time: 1
  546. value: 0
  547. inSlope: 0
  548. outSlope: 0
  549. tangentMode: 0
  550. m_PreInfinity: 2
  551. m_PostInfinity: 2
  552. m_RotationOrder: 4
  553. minMaxState: 0
  554. startRotationY:
  555. scalar: 0
  556. maxCurve:
  557. serializedVersion: 2
  558. m_Curve:
  559. - time: 0
  560. value: 1
  561. inSlope: 0
  562. outSlope: 0
  563. tangentMode: 0
  564. - time: 1
  565. value: 1
  566. inSlope: 0
  567. outSlope: 0
  568. tangentMode: 0
  569. m_PreInfinity: 2
  570. m_PostInfinity: 2
  571. m_RotationOrder: 4
  572. minCurve:
  573. serializedVersion: 2
  574. m_Curve:
  575. - time: 0
  576. value: 0
  577. inSlope: 0
  578. outSlope: 0
  579. tangentMode: 0
  580. - time: 1
  581. value: 0
  582. inSlope: 0
  583. outSlope: 0
  584. tangentMode: 0
  585. m_PreInfinity: 2
  586. m_PostInfinity: 2
  587. m_RotationOrder: 4
  588. minMaxState: 0
  589. startRotation:
  590. scalar: 62.831852
  591. maxCurve:
  592. serializedVersion: 2
  593. m_Curve:
  594. - time: 0
  595. value: 1
  596. inSlope: 0
  597. outSlope: 0
  598. tangentMode: 0
  599. m_PreInfinity: 2
  600. m_PostInfinity: 2
  601. m_RotationOrder: 4
  602. minCurve:
  603. serializedVersion: 2
  604. m_Curve:
  605. - time: 0
  606. value: 0
  607. inSlope: 0
  608. outSlope: 0
  609. tangentMode: 0
  610. m_PreInfinity: 2
  611. m_PostInfinity: 2
  612. m_RotationOrder: 4
  613. minMaxState: 3
  614. randomizeRotationDirection: 0
  615. gravityModifier: -0.03584
  616. maxNumParticles: 1000
  617. size3D: 0
  618. rotation3D: 0
  619. ShapeModule:
  620. serializedVersion: 2
  621. enabled: 1
  622. type: 0
  623. radius: 0.022400001
  624. angle: 24.17
  625. length: 5
  626. boxX: 0.051200002
  627. boxY: 0.051200002
  628. boxZ: 0.051200002
  629. arc: 360
  630. placementMode: 0
  631. m_Mesh: {fileID: 0}
  632. m_MeshRenderer: {fileID: 0}
  633. m_SkinnedMeshRenderer: {fileID: 0}
  634. m_MeshMaterialIndex: 0
  635. m_MeshNormalOffset: 0
  636. m_UseMeshMaterialIndex: 0
  637. m_UseMeshColors: 1
  638. randomDirection: 0
  639. EmissionModule:
  640. enabled: 1
  641. serializedVersion: 2
  642. m_Type: 0
  643. rate:
  644. scalar: 40.65
  645. maxCurve:
  646. serializedVersion: 2
  647. m_Curve:
  648. - time: 0
  649. value: 1
  650. inSlope: 0
  651. outSlope: 0
  652. tangentMode: 0
  653. - time: 1
  654. value: 1
  655. inSlope: 0
  656. outSlope: 0
  657. tangentMode: 0
  658. m_PreInfinity: 2
  659. m_PostInfinity: 2
  660. m_RotationOrder: 4
  661. minCurve:
  662. serializedVersion: 2
  663. m_Curve:
  664. - time: 0
  665. value: 0
  666. inSlope: 0
  667. outSlope: 0
  668. tangentMode: 0
  669. - time: 1
  670. value: 0
  671. inSlope: 0
  672. outSlope: 0
  673. tangentMode: 0
  674. m_PreInfinity: 2
  675. m_PostInfinity: 2
  676. m_RotationOrder: 4
  677. minMaxState: 0
  678. cnt0: 30
  679. cnt1: 30
  680. cnt2: 30
  681. cnt3: 30
  682. cntmax0: 30
  683. cntmax1: 30
  684. cntmax2: 30
  685. cntmax3: 30
  686. time0: 0
  687. time1: 0
  688. time2: 0
  689. time3: 0
  690. m_BurstCount: 0
  691. SizeModule:
  692. enabled: 1
  693. curve:
  694. scalar: 1
  695. maxCurve:
  696. serializedVersion: 2
  697. m_Curve:
  698. - time: 0
  699. value: 0
  700. inSlope: 3.3554323
  701. outSlope: 3.3554323
  702. tangentMode: 10
  703. - time: 0.12389771
  704. value: 0.41573036
  705. inSlope: 2.184303
  706. outSlope: 2.184303
  707. tangentMode: 10
  708. - time: 0.54531235
  709. value: 0.84269667
  710. inSlope: 0.68061435
  711. outSlope: 0.68061435
  712. tangentMode: 10
  713. - time: 0.8381246
  714. value: 0.9446114
  715. inSlope: -2.7436833
  716. outSlope: -2.7436833
  717. tangentMode: 10
  718. - time: 1
  719. value: 0
  720. inSlope: -5.8354216
  721. outSlope: -5.8354216
  722. tangentMode: 10
  723. m_PreInfinity: 2
  724. m_PostInfinity: 2
  725. m_RotationOrder: 4
  726. minCurve:
  727. serializedVersion: 2
  728. m_Curve:
  729. - time: 0
  730. value: 0
  731. inSlope: 0
  732. outSlope: 0
  733. tangentMode: 0
  734. - time: 1
  735. value: 0
  736. inSlope: 0
  737. outSlope: 0
  738. tangentMode: 0
  739. m_PreInfinity: 2
  740. m_PostInfinity: 2
  741. m_RotationOrder: 4
  742. minMaxState: 1
  743. y:
  744. scalar: 1
  745. maxCurve:
  746. serializedVersion: 2
  747. m_Curve:
  748. - time: 0
  749. value: 1
  750. inSlope: 0
  751. outSlope: 0
  752. tangentMode: 0
  753. - time: 1
  754. value: 1
  755. inSlope: 0
  756. outSlope: 0
  757. tangentMode: 0
  758. m_PreInfinity: 2
  759. m_PostInfinity: 2
  760. m_RotationOrder: 4
  761. minCurve:
  762. serializedVersion: 2
  763. m_Curve:
  764. - time: 0
  765. value: 0
  766. inSlope: 0
  767. outSlope: 0
  768. tangentMode: 0
  769. - time: 1
  770. value: 0
  771. inSlope: 0
  772. outSlope: 0
  773. tangentMode: 0
  774. m_PreInfinity: 2
  775. m_PostInfinity: 2
  776. m_RotationOrder: 4
  777. minMaxState: 0
  778. z:
  779. scalar: 1
  780. maxCurve:
  781. serializedVersion: 2
  782. m_Curve:
  783. - time: 0
  784. value: 1
  785. inSlope: 0
  786. outSlope: 0
  787. tangentMode: 0
  788. - time: 1
  789. value: 1
  790. inSlope: 0
  791. outSlope: 0
  792. tangentMode: 0
  793. m_PreInfinity: 2
  794. m_PostInfinity: 2
  795. m_RotationOrder: 4
  796. minCurve:
  797. serializedVersion: 2
  798. m_Curve:
  799. - time: 0
  800. value: 0
  801. inSlope: 0
  802. outSlope: 0
  803. tangentMode: 0
  804. - time: 1
  805. value: 0
  806. inSlope: 0
  807. outSlope: 0
  808. tangentMode: 0
  809. m_PreInfinity: 2
  810. m_PostInfinity: 2
  811. m_RotationOrder: 4
  812. minMaxState: 0
  813. separateAxes: 0
  814. RotationModule:
  815. enabled: 1
  816. x:
  817. scalar: 0
  818. maxCurve:
  819. serializedVersion: 2
  820. m_Curve:
  821. - time: 0
  822. value: 1
  823. inSlope: 0
  824. outSlope: 0
  825. tangentMode: 0
  826. - time: 1
  827. value: 1
  828. inSlope: 0
  829. outSlope: 0
  830. tangentMode: 0
  831. m_PreInfinity: 2
  832. m_PostInfinity: 2
  833. m_RotationOrder: 4
  834. minCurve:
  835. serializedVersion: 2
  836. m_Curve:
  837. - time: 0
  838. value: 0
  839. inSlope: 0
  840. outSlope: 0
  841. tangentMode: 0
  842. - time: 1
  843. value: 0
  844. inSlope: 0
  845. outSlope: 0
  846. tangentMode: 0
  847. m_PreInfinity: 2
  848. m_PostInfinity: 2
  849. m_RotationOrder: 4
  850. minMaxState: 0
  851. y:
  852. scalar: 0
  853. maxCurve:
  854. serializedVersion: 2
  855. m_Curve:
  856. - time: 0
  857. value: 1
  858. inSlope: 0
  859. outSlope: 0
  860. tangentMode: 0
  861. - time: 1
  862. value: 1
  863. inSlope: 0
  864. outSlope: 0
  865. tangentMode: 0
  866. m_PreInfinity: 2
  867. m_PostInfinity: 2
  868. m_RotationOrder: 4
  869. minCurve:
  870. serializedVersion: 2
  871. m_Curve:
  872. - time: 0
  873. value: 0
  874. inSlope: 0
  875. outSlope: 0
  876. tangentMode: 0
  877. - time: 1
  878. value: 0
  879. inSlope: 0
  880. outSlope: 0
  881. tangentMode: 0
  882. m_PreInfinity: 2
  883. m_PostInfinity: 2
  884. m_RotationOrder: 4
  885. minMaxState: 0
  886. curve:
  887. scalar: 69.81317
  888. maxCurve:
  889. serializedVersion: 2
  890. m_Curve:
  891. - time: 0
  892. value: 0.011235837
  893. inSlope: 0
  894. outSlope: 0
  895. tangentMode: 0
  896. - time: 0.4939394
  897. value: -0.15730338
  898. inSlope: Infinity
  899. outSlope: Infinity
  900. tangentMode: 31
  901. m_PreInfinity: 2
  902. m_PostInfinity: 2
  903. m_RotationOrder: 4
  904. minCurve:
  905. serializedVersion: 2
  906. m_Curve:
  907. - time: 0
  908. value: 0.022471905
  909. inSlope: 0
  910. outSlope: 0
  911. tangentMode: 0
  912. - time: 0.4939394
  913. value: 0.17977527
  914. inSlope: Infinity
  915. outSlope: Infinity
  916. tangentMode: 31
  917. m_PreInfinity: 2
  918. m_PostInfinity: 2
  919. m_RotationOrder: 4
  920. minMaxState: 2
  921. separateAxes: 0
  922. ColorModule:
  923. enabled: 1
  924. gradient:
  925. serializedVersion: 2
  926. maxGradient:
  927. key0:
  928. serializedVersion: 2
  929. rgba: 4294967295
  930. key1:
  931. serializedVersion: 2
  932. rgba: 4285690482
  933. key2:
  934. serializedVersion: 2
  935. rgba: 4278190080
  936. key3:
  937. serializedVersion: 2
  938. rgba: 0
  939. key4:
  940. serializedVersion: 2
  941. rgba: 0
  942. key5:
  943. serializedVersion: 2
  944. rgba: 0
  945. key6:
  946. serializedVersion: 2
  947. rgba: 0
  948. key7:
  949. serializedVersion: 2
  950. rgba: 0
  951. ctime0: 0
  952. ctime1: 65535
  953. ctime2: 0
  954. ctime3: 0
  955. ctime4: 0
  956. ctime5: 0
  957. ctime6: 0
  958. ctime7: 0
  959. atime0: 0
  960. atime1: 65535
  961. atime2: 58211
  962. atime3: 0
  963. atime4: 0
  964. atime5: 0
  965. atime6: 0
  966. atime7: 0
  967. m_NumColorKeys: 2
  968. m_NumAlphaKeys: 2
  969. minGradient:
  970. key0:
  971. serializedVersion: 2
  972. rgba: 4294967295
  973. key1:
  974. serializedVersion: 2
  975. rgba: 4278255615
  976. key2:
  977. serializedVersion: 2
  978. rgba: 4278190080
  979. key3:
  980. serializedVersion: 2
  981. rgba: 0
  982. key4:
  983. serializedVersion: 2
  984. rgba: 0
  985. key5:
  986. serializedVersion: 2
  987. rgba: 0
  988. key6:
  989. serializedVersion: 2
  990. rgba: 0
  991. key7:
  992. serializedVersion: 2
  993. rgba: 0
  994. ctime0: 0
  995. ctime1: 65535
  996. ctime2: 0
  997. ctime3: 0
  998. ctime4: 0
  999. ctime5: 0
  1000. ctime6: 0
  1001. ctime7: 0
  1002. atime0: 0
  1003. atime1: 65535
  1004. atime2: 58211
  1005. atime3: 0
  1006. atime4: 0
  1007. atime5: 0
  1008. atime6: 0
  1009. atime7: 0
  1010. m_NumColorKeys: 2
  1011. m_NumAlphaKeys: 2
  1012. minColor: {r: 1, g: 1, b: 1, a: 1}
  1013. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1014. minMaxState: 1
  1015. UVModule:
  1016. enabled: 0
  1017. frameOverTime:
  1018. scalar: 0.9999
  1019. maxCurve:
  1020. serializedVersion: 2
  1021. m_Curve:
  1022. - time: 0
  1023. value: 0
  1024. inSlope: 0
  1025. outSlope: 0
  1026. tangentMode: 10
  1027. - time: 0.3672039
  1028. value: 0
  1029. inSlope: 0
  1030. outSlope: 0
  1031. tangentMode: 0
  1032. - time: 1
  1033. value: 1
  1034. inSlope: 1.5802878
  1035. outSlope: 1.5802878
  1036. tangentMode: 10
  1037. m_PreInfinity: 2
  1038. m_PostInfinity: 2
  1039. m_RotationOrder: 4
  1040. minCurve:
  1041. serializedVersion: 2
  1042. m_Curve:
  1043. - time: 0
  1044. value: 0
  1045. inSlope: 0
  1046. outSlope: 1
  1047. tangentMode: 0
  1048. - time: 1
  1049. value: 1
  1050. inSlope: 1
  1051. outSlope: 0
  1052. tangentMode: 0
  1053. m_PreInfinity: 2
  1054. m_PostInfinity: 2
  1055. m_RotationOrder: 4
  1056. minMaxState: 1
  1057. startFrame:
  1058. scalar: 0
  1059. maxCurve:
  1060. serializedVersion: 2
  1061. m_Curve:
  1062. - time: 0
  1063. value: 1
  1064. inSlope: 0
  1065. outSlope: 0
  1066. tangentMode: 0
  1067. - time: 1
  1068. value: 1
  1069. inSlope: 0
  1070. outSlope: 0
  1071. tangentMode: 0
  1072. m_PreInfinity: 2
  1073. m_PostInfinity: 2
  1074. m_RotationOrder: 4
  1075. minCurve:
  1076. serializedVersion: 2
  1077. m_Curve:
  1078. - time: 0
  1079. value: 0
  1080. inSlope: 0
  1081. outSlope: 0
  1082. tangentMode: 0
  1083. - time: 1
  1084. value: 0
  1085. inSlope: 0
  1086. outSlope: 0
  1087. tangentMode: 0
  1088. m_PreInfinity: 2
  1089. m_PostInfinity: 2
  1090. m_RotationOrder: 4
  1091. minMaxState: 0
  1092. tilesX: 2
  1093. tilesY: 2
  1094. animationType: 0
  1095. rowIndex: 0
  1096. cycles: 1
  1097. uvChannelMask: -1
  1098. randomRow: 1
  1099. VelocityModule:
  1100. enabled: 0
  1101. x:
  1102. scalar: 0
  1103. maxCurve:
  1104. serializedVersion: 2
  1105. m_Curve:
  1106. - time: 0
  1107. value: 1
  1108. inSlope: 0
  1109. outSlope: 0
  1110. tangentMode: 0
  1111. - time: 1
  1112. value: 1
  1113. inSlope: 0
  1114. outSlope: 0
  1115. tangentMode: 0
  1116. m_PreInfinity: 2
  1117. m_PostInfinity: 2
  1118. m_RotationOrder: 4
  1119. minCurve:
  1120. serializedVersion: 2
  1121. m_Curve:
  1122. - time: 0
  1123. value: 0
  1124. inSlope: 0
  1125. outSlope: 0
  1126. tangentMode: 0
  1127. - time: 1
  1128. value: 0
  1129. inSlope: 0
  1130. outSlope: 0
  1131. tangentMode: 0
  1132. m_PreInfinity: 2
  1133. m_PostInfinity: 2
  1134. m_RotationOrder: 4
  1135. minMaxState: 0
  1136. y:
  1137. scalar: 0
  1138. maxCurve:
  1139. serializedVersion: 2
  1140. m_Curve:
  1141. - time: 0
  1142. value: 1
  1143. inSlope: 0
  1144. outSlope: 0
  1145. tangentMode: 0
  1146. - time: 1
  1147. value: 1
  1148. inSlope: 0
  1149. outSlope: 0
  1150. tangentMode: 0
  1151. m_PreInfinity: 2
  1152. m_PostInfinity: 2
  1153. m_RotationOrder: 4
  1154. minCurve:
  1155. serializedVersion: 2
  1156. m_Curve:
  1157. - time: 0
  1158. value: 0
  1159. inSlope: 0
  1160. outSlope: 0
  1161. tangentMode: 0
  1162. - time: 1
  1163. value: 0
  1164. inSlope: 0
  1165. outSlope: 0
  1166. tangentMode: 0
  1167. m_PreInfinity: 2
  1168. m_PostInfinity: 2
  1169. m_RotationOrder: 4
  1170. minMaxState: 0
  1171. z:
  1172. scalar: 0
  1173. maxCurve:
  1174. serializedVersion: 2
  1175. m_Curve:
  1176. - time: 0
  1177. value: 1
  1178. inSlope: 0
  1179. outSlope: 0
  1180. tangentMode: 0
  1181. - time: 1
  1182. value: 1
  1183. inSlope: 0
  1184. outSlope: 0
  1185. tangentMode: 0
  1186. m_PreInfinity: 2
  1187. m_PostInfinity: 2
  1188. m_RotationOrder: 4
  1189. minCurve:
  1190. serializedVersion: 2
  1191. m_Curve:
  1192. - time: 0
  1193. value: 0
  1194. inSlope: 0
  1195. outSlope: 0
  1196. tangentMode: 0
  1197. - time: 1
  1198. value: 0
  1199. inSlope: 0
  1200. outSlope: 0
  1201. tangentMode: 0
  1202. m_PreInfinity: 2
  1203. m_PostInfinity: 2
  1204. m_RotationOrder: 4
  1205. minMaxState: 0
  1206. inWorldSpace: 0
  1207. InheritVelocityModule:
  1208. enabled: 0
  1209. m_Mode: 0
  1210. m_Curve:
  1211. scalar: 0
  1212. maxCurve:
  1213. serializedVersion: 2
  1214. m_Curve:
  1215. - time: 0
  1216. value: 1
  1217. inSlope: 0
  1218. outSlope: 0
  1219. tangentMode: 0
  1220. - time: 1
  1221. value: 1
  1222. inSlope: 0
  1223. outSlope: 0
  1224. tangentMode: 0
  1225. m_PreInfinity: 2
  1226. m_PostInfinity: 2
  1227. m_RotationOrder: 4
  1228. minCurve:
  1229. serializedVersion: 2
  1230. m_Curve:
  1231. - time: 0
  1232. value: 0
  1233. inSlope: 0
  1234. outSlope: 0
  1235. tangentMode: 0
  1236. - time: 1
  1237. value: 0
  1238. inSlope: 0
  1239. outSlope: 0
  1240. tangentMode: 0
  1241. m_PreInfinity: 2
  1242. m_PostInfinity: 2
  1243. m_RotationOrder: 4
  1244. minMaxState: 0
  1245. ForceModule:
  1246. enabled: 0
  1247. x:
  1248. scalar: 25
  1249. maxCurve:
  1250. serializedVersion: 2
  1251. m_Curve:
  1252. - time: 0
  1253. value: 1
  1254. inSlope: 0
  1255. outSlope: 0
  1256. tangentMode: 0
  1257. m_PreInfinity: 2
  1258. m_PostInfinity: 2
  1259. m_RotationOrder: 4
  1260. minCurve:
  1261. serializedVersion: 2
  1262. m_Curve:
  1263. - time: 0
  1264. value: -1
  1265. inSlope: 0
  1266. outSlope: 0
  1267. tangentMode: 0
  1268. m_PreInfinity: 2
  1269. m_PostInfinity: 2
  1270. m_RotationOrder: 4
  1271. minMaxState: 3
  1272. y:
  1273. scalar: 26
  1274. maxCurve:
  1275. serializedVersion: 2
  1276. m_Curve:
  1277. - time: 0
  1278. value: 1
  1279. inSlope: 0
  1280. outSlope: 0
  1281. tangentMode: 0
  1282. m_PreInfinity: 2
  1283. m_PostInfinity: 2
  1284. m_RotationOrder: 4
  1285. minCurve:
  1286. serializedVersion: 2
  1287. m_Curve:
  1288. - time: 0
  1289. value: -0.96153843
  1290. inSlope: 0
  1291. outSlope: 0
  1292. tangentMode: 0
  1293. m_PreInfinity: 2
  1294. m_PostInfinity: 2
  1295. m_RotationOrder: 4
  1296. minMaxState: 3
  1297. z:
  1298. scalar: 25
  1299. maxCurve:
  1300. serializedVersion: 2
  1301. m_Curve:
  1302. - time: 0
  1303. value: 1
  1304. inSlope: 0
  1305. outSlope: 0
  1306. tangentMode: 0
  1307. m_PreInfinity: 2
  1308. m_PostInfinity: 2
  1309. m_RotationOrder: 4
  1310. minCurve:
  1311. serializedVersion: 2
  1312. m_Curve:
  1313. - time: 0
  1314. value: -1
  1315. inSlope: 0
  1316. outSlope: 0
  1317. tangentMode: 0
  1318. m_PreInfinity: 2
  1319. m_PostInfinity: 2
  1320. m_RotationOrder: 4
  1321. minMaxState: 3
  1322. inWorldSpace: 1
  1323. randomizePerFrame: 1
  1324. ExternalForcesModule:
  1325. enabled: 0
  1326. multiplier: 1
  1327. ClampVelocityModule:
  1328. enabled: 0
  1329. x:
  1330. scalar: 0.5
  1331. maxCurve:
  1332. serializedVersion: 2
  1333. m_Curve:
  1334. - time: 0
  1335. value: 1
  1336. inSlope: 0
  1337. outSlope: 0
  1338. tangentMode: 0
  1339. - time: 1
  1340. value: 1
  1341. inSlope: 0
  1342. outSlope: 0
  1343. tangentMode: 0
  1344. m_PreInfinity: 2
  1345. m_PostInfinity: 2
  1346. m_RotationOrder: 4
  1347. minCurve:
  1348. serializedVersion: 2
  1349. m_Curve:
  1350. - time: 0
  1351. value: 0
  1352. inSlope: 0
  1353. outSlope: 0
  1354. tangentMode: 0
  1355. - time: 1
  1356. value: 0
  1357. inSlope: 0
  1358. outSlope: 0
  1359. tangentMode: 0
  1360. m_PreInfinity: 2
  1361. m_PostInfinity: 2
  1362. m_RotationOrder: 4
  1363. minMaxState: 0
  1364. y:
  1365. scalar: 0.5
  1366. maxCurve:
  1367. serializedVersion: 2
  1368. m_Curve:
  1369. - time: 0
  1370. value: 1
  1371. inSlope: 0
  1372. outSlope: 0
  1373. tangentMode: 0
  1374. - time: 1
  1375. value: 1
  1376. inSlope: 0
  1377. outSlope: 0
  1378. tangentMode: 0
  1379. m_PreInfinity: 2
  1380. m_PostInfinity: 2
  1381. m_RotationOrder: 4
  1382. minCurve:
  1383. serializedVersion: 2
  1384. m_Curve:
  1385. - time: 0
  1386. value: 0
  1387. inSlope: 0
  1388. outSlope: 0
  1389. tangentMode: 0
  1390. - time: 1
  1391. value: 0
  1392. inSlope: 0
  1393. outSlope: 0
  1394. tangentMode: 0
  1395. m_PreInfinity: 2
  1396. m_PostInfinity: 2
  1397. m_RotationOrder: 4
  1398. minMaxState: 0
  1399. z:
  1400. scalar: 0.5
  1401. maxCurve:
  1402. serializedVersion: 2
  1403. m_Curve:
  1404. - time: 0
  1405. value: 1
  1406. inSlope: 0
  1407. outSlope: 0
  1408. tangentMode: 0
  1409. - time: 1
  1410. value: 1
  1411. inSlope: 0
  1412. outSlope: 0
  1413. tangentMode: 0
  1414. m_PreInfinity: 2
  1415. m_PostInfinity: 2
  1416. m_RotationOrder: 4
  1417. minCurve:
  1418. serializedVersion: 2
  1419. m_Curve:
  1420. - time: 0
  1421. value: 0
  1422. inSlope: 0
  1423. outSlope: 0
  1424. tangentMode: 0
  1425. - time: 1
  1426. value: 0
  1427. inSlope: 0
  1428. outSlope: 0
  1429. tangentMode: 0
  1430. m_PreInfinity: 2
  1431. m_PostInfinity: 2
  1432. m_RotationOrder: 4
  1433. minMaxState: 0
  1434. magnitude:
  1435. scalar: 4.8
  1436. maxCurve:
  1437. serializedVersion: 2
  1438. m_Curve:
  1439. - time: 0
  1440. value: 1
  1441. inSlope: 0.11013458
  1442. outSlope: 0.11013458
  1443. tangentMode: 0
  1444. - time: 1
  1445. value: 0.011235952
  1446. inSlope: -1.4659002
  1447. outSlope: -1.4659002
  1448. tangentMode: 0
  1449. m_PreInfinity: 2
  1450. m_PostInfinity: 2
  1451. m_RotationOrder: 4
  1452. minCurve:
  1453. serializedVersion: 2
  1454. m_Curve:
  1455. - time: 0
  1456. value: 0
  1457. inSlope: 0
  1458. outSlope: 0
  1459. tangentMode: 0
  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. minMaxState: 1
  1469. separateAxis: 0
  1470. inWorldSpace: 0
  1471. dampen: 1
  1472. SizeBySpeedModule:
  1473. enabled: 0
  1474. curve:
  1475. scalar: 1
  1476. maxCurve:
  1477. serializedVersion: 2
  1478. m_Curve:
  1479. - time: 0
  1480. value: 1
  1481. inSlope: 0
  1482. outSlope: 0
  1483. tangentMode: 0
  1484. - time: 1
  1485. value: 0.4494382
  1486. inSlope: -5.33006
  1487. outSlope: -5.33006
  1488. tangentMode: 0
  1489. m_PreInfinity: 2
  1490. m_PostInfinity: 2
  1491. m_RotationOrder: 4
  1492. minCurve:
  1493. serializedVersion: 2
  1494. m_Curve:
  1495. - time: 0
  1496. value: 0
  1497. inSlope: 0
  1498. outSlope: 0
  1499. tangentMode: 0
  1500. - time: 1
  1501. value: 0
  1502. inSlope: 0
  1503. outSlope: 0
  1504. tangentMode: 0
  1505. m_PreInfinity: 2
  1506. m_PostInfinity: 2
  1507. m_RotationOrder: 4
  1508. minMaxState: 1
  1509. y:
  1510. scalar: 1
  1511. maxCurve:
  1512. serializedVersion: 2
  1513. m_Curve:
  1514. - time: 0
  1515. value: 1
  1516. inSlope: 0
  1517. outSlope: 0
  1518. tangentMode: 0
  1519. - time: 1
  1520. value: 1
  1521. inSlope: 0
  1522. outSlope: 0
  1523. tangentMode: 0
  1524. m_PreInfinity: 2
  1525. m_PostInfinity: 2
  1526. m_RotationOrder: 4
  1527. minCurve:
  1528. serializedVersion: 2
  1529. m_Curve:
  1530. - time: 0
  1531. value: 0
  1532. inSlope: 0
  1533. outSlope: 0
  1534. tangentMode: 0
  1535. - time: 1
  1536. value: 0
  1537. inSlope: 0
  1538. outSlope: 0
  1539. tangentMode: 0
  1540. m_PreInfinity: 2
  1541. m_PostInfinity: 2
  1542. m_RotationOrder: 4
  1543. minMaxState: 0
  1544. z:
  1545. scalar: 1
  1546. maxCurve:
  1547. serializedVersion: 2
  1548. m_Curve:
  1549. - time: 0
  1550. value: 1
  1551. inSlope: 0
  1552. outSlope: 0
  1553. tangentMode: 0
  1554. - time: 1
  1555. value: 1
  1556. inSlope: 0
  1557. outSlope: 0
  1558. tangentMode: 0
  1559. m_PreInfinity: 2
  1560. m_PostInfinity: 2
  1561. m_RotationOrder: 4
  1562. minCurve:
  1563. serializedVersion: 2
  1564. m_Curve:
  1565. - time: 0
  1566. value: 0
  1567. inSlope: 0
  1568. outSlope: 0
  1569. tangentMode: 0
  1570. - time: 1
  1571. value: 0
  1572. inSlope: 0
  1573. outSlope: 0
  1574. tangentMode: 0
  1575. m_PreInfinity: 2
  1576. m_PostInfinity: 2
  1577. m_RotationOrder: 4
  1578. minMaxState: 0
  1579. range: {x: 0, y: 1}
  1580. separateAxes: 0
  1581. RotationBySpeedModule:
  1582. enabled: 0
  1583. x:
  1584. scalar: 0
  1585. maxCurve:
  1586. serializedVersion: 2
  1587. m_Curve:
  1588. - time: 0
  1589. value: 1
  1590. inSlope: 0
  1591. outSlope: 0
  1592. tangentMode: 0
  1593. - time: 1
  1594. value: 1
  1595. inSlope: 0
  1596. outSlope: 0
  1597. tangentMode: 0
  1598. m_PreInfinity: 2
  1599. m_PostInfinity: 2
  1600. m_RotationOrder: 4
  1601. minCurve:
  1602. serializedVersion: 2
  1603. m_Curve:
  1604. - time: 0
  1605. value: 0
  1606. inSlope: 0
  1607. outSlope: 0
  1608. tangentMode: 0
  1609. - time: 1
  1610. value: 0
  1611. inSlope: 0
  1612. outSlope: 0
  1613. tangentMode: 0
  1614. m_PreInfinity: 2
  1615. m_PostInfinity: 2
  1616. m_RotationOrder: 4
  1617. minMaxState: 0
  1618. y:
  1619. scalar: 0
  1620. maxCurve:
  1621. serializedVersion: 2
  1622. m_Curve:
  1623. - time: 0
  1624. value: 1
  1625. inSlope: 0
  1626. outSlope: 0
  1627. tangentMode: 0
  1628. - time: 1
  1629. value: 1
  1630. inSlope: 0
  1631. outSlope: 0
  1632. tangentMode: 0
  1633. m_PreInfinity: 2
  1634. m_PostInfinity: 2
  1635. m_RotationOrder: 4
  1636. minCurve:
  1637. serializedVersion: 2
  1638. m_Curve:
  1639. - time: 0
  1640. value: 0
  1641. inSlope: 0
  1642. outSlope: 0
  1643. tangentMode: 0
  1644. - time: 1
  1645. value: 0
  1646. inSlope: 0
  1647. outSlope: 0
  1648. tangentMode: 0
  1649. m_PreInfinity: 2
  1650. m_PostInfinity: 2
  1651. m_RotationOrder: 4
  1652. minMaxState: 0
  1653. curve:
  1654. scalar: 0.7853982
  1655. maxCurve:
  1656. serializedVersion: 2
  1657. m_Curve:
  1658. - time: 0
  1659. value: 1
  1660. inSlope: 0
  1661. outSlope: 0
  1662. tangentMode: 0
  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. - time: 0
  1675. value: 0
  1676. inSlope: 0
  1677. outSlope: 0
  1678. tangentMode: 0
  1679. - time: 1
  1680. value: 0
  1681. inSlope: 0
  1682. outSlope: 0
  1683. tangentMode: 0
  1684. m_PreInfinity: 2
  1685. m_PostInfinity: 2
  1686. m_RotationOrder: 4
  1687. minMaxState: 0
  1688. separateAxes: 0
  1689. range: {x: 0, y: 1}
  1690. ColorBySpeedModule:
  1691. enabled: 0
  1692. gradient:
  1693. serializedVersion: 2
  1694. maxGradient:
  1695. key0:
  1696. serializedVersion: 2
  1697. rgba: 4294967295
  1698. key1:
  1699. serializedVersion: 2
  1700. rgba: 4294967295
  1701. key2:
  1702. serializedVersion: 2
  1703. rgba: 0
  1704. key3:
  1705. serializedVersion: 2
  1706. rgba: 0
  1707. key4:
  1708. serializedVersion: 2
  1709. rgba: 0
  1710. key5:
  1711. serializedVersion: 2
  1712. rgba: 0
  1713. key6:
  1714. serializedVersion: 2
  1715. rgba: 0
  1716. key7:
  1717. serializedVersion: 2
  1718. rgba: 0
  1719. ctime0: 0
  1720. ctime1: 65535
  1721. ctime2: 0
  1722. ctime3: 0
  1723. ctime4: 0
  1724. ctime5: 0
  1725. ctime6: 0
  1726. ctime7: 0
  1727. atime0: 0
  1728. atime1: 65535
  1729. atime2: 0
  1730. atime3: 0
  1731. atime4: 0
  1732. atime5: 0
  1733. atime6: 0
  1734. atime7: 0
  1735. m_NumColorKeys: 2
  1736. m_NumAlphaKeys: 2
  1737. minGradient:
  1738. key0:
  1739. serializedVersion: 2
  1740. rgba: 4294967295
  1741. key1:
  1742. serializedVersion: 2
  1743. rgba: 4294967295
  1744. key2:
  1745. serializedVersion: 2
  1746. rgba: 0
  1747. key3:
  1748. serializedVersion: 2
  1749. rgba: 0
  1750. key4:
  1751. serializedVersion: 2
  1752. rgba: 0
  1753. key5:
  1754. serializedVersion: 2
  1755. rgba: 0
  1756. key6:
  1757. serializedVersion: 2
  1758. rgba: 0
  1759. key7:
  1760. serializedVersion: 2
  1761. rgba: 0
  1762. ctime0: 0
  1763. ctime1: 65535
  1764. ctime2: 0
  1765. ctime3: 0
  1766. ctime4: 0
  1767. ctime5: 0
  1768. ctime6: 0
  1769. ctime7: 0
  1770. atime0: 0
  1771. atime1: 65535
  1772. atime2: 0
  1773. atime3: 0
  1774. atime4: 0
  1775. atime5: 0
  1776. atime6: 0
  1777. atime7: 0
  1778. m_NumColorKeys: 2
  1779. m_NumAlphaKeys: 2
  1780. minColor: {r: 1, g: 1, b: 1, a: 1}
  1781. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1782. minMaxState: 1
  1783. range: {x: 0, y: 1}
  1784. CollisionModule:
  1785. enabled: 0
  1786. serializedVersion: 3
  1787. type: 0
  1788. collisionMode: 0
  1789. plane0: {fileID: 0}
  1790. plane1: {fileID: 0}
  1791. plane2: {fileID: 0}
  1792. plane3: {fileID: 0}
  1793. plane4: {fileID: 0}
  1794. plane5: {fileID: 0}
  1795. m_Dampen:
  1796. scalar: 0
  1797. maxCurve:
  1798. serializedVersion: 2
  1799. m_Curve:
  1800. - time: 0
  1801. value: 1
  1802. inSlope: 0
  1803. outSlope: 0
  1804. tangentMode: 0
  1805. - time: 1
  1806. value: 1
  1807. inSlope: 0
  1808. outSlope: 0
  1809. tangentMode: 0
  1810. m_PreInfinity: 2
  1811. m_PostInfinity: 2
  1812. m_RotationOrder: 4
  1813. minCurve:
  1814. serializedVersion: 2
  1815. m_Curve:
  1816. - time: 0
  1817. value: 0
  1818. inSlope: 0
  1819. outSlope: 0
  1820. tangentMode: 0
  1821. - time: 1
  1822. value: 0
  1823. inSlope: 0
  1824. outSlope: 0
  1825. tangentMode: 0
  1826. m_PreInfinity: 2
  1827. m_PostInfinity: 2
  1828. m_RotationOrder: 4
  1829. minMaxState: 0
  1830. m_Bounce:
  1831. scalar: 1
  1832. maxCurve:
  1833. serializedVersion: 2
  1834. m_Curve:
  1835. - time: 0
  1836. value: 1
  1837. inSlope: 0
  1838. outSlope: 0
  1839. tangentMode: 0
  1840. - time: 1
  1841. value: 1
  1842. inSlope: 0
  1843. outSlope: 0
  1844. tangentMode: 0
  1845. m_PreInfinity: 2
  1846. m_PostInfinity: 2
  1847. m_RotationOrder: 4
  1848. minCurve:
  1849. serializedVersion: 2
  1850. m_Curve:
  1851. - time: 0
  1852. value: 0
  1853. inSlope: 0
  1854. outSlope: 0
  1855. tangentMode: 0
  1856. - time: 1
  1857. value: 0
  1858. inSlope: 0
  1859. outSlope: 0
  1860. tangentMode: 0
  1861. m_PreInfinity: 2
  1862. m_PostInfinity: 2
  1863. m_RotationOrder: 4
  1864. minMaxState: 0
  1865. m_EnergyLossOnCollision:
  1866. scalar: 0
  1867. maxCurve:
  1868. serializedVersion: 2
  1869. m_Curve:
  1870. - time: 0
  1871. value: 1
  1872. inSlope: 0
  1873. outSlope: 0
  1874. tangentMode: 0
  1875. - time: 1
  1876. value: 1
  1877. inSlope: 0
  1878. outSlope: 0
  1879. tangentMode: 0
  1880. m_PreInfinity: 2
  1881. m_PostInfinity: 2
  1882. m_RotationOrder: 4
  1883. minCurve:
  1884. serializedVersion: 2
  1885. m_Curve:
  1886. - time: 0
  1887. value: 0
  1888. inSlope: 0
  1889. outSlope: 0
  1890. tangentMode: 0
  1891. - time: 1
  1892. value: 0
  1893. inSlope: 0
  1894. outSlope: 0
  1895. tangentMode: 0
  1896. m_PreInfinity: 2
  1897. m_PostInfinity: 2
  1898. m_RotationOrder: 4
  1899. minMaxState: 0
  1900. minKillSpeed: 0
  1901. maxKillSpeed: 10000
  1902. radiusScale: 1
  1903. collidesWith:
  1904. serializedVersion: 2
  1905. m_Bits: 4294967295
  1906. maxCollisionShapes: 256
  1907. quality: 0
  1908. voxelSize: 0.5
  1909. collisionMessages: 0
  1910. collidesWithDynamic: 1
  1911. interiorCollisions: 1
  1912. TriggerModule:
  1913. enabled: 0
  1914. collisionShape0: {fileID: 0}
  1915. collisionShape1: {fileID: 0}
  1916. collisionShape2: {fileID: 0}
  1917. collisionShape3: {fileID: 0}
  1918. collisionShape4: {fileID: 0}
  1919. collisionShape5: {fileID: 0}
  1920. inside: 1
  1921. outside: 0
  1922. enter: 0
  1923. exit: 0
  1924. radiusScale: 1
  1925. SubModule:
  1926. enabled: 0
  1927. subEmitterBirth: {fileID: 0}
  1928. subEmitterBirth1: {fileID: 0}
  1929. subEmitterCollision: {fileID: 0}
  1930. subEmitterCollision1: {fileID: 0}
  1931. subEmitterDeath: {fileID: 0}
  1932. subEmitterDeath1: {fileID: 0}
  1933. --- !u!198 &19861084
  1934. ParticleSystem:
  1935. m_ObjectHideFlags: 1
  1936. m_PrefabParentObject: {fileID: 0}
  1937. m_PrefabInternal: {fileID: 100100000}
  1938. m_GameObject: {fileID: 156090}
  1939. serializedVersion: 4
  1940. lengthInSec: 2
  1941. startDelay:
  1942. scalar: 0
  1943. maxCurve:
  1944. serializedVersion: 2
  1945. m_Curve:
  1946. - time: 0
  1947. value: 1
  1948. inSlope: 0
  1949. outSlope: 0
  1950. tangentMode: 0
  1951. - time: 1
  1952. value: 1
  1953. inSlope: 0
  1954. outSlope: 0
  1955. tangentMode: 0
  1956. m_PreInfinity: 2
  1957. m_PostInfinity: 2
  1958. m_RotationOrder: 4
  1959. minCurve:
  1960. serializedVersion: 2
  1961. m_Curve:
  1962. - time: 0
  1963. value: 0
  1964. inSlope: 0
  1965. outSlope: 0
  1966. tangentMode: 0
  1967. - time: 1
  1968. value: 0
  1969. inSlope: 0
  1970. outSlope: 0
  1971. tangentMode: 0
  1972. m_PreInfinity: 2
  1973. m_PostInfinity: 2
  1974. m_RotationOrder: 4
  1975. minMaxState: 0
  1976. speed: 1
  1977. looping: 1
  1978. prewarm: 0
  1979. playOnAwake: 1
  1980. moveWithTransform: 0
  1981. autoRandomSeed: 1
  1982. scalingMode: 2
  1983. randomSeed: 1591167170
  1984. InitialModule:
  1985. serializedVersion: 2
  1986. enabled: 1
  1987. startLifetime:
  1988. scalar: 0.7
  1989. maxCurve:
  1990. serializedVersion: 2
  1991. m_Curve:
  1992. - time: 0
  1993. value: 0.42857146
  1994. inSlope: 0
  1995. outSlope: 0
  1996. tangentMode: 0
  1997. m_PreInfinity: 2
  1998. m_PostInfinity: 2
  1999. m_RotationOrder: 4
  2000. minCurve:
  2001. serializedVersion: 2
  2002. m_Curve:
  2003. - time: 0
  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. minMaxState: 3
  2012. startSpeed:
  2013. scalar: 0.029495593
  2014. maxCurve:
  2015. serializedVersion: 2
  2016. m_Curve:
  2017. - time: 0
  2018. value: 1
  2019. inSlope: 0
  2020. outSlope: 0
  2021. tangentMode: 0
  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. minCurve:
  2031. serializedVersion: 2
  2032. m_Curve:
  2033. - time: 0
  2034. value: 0
  2035. inSlope: 0
  2036. outSlope: 0
  2037. tangentMode: 0
  2038. - time: 1
  2039. value: 0
  2040. inSlope: 0
  2041. outSlope: 0
  2042. tangentMode: 0
  2043. m_PreInfinity: 2
  2044. m_PostInfinity: 2
  2045. m_RotationOrder: 4
  2046. minMaxState: 0
  2047. startColor:
  2048. serializedVersion: 2
  2049. maxGradient:
  2050. key0:
  2051. serializedVersion: 2
  2052. rgba: 4278190335
  2053. key1:
  2054. serializedVersion: 2
  2055. rgba: 4278255576
  2056. key2:
  2057. serializedVersion: 2
  2058. rgba: 0
  2059. key3:
  2060. serializedVersion: 2
  2061. rgba: 0
  2062. key4:
  2063. serializedVersion: 2
  2064. rgba: 0
  2065. key5:
  2066. serializedVersion: 2
  2067. rgba: 0
  2068. key6:
  2069. serializedVersion: 2
  2070. rgba: 0
  2071. key7:
  2072. serializedVersion: 2
  2073. rgba: 0
  2074. ctime0: 0
  2075. ctime1: 65535
  2076. ctime2: 0
  2077. ctime3: 0
  2078. ctime4: 0
  2079. ctime5: 0
  2080. ctime6: 0
  2081. ctime7: 0
  2082. atime0: 0
  2083. atime1: 65535
  2084. atime2: 0
  2085. atime3: 0
  2086. atime4: 0
  2087. atime5: 0
  2088. atime6: 0
  2089. atime7: 0
  2090. m_NumColorKeys: 2
  2091. m_NumAlphaKeys: 2
  2092. minGradient:
  2093. key0:
  2094. serializedVersion: 2
  2095. rgba: 4278255576
  2096. key1:
  2097. serializedVersion: 2
  2098. rgba: 4278190335
  2099. key2:
  2100. serializedVersion: 2
  2101. rgba: 0
  2102. key3:
  2103. serializedVersion: 2
  2104. rgba: 0
  2105. key4:
  2106. serializedVersion: 2
  2107. rgba: 0
  2108. key5:
  2109. serializedVersion: 2
  2110. rgba: 0
  2111. key6:
  2112. serializedVersion: 2
  2113. rgba: 0
  2114. key7:
  2115. serializedVersion: 2
  2116. rgba: 0
  2117. ctime0: 0
  2118. ctime1: 65535
  2119. ctime2: 0
  2120. ctime3: 0
  2121. ctime4: 0
  2122. ctime5: 0
  2123. ctime6: 0
  2124. ctime7: 0
  2125. atime0: 0
  2126. atime1: 65535
  2127. atime2: 0
  2128. atime3: 0
  2129. atime4: 0
  2130. atime5: 0
  2131. atime6: 0
  2132. atime7: 0
  2133. m_NumColorKeys: 2
  2134. m_NumAlphaKeys: 2
  2135. minColor: {r: 1, g: 0.6509804, b: 0, a: 1}
  2136. maxColor: {r: 1, g: 0.35686275, b: 0, a: 1}
  2137. minMaxState: 2
  2138. startSize:
  2139. scalar: 0.21645959
  2140. maxCurve:
  2141. serializedVersion: 2
  2142. m_Curve:
  2143. - time: 0
  2144. value: 1
  2145. inSlope: 0
  2146. outSlope: 0
  2147. tangentMode: 0
  2148. m_PreInfinity: 2
  2149. m_PostInfinity: 2
  2150. m_RotationOrder: 4
  2151. minCurve:
  2152. serializedVersion: 2
  2153. m_Curve:
  2154. - time: 0
  2155. value: 0.04395604
  2156. inSlope: 0
  2157. outSlope: 0
  2158. tangentMode: 0
  2159. m_PreInfinity: 2
  2160. m_PostInfinity: 2
  2161. m_RotationOrder: 4
  2162. minMaxState: 3
  2163. startSizeY:
  2164. scalar: 1
  2165. maxCurve:
  2166. serializedVersion: 2
  2167. m_Curve:
  2168. - time: 0
  2169. value: 1
  2170. inSlope: 0
  2171. outSlope: 0
  2172. tangentMode: 0
  2173. - time: 1
  2174. value: 1
  2175. inSlope: 0
  2176. outSlope: 0
  2177. tangentMode: 0
  2178. m_PreInfinity: 2
  2179. m_PostInfinity: 2
  2180. m_RotationOrder: 4
  2181. minCurve:
  2182. serializedVersion: 2
  2183. m_Curve:
  2184. - time: 0
  2185. value: 0
  2186. inSlope: 0
  2187. outSlope: 0
  2188. tangentMode: 0
  2189. - time: 1
  2190. value: 0
  2191. inSlope: 0
  2192. outSlope: 0
  2193. tangentMode: 0
  2194. m_PreInfinity: 2
  2195. m_PostInfinity: 2
  2196. m_RotationOrder: 4
  2197. minMaxState: 0
  2198. startSizeZ:
  2199. scalar: 1
  2200. maxCurve:
  2201. serializedVersion: 2
  2202. m_Curve:
  2203. - time: 0
  2204. value: 1
  2205. inSlope: 0
  2206. outSlope: 0
  2207. tangentMode: 0
  2208. - time: 1
  2209. value: 1
  2210. inSlope: 0
  2211. outSlope: 0
  2212. tangentMode: 0
  2213. m_PreInfinity: 2
  2214. m_PostInfinity: 2
  2215. m_RotationOrder: 4
  2216. minCurve:
  2217. serializedVersion: 2
  2218. m_Curve:
  2219. - time: 0
  2220. value: 0
  2221. inSlope: 0
  2222. outSlope: 0
  2223. tangentMode: 0
  2224. - time: 1
  2225. value: 0
  2226. inSlope: 0
  2227. outSlope: 0
  2228. tangentMode: 0
  2229. m_PreInfinity: 2
  2230. m_PostInfinity: 2
  2231. m_RotationOrder: 4
  2232. minMaxState: 0
  2233. startRotationX:
  2234. scalar: 0
  2235. maxCurve:
  2236. serializedVersion: 2
  2237. m_Curve:
  2238. - time: 0
  2239. value: 1
  2240. inSlope: 0
  2241. outSlope: 0
  2242. tangentMode: 0
  2243. - time: 1
  2244. value: 1
  2245. inSlope: 0
  2246. outSlope: 0
  2247. tangentMode: 0
  2248. m_PreInfinity: 2
  2249. m_PostInfinity: 2
  2250. m_RotationOrder: 4
  2251. minCurve:
  2252. serializedVersion: 2
  2253. m_Curve:
  2254. - time: 0
  2255. value: 0
  2256. inSlope: 0
  2257. outSlope: 0
  2258. tangentMode: 0
  2259. - time: 1
  2260. value: 0
  2261. inSlope: 0
  2262. outSlope: 0
  2263. tangentMode: 0
  2264. m_PreInfinity: 2
  2265. m_PostInfinity: 2
  2266. m_RotationOrder: 4
  2267. minMaxState: 0
  2268. startRotationY:
  2269. scalar: 0
  2270. maxCurve:
  2271. serializedVersion: 2
  2272. m_Curve:
  2273. - time: 0
  2274. value: 1
  2275. inSlope: 0
  2276. outSlope: 0
  2277. tangentMode: 0
  2278. - time: 1
  2279. value: 1
  2280. inSlope: 0
  2281. outSlope: 0
  2282. tangentMode: 0
  2283. m_PreInfinity: 2
  2284. m_PostInfinity: 2
  2285. m_RotationOrder: 4
  2286. minCurve:
  2287. serializedVersion: 2
  2288. m_Curve:
  2289. - time: 0
  2290. value: 0
  2291. inSlope: 0
  2292. outSlope: 0
  2293. tangentMode: 0
  2294. - time: 1
  2295. value: 0
  2296. inSlope: 0
  2297. outSlope: 0
  2298. tangentMode: 0
  2299. m_PreInfinity: 2
  2300. m_PostInfinity: 2
  2301. m_RotationOrder: 4
  2302. minMaxState: 0
  2303. startRotation:
  2304. scalar: 62.831852
  2305. maxCurve:
  2306. serializedVersion: 2
  2307. m_Curve:
  2308. - time: 0
  2309. value: 1
  2310. inSlope: 0
  2311. outSlope: 0
  2312. tangentMode: 0
  2313. m_PreInfinity: 2
  2314. m_PostInfinity: 2
  2315. m_RotationOrder: 4
  2316. minCurve:
  2317. serializedVersion: 2
  2318. m_Curve:
  2319. - time: 0
  2320. value: 0
  2321. inSlope: 0
  2322. outSlope: 0
  2323. tangentMode: 0
  2324. m_PreInfinity: 2
  2325. m_PostInfinity: 2
  2326. m_RotationOrder: 4
  2327. minMaxState: 3
  2328. randomizeRotationDirection: 0
  2329. gravityModifier: -0.13778101
  2330. maxNumParticles: 1000
  2331. size3D: 0
  2332. rotation3D: 0
  2333. ShapeModule:
  2334. serializedVersion: 2
  2335. enabled: 1
  2336. type: 0
  2337. radius: 0.07411933
  2338. angle: 24.17
  2339. length: 5
  2340. boxX: 0.07776
  2341. boxY: 0.07776
  2342. boxZ: 0.07776
  2343. arc: 360
  2344. placementMode: 0
  2345. m_Mesh: {fileID: 0}
  2346. m_MeshRenderer: {fileID: 0}
  2347. m_SkinnedMeshRenderer: {fileID: 0}
  2348. m_MeshMaterialIndex: 0
  2349. m_MeshNormalOffset: 0
  2350. m_UseMeshMaterialIndex: 0
  2351. m_UseMeshColors: 1
  2352. randomDirection: 0
  2353. EmissionModule:
  2354. enabled: 1
  2355. serializedVersion: 2
  2356. m_Type: 0
  2357. rate:
  2358. scalar: 120
  2359. maxCurve:
  2360. serializedVersion: 2
  2361. m_Curve:
  2362. - time: 0
  2363. value: 1
  2364. inSlope: 0
  2365. outSlope: 0
  2366. tangentMode: 0
  2367. - time: 1
  2368. value: 1
  2369. inSlope: 0
  2370. outSlope: 0
  2371. tangentMode: 0
  2372. m_PreInfinity: 2
  2373. m_PostInfinity: 2
  2374. m_RotationOrder: 4
  2375. minCurve:
  2376. serializedVersion: 2
  2377. m_Curve:
  2378. - time: 0
  2379. value: 0
  2380. inSlope: 0
  2381. outSlope: 0
  2382. tangentMode: 0
  2383. - time: 1
  2384. value: 0
  2385. inSlope: 0
  2386. outSlope: 0
  2387. tangentMode: 0
  2388. m_PreInfinity: 2
  2389. m_PostInfinity: 2
  2390. m_RotationOrder: 4
  2391. minMaxState: 0
  2392. cnt0: 30
  2393. cnt1: 30
  2394. cnt2: 30
  2395. cnt3: 30
  2396. cntmax0: 30
  2397. cntmax1: 30
  2398. cntmax2: 30
  2399. cntmax3: 30
  2400. time0: 0
  2401. time1: 0
  2402. time2: 0
  2403. time3: 0
  2404. m_BurstCount: 0
  2405. SizeModule:
  2406. enabled: 1
  2407. curve:
  2408. scalar: 1
  2409. maxCurve:
  2410. serializedVersion: 2
  2411. m_Curve:
  2412. - time: 0
  2413. value: 0.5955056
  2414. inSlope: 0.9877891
  2415. outSlope: 0.9877891
  2416. tangentMode: 10
  2417. - time: 0.12473819
  2418. value: 0.7187206
  2419. inSlope: 0.68753844
  2420. outSlope: 0.68753844
  2421. tangentMode: 10
  2422. - time: 0.56089926
  2423. value: 0.8876405
  2424. inSlope: -0.024771899
  2425. outSlope: -0.024771899
  2426. tangentMode: 10
  2427. - time: 0.8934675
  2428. value: 0.74236417
  2429. inSlope: -3.7026298
  2430. outSlope: -3.7026298
  2431. tangentMode: 10
  2432. - time: 1
  2433. value: 0
  2434. inSlope: -6.968428
  2435. outSlope: -6.968428
  2436. tangentMode: 10
  2437. m_PreInfinity: 2
  2438. m_PostInfinity: 2
  2439. m_RotationOrder: 4
  2440. minCurve:
  2441. serializedVersion: 2
  2442. m_Curve:
  2443. - time: 0
  2444. value: 0
  2445. inSlope: 0
  2446. outSlope: 0
  2447. tangentMode: 0
  2448. - time: 1
  2449. value: 0
  2450. inSlope: 0
  2451. outSlope: 0
  2452. tangentMode: 0
  2453. m_PreInfinity: 2
  2454. m_PostInfinity: 2
  2455. m_RotationOrder: 4
  2456. minMaxState: 1
  2457. y:
  2458. scalar: 1
  2459. maxCurve:
  2460. serializedVersion: 2
  2461. m_Curve:
  2462. - time: 0
  2463. value: 1
  2464. inSlope: 0
  2465. outSlope: 0
  2466. tangentMode: 0
  2467. - time: 1
  2468. value: 1
  2469. inSlope: 0
  2470. outSlope: 0
  2471. tangentMode: 0
  2472. m_PreInfinity: 2
  2473. m_PostInfinity: 2
  2474. m_RotationOrder: 4
  2475. minCurve:
  2476. serializedVersion: 2
  2477. m_Curve:
  2478. - time: 0
  2479. value: 0
  2480. inSlope: 0
  2481. outSlope: 0
  2482. tangentMode: 0
  2483. - time: 1
  2484. value: 0
  2485. inSlope: 0
  2486. outSlope: 0
  2487. tangentMode: 0
  2488. m_PreInfinity: 2
  2489. m_PostInfinity: 2
  2490. m_RotationOrder: 4
  2491. minMaxState: 0
  2492. z:
  2493. scalar: 1
  2494. maxCurve:
  2495. serializedVersion: 2
  2496. m_Curve:
  2497. - time: 0
  2498. value: 1
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 0
  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. - time: 0
  2514. value: 0
  2515. inSlope: 0
  2516. outSlope: 0
  2517. tangentMode: 0
  2518. - time: 1
  2519. value: 0
  2520. inSlope: 0
  2521. outSlope: 0
  2522. tangentMode: 0
  2523. m_PreInfinity: 2
  2524. m_PostInfinity: 2
  2525. m_RotationOrder: 4
  2526. minMaxState: 0
  2527. separateAxes: 0
  2528. RotationModule:
  2529. enabled: 1
  2530. x:
  2531. scalar: 0
  2532. maxCurve:
  2533. serializedVersion: 2
  2534. m_Curve:
  2535. - time: 0
  2536. value: 1
  2537. inSlope: 0
  2538. outSlope: 0
  2539. tangentMode: 0
  2540. - time: 1
  2541. value: 1
  2542. inSlope: 0
  2543. outSlope: 0
  2544. tangentMode: 0
  2545. m_PreInfinity: 2
  2546. m_PostInfinity: 2
  2547. m_RotationOrder: 4
  2548. minCurve:
  2549. serializedVersion: 2
  2550. m_Curve:
  2551. - time: 0
  2552. value: 0
  2553. inSlope: 0
  2554. outSlope: 0
  2555. tangentMode: 0
  2556. - time: 1
  2557. value: 0
  2558. inSlope: 0
  2559. outSlope: 0
  2560. tangentMode: 0
  2561. m_PreInfinity: 2
  2562. m_PostInfinity: 2
  2563. m_RotationOrder: 4
  2564. minMaxState: 0
  2565. y:
  2566. scalar: 0
  2567. maxCurve:
  2568. serializedVersion: 2
  2569. m_Curve:
  2570. - time: 0
  2571. value: 1
  2572. inSlope: 0
  2573. outSlope: 0
  2574. tangentMode: 0
  2575. - time: 1
  2576. value: 1
  2577. inSlope: 0
  2578. outSlope: 0
  2579. tangentMode: 0
  2580. m_PreInfinity: 2
  2581. m_PostInfinity: 2
  2582. m_RotationOrder: 4
  2583. minCurve:
  2584. serializedVersion: 2
  2585. m_Curve:
  2586. - time: 0
  2587. value: 0
  2588. inSlope: 0
  2589. outSlope: 0
  2590. tangentMode: 0
  2591. - time: 1
  2592. value: 0
  2593. inSlope: 0
  2594. outSlope: 0
  2595. tangentMode: 0
  2596. m_PreInfinity: 2
  2597. m_PostInfinity: 2
  2598. m_RotationOrder: 4
  2599. minMaxState: 0
  2600. curve:
  2601. scalar: 69.81317
  2602. maxCurve:
  2603. serializedVersion: 2
  2604. m_Curve:
  2605. - time: 0
  2606. value: 0.011235837
  2607. inSlope: 0
  2608. outSlope: 0
  2609. tangentMode: 0
  2610. - time: 0.5202552
  2611. value: -0.033707872
  2612. inSlope: Infinity
  2613. outSlope: Infinity
  2614. tangentMode: 31
  2615. m_PreInfinity: 2
  2616. m_PostInfinity: 2
  2617. m_RotationOrder: 4
  2618. minCurve:
  2619. serializedVersion: 2
  2620. m_Curve:
  2621. - time: 0
  2622. value: 0.022471905
  2623. inSlope: 0
  2624. outSlope: 0
  2625. tangentMode: 0
  2626. - time: 0.5413078
  2627. value: 0.08988763
  2628. inSlope: Infinity
  2629. outSlope: Infinity
  2630. tangentMode: 31
  2631. m_PreInfinity: 2
  2632. m_PostInfinity: 2
  2633. m_RotationOrder: 4
  2634. minMaxState: 2
  2635. separateAxes: 0
  2636. ColorModule:
  2637. enabled: 0
  2638. gradient:
  2639. serializedVersion: 2
  2640. maxGradient:
  2641. key0:
  2642. serializedVersion: 2
  2643. rgba: 4294967295
  2644. key1:
  2645. serializedVersion: 2
  2646. rgba: 4278220543
  2647. key2:
  2648. serializedVersion: 2
  2649. rgba: 4278190080
  2650. key3:
  2651. serializedVersion: 2
  2652. rgba: 0
  2653. key4:
  2654. serializedVersion: 2
  2655. rgba: 0
  2656. key5:
  2657. serializedVersion: 2
  2658. rgba: 0
  2659. key6:
  2660. serializedVersion: 2
  2661. rgba: 0
  2662. key7:
  2663. serializedVersion: 2
  2664. rgba: 0
  2665. ctime0: 0
  2666. ctime1: 65535
  2667. ctime2: 0
  2668. ctime3: 0
  2669. ctime4: 0
  2670. ctime5: 0
  2671. ctime6: 0
  2672. ctime7: 0
  2673. atime0: 0
  2674. atime1: 65535
  2675. atime2: 58211
  2676. atime3: 0
  2677. atime4: 0
  2678. atime5: 0
  2679. atime6: 0
  2680. atime7: 0
  2681. m_NumColorKeys: 2
  2682. m_NumAlphaKeys: 2
  2683. minGradient:
  2684. key0:
  2685. serializedVersion: 2
  2686. rgba: 4294967295
  2687. key1:
  2688. serializedVersion: 2
  2689. rgba: 4278255615
  2690. key2:
  2691. serializedVersion: 2
  2692. rgba: 4278190080
  2693. key3:
  2694. serializedVersion: 2
  2695. rgba: 0
  2696. key4:
  2697. serializedVersion: 2
  2698. rgba: 0
  2699. key5:
  2700. serializedVersion: 2
  2701. rgba: 0
  2702. key6:
  2703. serializedVersion: 2
  2704. rgba: 0
  2705. key7:
  2706. serializedVersion: 2
  2707. rgba: 0
  2708. ctime0: 0
  2709. ctime1: 65535
  2710. ctime2: 0
  2711. ctime3: 0
  2712. ctime4: 0
  2713. ctime5: 0
  2714. ctime6: 0
  2715. ctime7: 0
  2716. atime0: 0
  2717. atime1: 65535
  2718. atime2: 58211
  2719. atime3: 0
  2720. atime4: 0
  2721. atime5: 0
  2722. atime6: 0
  2723. atime7: 0
  2724. m_NumColorKeys: 2
  2725. m_NumAlphaKeys: 2
  2726. minColor: {r: 1, g: 1, b: 1, a: 1}
  2727. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2728. minMaxState: 3
  2729. UVModule:
  2730. enabled: 0
  2731. frameOverTime:
  2732. scalar: 0.9999
  2733. maxCurve:
  2734. serializedVersion: 2
  2735. m_Curve:
  2736. - time: 0
  2737. value: 0
  2738. inSlope: -0
  2739. outSlope: -0
  2740. tangentMode: 0
  2741. - time: 0.86194074
  2742. value: 0.247191
  2743. inSlope: -0.8952643
  2744. outSlope: -0.8952643
  2745. tangentMode: 0
  2746. - time: 1
  2747. value: 1
  2748. inSlope: 5.452796
  2749. outSlope: 5.452796
  2750. tangentMode: 10
  2751. m_PreInfinity: 2
  2752. m_PostInfinity: 2
  2753. m_RotationOrder: 4
  2754. minCurve:
  2755. serializedVersion: 2
  2756. m_Curve:
  2757. - time: 0
  2758. value: 0
  2759. inSlope: 0
  2760. outSlope: 1
  2761. tangentMode: 0
  2762. - time: 1
  2763. value: 1
  2764. inSlope: 1
  2765. outSlope: 0
  2766. tangentMode: 0
  2767. m_PreInfinity: 2
  2768. m_PostInfinity: 2
  2769. m_RotationOrder: 4
  2770. minMaxState: 1
  2771. startFrame:
  2772. scalar: 0
  2773. maxCurve:
  2774. serializedVersion: 2
  2775. m_Curve:
  2776. - time: 0
  2777. value: 1
  2778. inSlope: 0
  2779. outSlope: 0
  2780. tangentMode: 0
  2781. - time: 1
  2782. value: 1
  2783. inSlope: 0
  2784. outSlope: 0
  2785. tangentMode: 0
  2786. m_PreInfinity: 2
  2787. m_PostInfinity: 2
  2788. m_RotationOrder: 4
  2789. minCurve:
  2790. serializedVersion: 2
  2791. m_Curve:
  2792. - time: 0
  2793. value: 0
  2794. inSlope: 0
  2795. outSlope: 0
  2796. tangentMode: 0
  2797. - time: 1
  2798. value: 0
  2799. inSlope: 0
  2800. outSlope: 0
  2801. tangentMode: 0
  2802. m_PreInfinity: 2
  2803. m_PostInfinity: 2
  2804. m_RotationOrder: 4
  2805. minMaxState: 0
  2806. tilesX: 2
  2807. tilesY: 2
  2808. animationType: 0
  2809. rowIndex: 0
  2810. cycles: 1
  2811. uvChannelMask: -1
  2812. randomRow: 1
  2813. VelocityModule:
  2814. enabled: 0
  2815. x:
  2816. scalar: 0
  2817. maxCurve:
  2818. serializedVersion: 2
  2819. m_Curve:
  2820. - time: 0
  2821. value: 1
  2822. inSlope: 0
  2823. outSlope: 0
  2824. tangentMode: 0
  2825. - time: 1
  2826. value: 1
  2827. inSlope: 0
  2828. outSlope: 0
  2829. tangentMode: 0
  2830. m_PreInfinity: 2
  2831. m_PostInfinity: 2
  2832. m_RotationOrder: 4
  2833. minCurve:
  2834. serializedVersion: 2
  2835. m_Curve:
  2836. - time: 0
  2837. value: 0
  2838. inSlope: 0
  2839. outSlope: 0
  2840. tangentMode: 0
  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. minMaxState: 0
  2850. y:
  2851. scalar: 0
  2852. maxCurve:
  2853. serializedVersion: 2
  2854. m_Curve:
  2855. - time: 0
  2856. value: 1
  2857. inSlope: 0
  2858. outSlope: 0
  2859. tangentMode: 0
  2860. - time: 1
  2861. value: 1
  2862. inSlope: 0
  2863. outSlope: 0
  2864. tangentMode: 0
  2865. m_PreInfinity: 2
  2866. m_PostInfinity: 2
  2867. m_RotationOrder: 4
  2868. minCurve:
  2869. serializedVersion: 2
  2870. m_Curve:
  2871. - time: 0
  2872. value: 0
  2873. inSlope: 0
  2874. outSlope: 0
  2875. tangentMode: 0
  2876. - time: 1
  2877. value: 0
  2878. inSlope: 0
  2879. outSlope: 0
  2880. tangentMode: 0
  2881. m_PreInfinity: 2
  2882. m_PostInfinity: 2
  2883. m_RotationOrder: 4
  2884. minMaxState: 0
  2885. z:
  2886. scalar: 0
  2887. maxCurve:
  2888. serializedVersion: 2
  2889. m_Curve:
  2890. - time: 0
  2891. value: 1
  2892. inSlope: 0
  2893. outSlope: 0
  2894. tangentMode: 0
  2895. - time: 1
  2896. value: 1
  2897. inSlope: 0
  2898. outSlope: 0
  2899. tangentMode: 0
  2900. m_PreInfinity: 2
  2901. m_PostInfinity: 2
  2902. m_RotationOrder: 4
  2903. minCurve:
  2904. serializedVersion: 2
  2905. m_Curve:
  2906. - time: 0
  2907. value: 0
  2908. inSlope: 0
  2909. outSlope: 0
  2910. tangentMode: 0
  2911. - time: 1
  2912. value: 0
  2913. inSlope: 0
  2914. outSlope: 0
  2915. tangentMode: 0
  2916. m_PreInfinity: 2
  2917. m_PostInfinity: 2
  2918. m_RotationOrder: 4
  2919. minMaxState: 0
  2920. inWorldSpace: 0
  2921. InheritVelocityModule:
  2922. enabled: 0
  2923. m_Mode: 0
  2924. m_Curve:
  2925. scalar: 0
  2926. maxCurve:
  2927. serializedVersion: 2
  2928. m_Curve:
  2929. - time: 0
  2930. value: 1
  2931. inSlope: 0
  2932. outSlope: 0
  2933. tangentMode: 0
  2934. - time: 1
  2935. value: 1
  2936. inSlope: 0
  2937. outSlope: 0
  2938. tangentMode: 0
  2939. m_PreInfinity: 2
  2940. m_PostInfinity: 2
  2941. m_RotationOrder: 4
  2942. minCurve:
  2943. serializedVersion: 2
  2944. m_Curve:
  2945. - time: 0
  2946. value: 0
  2947. inSlope: 0
  2948. outSlope: 0
  2949. tangentMode: 0
  2950. - time: 1
  2951. value: 0
  2952. inSlope: 0
  2953. outSlope: 0
  2954. tangentMode: 0
  2955. m_PreInfinity: 2
  2956. m_PostInfinity: 2
  2957. m_RotationOrder: 4
  2958. minMaxState: 0
  2959. ForceModule:
  2960. enabled: 0
  2961. x:
  2962. scalar: 30.589975
  2963. maxCurve:
  2964. serializedVersion: 2
  2965. m_Curve:
  2966. - time: 0
  2967. value: 1
  2968. inSlope: 0
  2969. outSlope: 0
  2970. tangentMode: 0
  2971. m_PreInfinity: 2
  2972. m_PostInfinity: 2
  2973. m_RotationOrder: 4
  2974. minCurve:
  2975. serializedVersion: 2
  2976. m_Curve:
  2977. - time: 0
  2978. value: -1
  2979. inSlope: 0
  2980. outSlope: 0
  2981. tangentMode: 0
  2982. m_PreInfinity: 2
  2983. m_PostInfinity: 2
  2984. m_RotationOrder: 4
  2985. minMaxState: 3
  2986. y:
  2987. scalar: 31.813574
  2988. maxCurve:
  2989. serializedVersion: 2
  2990. m_Curve:
  2991. - time: 0
  2992. value: 1
  2993. inSlope: 0
  2994. outSlope: 0
  2995. tangentMode: 0
  2996. m_PreInfinity: 2
  2997. m_PostInfinity: 2
  2998. m_RotationOrder: 4
  2999. minCurve:
  3000. serializedVersion: 2
  3001. m_Curve:
  3002. - time: 0
  3003. value: -0.96153843
  3004. inSlope: 0
  3005. outSlope: 0
  3006. tangentMode: 0
  3007. m_PreInfinity: 2
  3008. m_PostInfinity: 2
  3009. m_RotationOrder: 4
  3010. minMaxState: 3
  3011. z:
  3012. scalar: 30.589975
  3013. maxCurve:
  3014. serializedVersion: 2
  3015. m_Curve:
  3016. - time: 0
  3017. value: 1
  3018. inSlope: 0
  3019. outSlope: 0
  3020. tangentMode: 0
  3021. m_PreInfinity: 2
  3022. m_PostInfinity: 2
  3023. m_RotationOrder: 4
  3024. minCurve:
  3025. serializedVersion: 2
  3026. m_Curve:
  3027. - time: 0
  3028. value: -1
  3029. inSlope: 0
  3030. outSlope: 0
  3031. tangentMode: 0
  3032. m_PreInfinity: 2
  3033. m_PostInfinity: 2
  3034. m_RotationOrder: 4
  3035. minMaxState: 3
  3036. inWorldSpace: 1
  3037. randomizePerFrame: 1
  3038. ExternalForcesModule:
  3039. enabled: 0
  3040. multiplier: 1
  3041. ClampVelocityModule:
  3042. enabled: 0
  3043. x:
  3044. scalar: 0.6117995
  3045. maxCurve:
  3046. serializedVersion: 2
  3047. m_Curve:
  3048. - time: 0
  3049. value: 1
  3050. inSlope: 0
  3051. outSlope: 0
  3052. tangentMode: 0
  3053. - time: 1
  3054. value: 1
  3055. inSlope: 0
  3056. outSlope: 0
  3057. tangentMode: 0
  3058. m_PreInfinity: 2
  3059. m_PostInfinity: 2
  3060. m_RotationOrder: 4
  3061. minCurve:
  3062. serializedVersion: 2
  3063. m_Curve:
  3064. - time: 0
  3065. value: 0
  3066. inSlope: 0
  3067. outSlope: 0
  3068. tangentMode: 0
  3069. - time: 1
  3070. value: 0
  3071. inSlope: 0
  3072. outSlope: 0
  3073. tangentMode: 0
  3074. m_PreInfinity: 2
  3075. m_PostInfinity: 2
  3076. m_RotationOrder: 4
  3077. minMaxState: 0
  3078. y:
  3079. scalar: 0.6117995
  3080. maxCurve:
  3081. serializedVersion: 2
  3082. m_Curve:
  3083. - time: 0
  3084. value: 1
  3085. inSlope: 0
  3086. outSlope: 0
  3087. tangentMode: 0
  3088. - time: 1
  3089. value: 1
  3090. inSlope: 0
  3091. outSlope: 0
  3092. tangentMode: 0
  3093. m_PreInfinity: 2
  3094. m_PostInfinity: 2
  3095. m_RotationOrder: 4
  3096. minCurve:
  3097. serializedVersion: 2
  3098. m_Curve:
  3099. - time: 0
  3100. value: 0
  3101. inSlope: 0
  3102. outSlope: 0
  3103. tangentMode: 0
  3104. - time: 1
  3105. value: 0
  3106. inSlope: 0
  3107. outSlope: 0
  3108. tangentMode: 0
  3109. m_PreInfinity: 2
  3110. m_PostInfinity: 2
  3111. m_RotationOrder: 4
  3112. minMaxState: 0
  3113. z:
  3114. scalar: 0.6117995
  3115. maxCurve:
  3116. serializedVersion: 2
  3117. m_Curve:
  3118. - time: 0
  3119. value: 1
  3120. inSlope: 0
  3121. outSlope: 0
  3122. tangentMode: 0
  3123. - time: 1
  3124. value: 1
  3125. inSlope: 0
  3126. outSlope: 0
  3127. tangentMode: 0
  3128. m_PreInfinity: 2
  3129. m_PostInfinity: 2
  3130. m_RotationOrder: 4
  3131. minCurve:
  3132. serializedVersion: 2
  3133. m_Curve:
  3134. - time: 0
  3135. value: 0
  3136. inSlope: 0
  3137. outSlope: 0
  3138. tangentMode: 0
  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. minMaxState: 0
  3148. magnitude:
  3149. scalar: 5.8732753
  3150. maxCurve:
  3151. serializedVersion: 2
  3152. m_Curve:
  3153. - time: 0
  3154. value: 1
  3155. inSlope: 0.11013458
  3156. outSlope: 0.11013458
  3157. tangentMode: 0
  3158. - time: 1
  3159. value: 0.011235952
  3160. inSlope: -1.4659002
  3161. outSlope: -1.4659002
  3162. tangentMode: 0
  3163. m_PreInfinity: 2
  3164. m_PostInfinity: 2
  3165. m_RotationOrder: 4
  3166. minCurve:
  3167. serializedVersion: 2
  3168. m_Curve:
  3169. - time: 0
  3170. value: 0
  3171. inSlope: 0
  3172. outSlope: 0
  3173. tangentMode: 0
  3174. - time: 1
  3175. value: 0
  3176. inSlope: 0
  3177. outSlope: 0
  3178. tangentMode: 0
  3179. m_PreInfinity: 2
  3180. m_PostInfinity: 2
  3181. m_RotationOrder: 4
  3182. minMaxState: 1
  3183. separateAxis: 0
  3184. inWorldSpace: 0
  3185. dampen: 1
  3186. SizeBySpeedModule:
  3187. enabled: 0
  3188. curve:
  3189. scalar: 1
  3190. maxCurve:
  3191. serializedVersion: 2
  3192. m_Curve:
  3193. - time: 0
  3194. value: 1
  3195. inSlope: 0
  3196. outSlope: 0
  3197. tangentMode: 0
  3198. - time: 1
  3199. value: 0.4494382
  3200. inSlope: -5.33006
  3201. outSlope: -5.33006
  3202. tangentMode: 0
  3203. m_PreInfinity: 2
  3204. m_PostInfinity: 2
  3205. m_RotationOrder: 4
  3206. minCurve:
  3207. serializedVersion: 2
  3208. m_Curve:
  3209. - time: 0
  3210. value: 0
  3211. inSlope: 0
  3212. outSlope: 0
  3213. tangentMode: 0
  3214. - time: 1
  3215. value: 0
  3216. inSlope: 0
  3217. outSlope: 0
  3218. tangentMode: 0
  3219. m_PreInfinity: 2
  3220. m_PostInfinity: 2
  3221. m_RotationOrder: 4
  3222. minMaxState: 1
  3223. y:
  3224. scalar: 1
  3225. maxCurve:
  3226. serializedVersion: 2
  3227. m_Curve:
  3228. - time: 0
  3229. value: 1
  3230. inSlope: 0
  3231. outSlope: 0
  3232. tangentMode: 0
  3233. - time: 1
  3234. value: 1
  3235. inSlope: 0
  3236. outSlope: 0
  3237. tangentMode: 0
  3238. m_PreInfinity: 2
  3239. m_PostInfinity: 2
  3240. m_RotationOrder: 4
  3241. minCurve:
  3242. serializedVersion: 2
  3243. m_Curve:
  3244. - time: 0
  3245. value: 0
  3246. inSlope: 0
  3247. outSlope: 0
  3248. tangentMode: 0
  3249. - time: 1
  3250. value: 0
  3251. inSlope: 0
  3252. outSlope: 0
  3253. tangentMode: 0
  3254. m_PreInfinity: 2
  3255. m_PostInfinity: 2
  3256. m_RotationOrder: 4
  3257. minMaxState: 0
  3258. z:
  3259. scalar: 1
  3260. maxCurve:
  3261. serializedVersion: 2
  3262. m_Curve:
  3263. - time: 0
  3264. value: 1
  3265. inSlope: 0
  3266. outSlope: 0
  3267. tangentMode: 0
  3268. - time: 1
  3269. value: 1
  3270. inSlope: 0
  3271. outSlope: 0
  3272. tangentMode: 0
  3273. m_PreInfinity: 2
  3274. m_PostInfinity: 2
  3275. m_RotationOrder: 4
  3276. minCurve:
  3277. serializedVersion: 2
  3278. m_Curve:
  3279. - time: 0
  3280. value: 0
  3281. inSlope: 0
  3282. outSlope: 0
  3283. tangentMode: 0
  3284. - time: 1
  3285. value: 0
  3286. inSlope: 0
  3287. outSlope: 0
  3288. tangentMode: 0
  3289. m_PreInfinity: 2
  3290. m_PostInfinity: 2
  3291. m_RotationOrder: 4
  3292. minMaxState: 0
  3293. range: {x: 0, y: 1}
  3294. separateAxes: 0
  3295. RotationBySpeedModule:
  3296. enabled: 0
  3297. x:
  3298. scalar: 0
  3299. maxCurve:
  3300. serializedVersion: 2
  3301. m_Curve:
  3302. - time: 0
  3303. value: 1
  3304. inSlope: 0
  3305. outSlope: 0
  3306. tangentMode: 0
  3307. - time: 1
  3308. value: 1
  3309. inSlope: 0
  3310. outSlope: 0
  3311. tangentMode: 0
  3312. m_PreInfinity: 2
  3313. m_PostInfinity: 2
  3314. m_RotationOrder: 4
  3315. minCurve:
  3316. serializedVersion: 2
  3317. m_Curve:
  3318. - time: 0
  3319. value: 0
  3320. inSlope: 0
  3321. outSlope: 0
  3322. tangentMode: 0
  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. minMaxState: 0
  3332. y:
  3333. scalar: 0
  3334. maxCurve:
  3335. serializedVersion: 2
  3336. m_Curve:
  3337. - time: 0
  3338. value: 1
  3339. inSlope: 0
  3340. outSlope: 0
  3341. tangentMode: 0
  3342. - time: 1
  3343. value: 1
  3344. inSlope: 0
  3345. outSlope: 0
  3346. tangentMode: 0
  3347. m_PreInfinity: 2
  3348. m_PostInfinity: 2
  3349. m_RotationOrder: 4
  3350. minCurve:
  3351. serializedVersion: 2
  3352. m_Curve:
  3353. - time: 0
  3354. value: 0
  3355. inSlope: 0
  3356. outSlope: 0
  3357. tangentMode: 0
  3358. - time: 1
  3359. value: 0
  3360. inSlope: 0
  3361. outSlope: 0
  3362. tangentMode: 0
  3363. m_PreInfinity: 2
  3364. m_PostInfinity: 2
  3365. m_RotationOrder: 4
  3366. minMaxState: 0
  3367. curve:
  3368. scalar: 0.7853982
  3369. maxCurve:
  3370. serializedVersion: 2
  3371. m_Curve:
  3372. - time: 0
  3373. value: 1
  3374. inSlope: 0
  3375. outSlope: 0
  3376. tangentMode: 0
  3377. - time: 1
  3378. value: 1
  3379. inSlope: 0
  3380. outSlope: 0
  3381. tangentMode: 0
  3382. m_PreInfinity: 2
  3383. m_PostInfinity: 2
  3384. m_RotationOrder: 4
  3385. minCurve:
  3386. serializedVersion: 2
  3387. m_Curve:
  3388. - time: 0
  3389. value: 0
  3390. inSlope: 0
  3391. outSlope: 0
  3392. tangentMode: 0
  3393. - time: 1
  3394. value: 0
  3395. inSlope: 0
  3396. outSlope: 0
  3397. tangentMode: 0
  3398. m_PreInfinity: 2
  3399. m_PostInfinity: 2
  3400. m_RotationOrder: 4
  3401. minMaxState: 0
  3402. separateAxes: 0
  3403. range: {x: 0, y: 1}
  3404. ColorBySpeedModule:
  3405. enabled: 0
  3406. gradient:
  3407. serializedVersion: 2
  3408. maxGradient:
  3409. key0:
  3410. serializedVersion: 2
  3411. rgba: 4294967295
  3412. key1:
  3413. serializedVersion: 2
  3414. rgba: 4294967295
  3415. key2:
  3416. serializedVersion: 2
  3417. rgba: 0
  3418. key3:
  3419. serializedVersion: 2
  3420. rgba: 0
  3421. key4:
  3422. serializedVersion: 2
  3423. rgba: 0
  3424. key5:
  3425. serializedVersion: 2
  3426. rgba: 0
  3427. key6:
  3428. serializedVersion: 2
  3429. rgba: 0
  3430. key7:
  3431. serializedVersion: 2
  3432. rgba: 0
  3433. ctime0: 0
  3434. ctime1: 65535
  3435. ctime2: 0
  3436. ctime3: 0
  3437. ctime4: 0
  3438. ctime5: 0
  3439. ctime6: 0
  3440. ctime7: 0
  3441. atime0: 0
  3442. atime1: 65535
  3443. atime2: 0
  3444. atime3: 0
  3445. atime4: 0
  3446. atime5: 0
  3447. atime6: 0
  3448. atime7: 0
  3449. m_NumColorKeys: 2
  3450. m_NumAlphaKeys: 2
  3451. minGradient:
  3452. key0:
  3453. serializedVersion: 2
  3454. rgba: 4294967295
  3455. key1:
  3456. serializedVersion: 2
  3457. rgba: 4294967295
  3458. key2:
  3459. serializedVersion: 2
  3460. rgba: 0
  3461. key3:
  3462. serializedVersion: 2
  3463. rgba: 0
  3464. key4:
  3465. serializedVersion: 2
  3466. rgba: 0
  3467. key5:
  3468. serializedVersion: 2
  3469. rgba: 0
  3470. key6:
  3471. serializedVersion: 2
  3472. rgba: 0
  3473. key7:
  3474. serializedVersion: 2
  3475. rgba: 0
  3476. ctime0: 0
  3477. ctime1: 65535
  3478. ctime2: 0
  3479. ctime3: 0
  3480. ctime4: 0
  3481. ctime5: 0
  3482. ctime6: 0
  3483. ctime7: 0
  3484. atime0: 0
  3485. atime1: 65535
  3486. atime2: 0
  3487. atime3: 0
  3488. atime4: 0
  3489. atime5: 0
  3490. atime6: 0
  3491. atime7: 0
  3492. m_NumColorKeys: 2
  3493. m_NumAlphaKeys: 2
  3494. minColor: {r: 1, g: 1, b: 1, a: 1}
  3495. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3496. minMaxState: 1
  3497. range: {x: 0, y: 1}
  3498. CollisionModule:
  3499. enabled: 0
  3500. serializedVersion: 3
  3501. type: 0
  3502. collisionMode: 0
  3503. plane0: {fileID: 0}
  3504. plane1: {fileID: 0}
  3505. plane2: {fileID: 0}
  3506. plane3: {fileID: 0}
  3507. plane4: {fileID: 0}
  3508. plane5: {fileID: 0}
  3509. m_Dampen:
  3510. scalar: 0
  3511. maxCurve:
  3512. serializedVersion: 2
  3513. m_Curve:
  3514. - time: 0
  3515. value: 1
  3516. inSlope: 0
  3517. outSlope: 0
  3518. tangentMode: 0
  3519. - time: 1
  3520. value: 1
  3521. inSlope: 0
  3522. outSlope: 0
  3523. tangentMode: 0
  3524. m_PreInfinity: 2
  3525. m_PostInfinity: 2
  3526. m_RotationOrder: 4
  3527. minCurve:
  3528. serializedVersion: 2
  3529. m_Curve:
  3530. - time: 0
  3531. value: 0
  3532. inSlope: 0
  3533. outSlope: 0
  3534. tangentMode: 0
  3535. - time: 1
  3536. value: 0
  3537. inSlope: 0
  3538. outSlope: 0
  3539. tangentMode: 0
  3540. m_PreInfinity: 2
  3541. m_PostInfinity: 2
  3542. m_RotationOrder: 4
  3543. minMaxState: 0
  3544. m_Bounce:
  3545. scalar: 1
  3546. maxCurve:
  3547. serializedVersion: 2
  3548. m_Curve:
  3549. - time: 0
  3550. value: 1
  3551. inSlope: 0
  3552. outSlope: 0
  3553. tangentMode: 0
  3554. - time: 1
  3555. value: 1
  3556. inSlope: 0
  3557. outSlope: 0
  3558. tangentMode: 0
  3559. m_PreInfinity: 2
  3560. m_PostInfinity: 2
  3561. m_RotationOrder: 4
  3562. minCurve:
  3563. serializedVersion: 2
  3564. m_Curve:
  3565. - time: 0
  3566. value: 0
  3567. inSlope: 0
  3568. outSlope: 0
  3569. tangentMode: 0
  3570. - time: 1
  3571. value: 0
  3572. inSlope: 0
  3573. outSlope: 0
  3574. tangentMode: 0
  3575. m_PreInfinity: 2
  3576. m_PostInfinity: 2
  3577. m_RotationOrder: 4
  3578. minMaxState: 0
  3579. m_EnergyLossOnCollision:
  3580. scalar: 0
  3581. maxCurve:
  3582. serializedVersion: 2
  3583. m_Curve:
  3584. - time: 0
  3585. value: 1
  3586. inSlope: 0
  3587. outSlope: 0
  3588. tangentMode: 0
  3589. - time: 1
  3590. value: 1
  3591. inSlope: 0
  3592. outSlope: 0
  3593. tangentMode: 0
  3594. m_PreInfinity: 2
  3595. m_PostInfinity: 2
  3596. m_RotationOrder: 4
  3597. minCurve:
  3598. serializedVersion: 2
  3599. m_Curve:
  3600. - time: 0
  3601. value: 0
  3602. inSlope: 0
  3603. outSlope: 0
  3604. tangentMode: 0
  3605. - time: 1
  3606. value: 0
  3607. inSlope: 0
  3608. outSlope: 0
  3609. tangentMode: 0
  3610. m_PreInfinity: 2
  3611. m_PostInfinity: 2
  3612. m_RotationOrder: 4
  3613. minMaxState: 0
  3614. minKillSpeed: 0
  3615. maxKillSpeed: 10000
  3616. radiusScale: 1
  3617. collidesWith:
  3618. serializedVersion: 2
  3619. m_Bits: 4294967295
  3620. maxCollisionShapes: 256
  3621. quality: 0
  3622. voxelSize: 0.5
  3623. collisionMessages: 0
  3624. collidesWithDynamic: 1
  3625. interiorCollisions: 1
  3626. TriggerModule:
  3627. enabled: 0
  3628. collisionShape0: {fileID: 0}
  3629. collisionShape1: {fileID: 0}
  3630. collisionShape2: {fileID: 0}
  3631. collisionShape3: {fileID: 0}
  3632. collisionShape4: {fileID: 0}
  3633. collisionShape5: {fileID: 0}
  3634. inside: 1
  3635. outside: 0
  3636. enter: 0
  3637. exit: 0
  3638. radiusScale: 1
  3639. SubModule:
  3640. enabled: 0
  3641. subEmitterBirth: {fileID: 0}
  3642. subEmitterBirth1: {fileID: 0}
  3643. subEmitterCollision: {fileID: 0}
  3644. subEmitterCollision1: {fileID: 0}
  3645. subEmitterDeath: {fileID: 0}
  3646. subEmitterDeath1: {fileID: 0}
  3647. --- !u!199 &19915112
  3648. ParticleSystemRenderer:
  3649. m_ObjectHideFlags: 1
  3650. m_PrefabParentObject: {fileID: 0}
  3651. m_PrefabInternal: {fileID: 100100000}
  3652. m_GameObject: {fileID: 105996}
  3653. m_Enabled: 1
  3654. m_CastShadows: 1
  3655. m_ReceiveShadows: 1
  3656. m_MotionVectors: 1
  3657. m_LightProbeUsage: 0
  3658. m_ReflectionProbeUsage: 1
  3659. m_Materials:
  3660. - {fileID: 2100000, guid: 9fff76eb68ad4c44b87be9e2ca168a80, type: 2}
  3661. m_SubsetIndices:
  3662. m_StaticBatchRoot: {fileID: 0}
  3663. m_ProbeAnchor: {fileID: 0}
  3664. m_LightProbeVolumeOverride: {fileID: 0}
  3665. m_ScaleInLightmap: 1
  3666. m_PreserveUVs: 0
  3667. m_IgnoreNormalsForChartDetection: 0
  3668. m_ImportantGI: 0
  3669. m_SelectedWireframeHidden: 1
  3670. m_MinimumChartSize: 4
  3671. m_AutoUVMaxDistance: 0.5
  3672. m_AutoUVMaxAngle: 89
  3673. m_LightmapParameters: {fileID: 0}
  3674. m_SortingLayerID: 0
  3675. m_SortingOrder: 0
  3676. m_RenderMode: 0
  3677. m_SortMode: 2
  3678. m_MinParticleSize: 0
  3679. m_MaxParticleSize: 0.5
  3680. m_CameraVelocityScale: 0
  3681. m_VelocityScale: -2.52
  3682. m_LengthScale: 2.25
  3683. m_SortingFudge: 0
  3684. m_NormalDirection: 1
  3685. m_RenderAlignment: 0
  3686. m_Pivot: {x: 0, y: 0, z: 0}
  3687. m_Mesh: {fileID: 0}
  3688. m_Mesh1: {fileID: 0}
  3689. m_Mesh2: {fileID: 0}
  3690. m_Mesh3: {fileID: 0}
  3691. --- !u!199 &19977994
  3692. ParticleSystemRenderer:
  3693. m_ObjectHideFlags: 1
  3694. m_PrefabParentObject: {fileID: 0}
  3695. m_PrefabInternal: {fileID: 100100000}
  3696. m_GameObject: {fileID: 156090}
  3697. m_Enabled: 1
  3698. m_CastShadows: 1
  3699. m_ReceiveShadows: 1
  3700. m_MotionVectors: 1
  3701. m_LightProbeUsage: 0
  3702. m_ReflectionProbeUsage: 1
  3703. m_Materials:
  3704. - {fileID: 2100000, guid: 9fff76eb68ad4c44b87be9e2ca168a80, type: 2}
  3705. m_SubsetIndices:
  3706. m_StaticBatchRoot: {fileID: 0}
  3707. m_ProbeAnchor: {fileID: 0}
  3708. m_LightProbeVolumeOverride: {fileID: 0}
  3709. m_ScaleInLightmap: 1
  3710. m_PreserveUVs: 0
  3711. m_IgnoreNormalsForChartDetection: 0
  3712. m_ImportantGI: 0
  3713. m_SelectedWireframeHidden: 1
  3714. m_MinimumChartSize: 4
  3715. m_AutoUVMaxDistance: 0.5
  3716. m_AutoUVMaxAngle: 89
  3717. m_LightmapParameters: {fileID: 0}
  3718. m_SortingLayerID: 0
  3719. m_SortingOrder: 0
  3720. m_RenderMode: 0
  3721. m_SortMode: 2
  3722. m_MinParticleSize: 0
  3723. m_MaxParticleSize: 0.5
  3724. m_CameraVelocityScale: 0
  3725. m_VelocityScale: 0
  3726. m_LengthScale: 2
  3727. m_SortingFudge: -200
  3728. m_NormalDirection: 1
  3729. m_RenderAlignment: 0
  3730. m_Pivot: {x: 0, y: 0, z: 0}
  3731. m_Mesh: {fileID: 0}
  3732. m_Mesh1: {fileID: 0}
  3733. m_Mesh2: {fileID: 0}
  3734. m_Mesh3: {fileID: 0}
  3735. --- !u!1001 &100100000
  3736. Prefab:
  3737. m_ObjectHideFlags: 1
  3738. serializedVersion: 2
  3739. m_Modification:
  3740. m_TransformParent: {fileID: 0}
  3741. m_Modifications:
  3742. - target: {fileID: 0}
  3743. propertyPath: waveFile.Array.size
  3744. value: 4
  3745. objectReference: {fileID: 0}
  3746. - target: {fileID: 0}
  3747. propertyPath: useRandomPitch
  3748. value: 0
  3749. objectReference: {fileID: 0}
  3750. m_RemovedComponents: []
  3751. m_ParentPrefab: {fileID: 0}
  3752. m_RootGameObject: {fileID: 105996}
  3753. m_IsPrefabParent: 1