Factory Effects.wwu 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <WwiseDocument Type="WorkUnit" ID="{E8613F7D-BAD3-45CD-A3ED-505576F31277}" SchemaVersion="119">
  3. <Effects>
  4. <WorkUnit Name="Factory Effects" ID="{E8613F7D-BAD3-45CD-A3ED-505576F31277}" PersistMode="Standalone">
  5. <ChildrenList>
  6. <Folder Name="Compressor" ID="{6D4F6371-ED53-4C90-98DA-0AEB0484548B}" ShortID="64022668">
  7. <ChildrenList>
  8. <Effect Name="Gentle_Program_Compressor_Minus_20dB_RMS" ID="{D3F1F88E-4123-4C05-946B-1B036BAC2DFD}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  9. <PropertyList>
  10. <Property Name="Ratio" Type="Real32" Value="3"/>
  11. <Property Name="Threshold" Type="Real32" Value="-20"/>
  12. </PropertyList>
  13. </Effect>
  14. <Effect Name="Gentle_Program_Compressor_Minus_14dB_RMS" ID="{1595E6B0-DD58-4363-A3F0-DF0C96EC7C17}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  15. <PropertyList>
  16. <Property Name="Ratio" Type="Real32" Value="3"/>
  17. <Property Name="Threshold" Type="Real32" Value="-14"/>
  18. </PropertyList>
  19. </Effect>
  20. <Effect Name="Hard_Knee_Minus_3dB_RMS" ID="{D083BAE5-F9EF-426B-A311-D9DF8DFE8807}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  21. <PropertyList>
  22. <Property Name="Ratio" Type="Real32" Value="8"/>
  23. <Property Name="Threshold" Type="Real32" Value="-3"/>
  24. </PropertyList>
  25. </Effect>
  26. <Effect Name="Dialog_Leveler_Soft" ID="{9C1D0FCF-896E-4739-A8E8-B1E908F51CE6}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  27. <PropertyList>
  28. <Property Name="Ratio" Type="Real32" Value="3"/>
  29. <Property Name="Threshold" Type="Real32" Value="-20"/>
  30. </PropertyList>
  31. </Effect>
  32. <Effect Name="Dialog_Leveler_Hard" ID="{865FB36F-8717-4D30-AD05-14E56375CD40}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  33. <PropertyList>
  34. <Property Name="Ratio" Type="Real32" Value="6"/>
  35. <Property Name="Threshold" Type="Real32" Value="-20"/>
  36. </PropertyList>
  37. </Effect>
  38. <Effect Name="Dialog_Too_Quiet" ID="{F9C77BF1-1CCC-415B-B93F-B048979CA620}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  39. <PropertyList>
  40. <Property Name="OutputGain" Type="Real32" Value="6"/>
  41. <Property Name="Ratio" Type="Real32" Value="3"/>
  42. <Property Name="Threshold" Type="Real32" Value="-30"/>
  43. </PropertyList>
  44. </Effect>
  45. <Effect Name="High_Impact" ID="{2AFD6FB0-C906-4683-A377-FEEEF72967B0}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  46. <PropertyList>
  47. <Property Name="AttackTime" Type="Real32" Value="0.04"/>
  48. <Property Name="Ratio" Type="Real32" Value="12"/>
  49. <Property Name="ReleaseTime" Type="Real32" Value="0.5"/>
  50. <Property Name="Threshold" Type="Real32" Value="-6"/>
  51. </PropertyList>
  52. </Effect>
  53. <Effect Name="Attack_Remover" ID="{174E7B9A-A16F-4CA7-86D0-530212B5A6AA}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  54. <PropertyList>
  55. <Property Name="AttackTime" Type="Real32" Value="0.001"/>
  56. <Property Name="Ratio" Type="Real32" Value="20"/>
  57. <Property Name="ReleaseTime" Type="Real32" Value="0.5"/>
  58. <Property Name="Threshold" Type="Real32" Value="-25"/>
  59. </PropertyList>
  60. </Effect>
  61. <Effect Name="Pumping_and_Breathing_1" ID="{87BE3270-3D27-45BB-9E46-7F2D9380F523}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  62. <PropertyList>
  63. <Property Name="AttackTime" Type="Real32" Value="0.111"/>
  64. <Property Name="OutputGain" Type="Real32" Value="3"/>
  65. <Property Name="Ratio" Type="Real32" Value="20"/>
  66. <Property Name="ReleaseTime" Type="Real32" Value="0.021"/>
  67. <Property Name="Threshold" Type="Real32" Value="-37"/>
  68. </PropertyList>
  69. </Effect>
  70. <Effect Name="All_Buttons_IN" ID="{E5FFEBA7-4F6F-421E-ABB7-286C011BD0C8}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  71. <PropertyList>
  72. <Property Name="AttackTime" Type="Real32" Value="0.001"/>
  73. <Property Name="OutputGain" Type="Real32" Value="12"/>
  74. <Property Name="Ratio" Type="Real32" Value="20"/>
  75. <Property Name="ReleaseTime" Type="Real32" Value="0.001"/>
  76. <Property Name="Threshold" Type="Real32" Value="-50"/>
  77. </PropertyList>
  78. </Effect>
  79. <Effect Name="Pumping_and_Breathing_2" ID="{1E63EC43-20F0-4D27-A844-BD5F6AE9E3C9}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  80. <PropertyList>
  81. <Property Name="AttackTime" Type="Real32" Value="0.331"/>
  82. <Property Name="OutputGain" Type="Real32" Value="3"/>
  83. <Property Name="Ratio" Type="Real32" Value="25"/>
  84. <Property Name="ReleaseTime" Type="Real32" Value="0.601"/>
  85. <Property Name="Threshold" Type="Real32" Value="-40"/>
  86. </PropertyList>
  87. </Effect>
  88. <Effect Name="Pumping_and_Breathing_3" ID="{8B1E574C-55B2-4097-A21F-D39349A6F48B}" PluginName="Wwise Compressor" CompanyID="0" PluginID="108" PluginType="3">
  89. <PropertyList>
  90. <Property Name="AttackTime" Type="Real32" Value="0.34"/>
  91. <Property Name="OutputGain" Type="Real32" Value="3"/>
  92. <Property Name="Ratio" Type="Real32" Value="22"/>
  93. <Property Name="ReleaseTime" Type="Real32" Value="0.271"/>
  94. <Property Name="Threshold" Type="Real32" Value="-54.2"/>
  95. </PropertyList>
  96. </Effect>
  97. </ChildrenList>
  98. </Folder>
  99. <Folder Name="Expander" ID="{93E8C416-F687-4AFA-892F-022B532AFB04}" ShortID="234435539">
  100. <ChildrenList>
  101. <Effect Name="Light_Expander" ID="{C7E71A3B-745F-47B0-8F31-276DD413F83C}" PluginName="Wwise Expander" CompanyID="0" PluginID="109" PluginType="3">
  102. <PropertyList>
  103. <Property Name="Ratio" Type="Real32" Value="1.5"/>
  104. <Property Name="Threshold" Type="Real32" Value="0"/>
  105. </PropertyList>
  106. </Effect>
  107. <Effect Name="Noise_Gate_Fast_Attack" ID="{747A6B61-E953-474C-8227-672C884DA616}" PluginName="Wwise Expander" CompanyID="0" PluginID="109" PluginType="3">
  108. <PropertyList>
  109. <Property Name="Ratio" Type="Real32" Value="50"/>
  110. <Property Name="ReleaseTime" Type="Real32" Value="0.1"/>
  111. <Property Name="Threshold" Type="Real32" Value="-50"/>
  112. </PropertyList>
  113. </Effect>
  114. <Effect Name="Noise_Gate_Slow_Attack" ID="{8D16DAF8-FD63-4A83-894E-2E82DA790C71}" PluginName="Wwise Expander" CompanyID="0" PluginID="109" PluginType="3">
  115. <PropertyList>
  116. <Property Name="AttackTime" Type="Real32" Value="0.5"/>
  117. <Property Name="Ratio" Type="Real32" Value="50"/>
  118. <Property Name="ReleaseTime" Type="Real32" Value="0.1"/>
  119. <Property Name="Threshold" Type="Real32" Value="-50"/>
  120. </PropertyList>
  121. </Effect>
  122. </ChildrenList>
  123. </Folder>
  124. <Folder Name="Delay" ID="{842F3AD6-5B58-4CE4-810D-6ADE0CC61B52}" ShortID="846850439">
  125. <ChildrenList>
  126. <Effect Name="One_Tap_One_Second" ID="{5B5883FA-85A1-45CA-8A52-9DBBCF3B0A03}" PluginName="Wwise Delay" CompanyID="0" PluginID="106" PluginType="3">
  127. <PropertyList>
  128. <Property Name="DelayTime" Type="Real32" Value="1"/>
  129. </PropertyList>
  130. </Effect>
  131. <Effect Name="Echoes_Linear" ID="{D20F3717-EBA2-4E3A-84F8-C8BD431563FB}" PluginName="Wwise Delay" CompanyID="0" PluginID="106" PluginType="3"/>
  132. <Effect Name="One_Tap_Half_Second" ID="{B8FE0D3B-7AAB-4344-89FE-177602B7BF19}" PluginName="Wwise Delay" CompanyID="0" PluginID="106" PluginType="3"/>
  133. <Effect Name="One_Tap_Quarter_Second" ID="{6BD2D67D-601A-45A6-AD4C-2C089078EBED}" PluginName="Wwise Delay" CompanyID="0" PluginID="106" PluginType="3">
  134. <PropertyList>
  135. <Property Name="DelayTime" Type="Real32" Value="0.25"/>
  136. </PropertyList>
  137. </Effect>
  138. <Effect Name="Nearly_Forever" ID="{38550FDA-9236-4FC5-8AE0-68DB08164B25}" PluginName="Wwise Delay" CompanyID="0" PluginID="106" PluginType="3">
  139. <PropertyList>
  140. <Property Name="DelayTime" Type="Real32" Value="0.6"/>
  141. <Property Name="Feedback" Type="Real32" Value="80"/>
  142. <Property Name="WetDryMix" Type="Real32" Value="30"/>
  143. </PropertyList>
  144. </Effect>
  145. </ChildrenList>
  146. </Folder>
  147. <Folder Name="Peak Limiter" ID="{836AD450-C7A2-4D04-B731-35228C434FD4}" ShortID="766653803">
  148. <ChildrenList>
  149. <Effect Name="Brick_Wall_Minus_6dB_Peak_Fast_Release" ID="{3FF9AD86-E377-40F8-970F-3D4EE73288B5}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  150. <PropertyList>
  151. <Property Name="Ratio" Type="Real32" Value="50"/>
  152. <Property Name="ReleaseTime" Type="Real32" Value="0.02"/>
  153. <Property Name="Threshold" Type="Real32" Value="-6"/>
  154. </PropertyList>
  155. </Effect>
  156. <Effect Name="Brick_Wall_Minus_6dB_Peak_Slow_Release" ID="{E0BA4DE6-A10C-49AF-A3E4-C5F71BA79EE6}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  157. <PropertyList>
  158. <Property Name="Ratio" Type="Real32" Value="50"/>
  159. <Property Name="ReleaseTime" Type="Real32" Value="0.25"/>
  160. <Property Name="Threshold" Type="Real32" Value="-6"/>
  161. </PropertyList>
  162. </Effect>
  163. <Effect Name="Extreme_Limiting_1" ID="{8F08A8A7-3313-4E5D-9EBD-2B1B564DE411}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  164. <PropertyList>
  165. <Property Name="LookAhead" Type="Real32" Value="0.001"/>
  166. <Property Name="OutputGain" Type="Real32" Value="6"/>
  167. <Property Name="Ratio" Type="Real32" Value="50"/>
  168. <Property Name="ReleaseTime" Type="Real32" Value="0.02"/>
  169. <Property Name="Threshold" Type="Real32" Value="-40"/>
  170. </PropertyList>
  171. </Effect>
  172. <Effect Name="Extreme_Limiting_2" ID="{D53DEA92-7F8A-4332-AC66-892C4DF69455}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  173. <PropertyList>
  174. <Property Name="OutputGain" Type="Real32" Value="6"/>
  175. <Property Name="Ratio" Type="Real32" Value="35"/>
  176. <Property Name="ReleaseTime" Type="Real32" Value="0.081"/>
  177. <Property Name="Threshold" Type="Real32" Value="-30"/>
  178. </PropertyList>
  179. </Effect>
  180. <Effect Name="Extreme_Limiting_3" ID="{9967B47B-B780-4241-A389-6CCFBB4A0F27}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  181. <PropertyList>
  182. <Property Name="LookAhead" Type="Real32" Value="0.017"/>
  183. <Property Name="OutputGain" Type="Real32" Value="6"/>
  184. <Property Name="Ratio" Type="Real32" Value="25"/>
  185. <Property Name="ReleaseTime" Type="Real32" Value="0.32"/>
  186. <Property Name="Threshold" Type="Real32" Value="-35"/>
  187. </PropertyList>
  188. </Effect>
  189. <Effect Name="Brick_Wall_Minus_1dB_Peak_Fast_Release" ID="{2144284E-7ADD-4341-86A4-4E468BEC9A2D}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  190. <PropertyList>
  191. <Property Name="Ratio" Type="Real32" Value="50"/>
  192. <Property Name="ReleaseTime" Type="Real32" Value="0.02"/>
  193. <Property Name="Threshold" Type="Real32" Value="-1"/>
  194. </PropertyList>
  195. </Effect>
  196. <Effect Name="Brick_Wall_Minus_1dB_Peak_Slow_Release" ID="{9FB8DC2B-7F1C-4E4E-8FA5-50872652D2DD}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  197. <PropertyList>
  198. <Property Name="Ratio" Type="Real32" Value="50"/>
  199. <Property Name="ReleaseTime" Type="Real32" Value="0.25"/>
  200. <Property Name="Threshold" Type="Real32" Value="-1"/>
  201. </PropertyList>
  202. </Effect>
  203. <Effect Name="Nasty_Radio" ID="{7E6FAC41-3332-47EA-9AC6-625A78B63226}" PluginName="Wwise Peak Limiter" CompanyID="0" PluginID="110" PluginType="3">
  204. <PropertyList>
  205. <Property Name="LookAhead" Type="Real32" Value="0.003"/>
  206. <Property Name="OutputGain" Type="Real32" Value="12"/>
  207. <Property Name="Ratio" Type="Real32" Value="35"/>
  208. <Property Name="ReleaseTime" Type="Real32" Value="0.071"/>
  209. <Property Name="Threshold" Type="Real32" Value="-25"/>
  210. </PropertyList>
  211. </Effect>
  212. </ChildrenList>
  213. </Folder>
  214. <Folder Name="Parametric EQ" ID="{DFCF119F-F31B-4A92-BDD4-B049BB5070CF}" ShortID="679384051">
  215. <ChildrenList>
  216. <Folder Name="Shelving EQ" ID="{CBB1490A-1238-442A-B6AB-2AA5C4E8D264}" ShortID="554267120">
  217. <ChildrenList>
  218. <Folder Name="High Shelf" ID="{402A395E-C034-474E-BC9A-BF4402CCFE40}" ShortID="319872485">
  219. <ChildrenList>
  220. <Effect Name="Boost_3dB_10KHz" ID="{59632554-9396-4E15-889E-7A2F5458DEC3}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  221. <PropertyList>
  222. <Property Name="FrequencyBand3" Type="Real32" Value="2539"/>
  223. <Property Name="GainBand3" Type="Real32" Value="24"/>
  224. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  225. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  226. </PropertyList>
  227. </Effect>
  228. <Effect Name="Cut_3dB_10KHz" ID="{83EAB3EA-A43D-470F-A183-7F02DAA44A4D}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  229. <PropertyList>
  230. <Property Name="FrequencyBand3" Type="Real32" Value="10000"/>
  231. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  232. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  233. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  234. </PropertyList>
  235. </Effect>
  236. <Effect Name="High_Freq_Cut_1" ID="{BA5BC68D-BCA7-4CE0-9878-1560F2D8B257}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  237. <PropertyList>
  238. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  239. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  240. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  241. <Property Name="FrequencyBand2" Type="Real32" Value="15000"/>
  242. <Property Name="FrequencyBand3" Type="Real32" Value="18000"/>
  243. <Property Name="GainBand2" Type="Real32" Value="-2"/>
  244. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  245. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  246. </PropertyList>
  247. </Effect>
  248. <Effect Name="High_Freq_Cut_2" ID="{32F492AD-3F59-4D61-8488-1DADE817C01E}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  249. <PropertyList>
  250. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  251. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  252. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  253. <Property Name="FrequencyBand2" Type="Real32" Value="13000"/>
  254. <Property Name="FrequencyBand3" Type="Real32" Value="17000"/>
  255. <Property Name="GainBand2" Type="Real32" Value="-3"/>
  256. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  257. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  258. </PropertyList>
  259. </Effect>
  260. <Effect Name="High_Freq_Cut_3" ID="{AB43D98E-8FA5-4C12-AFA0-54483E6AF9C9}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  261. <PropertyList>
  262. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  263. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  264. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  265. <Property Name="FrequencyBand2" Type="Real32" Value="12000"/>
  266. <Property Name="FrequencyBand3" Type="Real32" Value="15000"/>
  267. <Property Name="GainBand2" Type="Real32" Value="-3"/>
  268. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  269. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  270. </PropertyList>
  271. </Effect>
  272. <Effect Name="High_Freq_Cut_4" ID="{E8D0C6ED-E60F-4F25-850D-99FC6A22A700}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  273. <PropertyList>
  274. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  275. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  276. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  277. <Property Name="FrequencyBand2" Type="Real32" Value="10000"/>
  278. <Property Name="FrequencyBand3" Type="Real32" Value="14500"/>
  279. <Property Name="GainBand2" Type="Real32" Value="-4"/>
  280. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  281. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  282. </PropertyList>
  283. </Effect>
  284. <Effect Name="High_Freq_Cut_5" ID="{604A4C00-7E8F-4859-BF24-F49D8C82555F}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  285. <PropertyList>
  286. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  287. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  288. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  289. <Property Name="FrequencyBand2" Type="Real32" Value="10000"/>
  290. <Property Name="FrequencyBand3" Type="Real32" Value="14500"/>
  291. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  292. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  293. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  294. </PropertyList>
  295. </Effect>
  296. <Effect Name="High_Freq_Cut_6" ID="{D064E2D9-269F-4D94-BAAD-86E171F9C28B}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  297. <PropertyList>
  298. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  299. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  300. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  301. <Property Name="FrequencyBand2" Type="Real32" Value="9000"/>
  302. <Property Name="FrequencyBand3" Type="Real32" Value="13500"/>
  303. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  304. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  305. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  306. </PropertyList>
  307. </Effect>
  308. <Effect Name="High_Freq_Cut_7" ID="{D21CF913-1854-4FBB-B96E-6EE1BBA618DE}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  309. <PropertyList>
  310. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  311. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  312. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  313. <Property Name="FrequencyBand2" Type="Real32" Value="8000"/>
  314. <Property Name="FrequencyBand3" Type="Real32" Value="11000"/>
  315. <Property Name="GainBand2" Type="Real32" Value="-7"/>
  316. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  317. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  318. </PropertyList>
  319. </Effect>
  320. <Effect Name="High_Freq_Cut_8" ID="{D2BED60E-DD7F-4B4C-A331-C1D0E574B7C6}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  321. <PropertyList>
  322. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  323. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  324. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  325. <Property Name="FrequencyBand2" Type="Real32" Value="6000"/>
  326. <Property Name="FrequencyBand3" Type="Real32" Value="7000"/>
  327. <Property Name="GainBand2" Type="Real32" Value="-9"/>
  328. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  329. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  330. </PropertyList>
  331. </Effect>
  332. <Effect Name="High_Freq_Cut_9" ID="{F0200581-9EA1-4D8F-963A-6B2568B22178}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  333. <PropertyList>
  334. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  335. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  336. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  337. <Property Name="FrequencyBand2" Type="Real32" Value="4500"/>
  338. <Property Name="GainBand2" Type="Real32" Value="-12"/>
  339. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  340. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  341. </PropertyList>
  342. </Effect>
  343. <Effect Name="High_Freq_Cut_10" ID="{027366CD-40E5-4BAF-82AA-0352625DDF2B}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  344. <PropertyList>
  345. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  346. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  347. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  348. <Property Name="FrequencyBand2" Type="Real32" Value="3000"/>
  349. <Property Name="FrequencyBand3" Type="Real32" Value="4000"/>
  350. <Property Name="GainBand2" Type="Real32" Value="-12"/>
  351. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  352. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  353. </PropertyList>
  354. </Effect>
  355. <Effect Name="High_Freq_Cut_11" ID="{96D2A3E1-1EA0-4DBB-B303-3EA9035A484C}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  356. <PropertyList>
  357. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  358. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  359. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  360. <Property Name="FrequencyBand2" Type="Real32" Value="3000"/>
  361. <Property Name="FrequencyBand3" Type="Real32" Value="500"/>
  362. <Property Name="GainBand2" Type="Real32" Value="-20"/>
  363. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  364. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  365. </PropertyList>
  366. </Effect>
  367. </ChildrenList>
  368. </Folder>
  369. <Folder Name="Low Shelf" ID="{193DFAED-0123-43F1-8A29-2476F68CB55A}" ShortID="694540877">
  370. <ChildrenList>
  371. <Effect Name="Bass_Remover_1" ID="{D313DB05-6B33-4C1F-8C2F-F989052E8120}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  372. <PropertyList>
  373. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  374. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  375. <Property Name="FrequencyBand1" Type="Real32" Value="60"/>
  376. <Property Name="FrequencyBand2" Type="Real32" Value="100"/>
  377. <Property Name="GainBand2" Type="Real32" Value="-3"/>
  378. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  379. </PropertyList>
  380. </Effect>
  381. <Effect Name="Bass_Remover_2" ID="{A0788DC0-7254-4FDD-A6F4-2BAF12AD6CE2}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  382. <PropertyList>
  383. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  384. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  385. <Property Name="FrequencyBand1" Type="Real32" Value="70"/>
  386. <Property Name="FrequencyBand2" Type="Real32" Value="120"/>
  387. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  388. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  389. </PropertyList>
  390. </Effect>
  391. <Effect Name="Bass_Remover_3" ID="{B37BD0FB-6847-4C9C-8019-708F8AA292D1}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  392. <PropertyList>
  393. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  394. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  395. <Property Name="FrequencyBand1" Type="Real32" Value="80"/>
  396. <Property Name="FrequencyBand2" Type="Real32" Value="150"/>
  397. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  398. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  399. </PropertyList>
  400. </Effect>
  401. <Effect Name="Bass_Remover_4" ID="{F641E9BC-59FE-4DDD-B162-B5377EF599C2}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  402. <PropertyList>
  403. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  404. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  405. <Property Name="FrequencyBand1" Type="Real32" Value="90"/>
  406. <Property Name="FrequencyBand2" Type="Real32" Value="160"/>
  407. <Property Name="GainBand2" Type="Real32" Value="-8"/>
  408. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  409. </PropertyList>
  410. </Effect>
  411. <Effect Name="Bass_Remover_5" ID="{E7CECC42-E084-4453-82FF-836B23BA2B83}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  412. <PropertyList>
  413. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  414. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  415. <Property Name="FrequencyBand2" Type="Real32" Value="180"/>
  416. <Property Name="GainBand2" Type="Real32" Value="-10"/>
  417. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  418. </PropertyList>
  419. </Effect>
  420. <Effect Name="Bass_Remover_6" ID="{618E8FA3-0360-4858-A11E-3490F5AA0B68}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  421. <PropertyList>
  422. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  423. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  424. <Property Name="FrequencyBand2" Type="Real32" Value="200"/>
  425. <Property Name="GainBand2" Type="Real32" Value="-12"/>
  426. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  427. </PropertyList>
  428. </Effect>
  429. <Effect Name="Bass_Remover_7" ID="{50E2F103-1981-4661-8D8E-226CA51DEE91}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  430. <PropertyList>
  431. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  432. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  433. <Property Name="FrequencyBand1" Type="Real32" Value="140"/>
  434. <Property Name="FrequencyBand2" Type="Real32" Value="240"/>
  435. <Property Name="GainBand2" Type="Real32" Value="-12"/>
  436. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  437. </PropertyList>
  438. </Effect>
  439. <Effect Name="Bass_Remover_8" ID="{2E97A6C9-9B25-47D1-AF28-019E67CBB728}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  440. <PropertyList>
  441. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  442. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  443. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  444. <Property Name="FrequencyBand2" Type="Real32" Value="275"/>
  445. <Property Name="GainBand2" Type="Real32" Value="-15"/>
  446. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  447. </PropertyList>
  448. </Effect>
  449. <Effect Name="Bass_Remover_9" ID="{8986F65E-F3FA-44DE-8843-DCE54B78B3CD}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  450. <PropertyList>
  451. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  452. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  453. <Property Name="FrequencyBand1" Type="Real32" Value="180"/>
  454. <Property Name="FrequencyBand2" Type="Real32" Value="300"/>
  455. <Property Name="GainBand2" Type="Real32" Value="-15"/>
  456. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  457. </PropertyList>
  458. </Effect>
  459. <Effect Name="Bass_Remover_10" ID="{287D6D72-F596-4384-9D18-757381CC5968}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  460. <PropertyList>
  461. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  462. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  463. <Property Name="FrequencyBand1" Type="Real32" Value="250"/>
  464. <Property Name="FrequencyBand2" Type="Real32" Value="380"/>
  465. <Property Name="GainBand2" Type="Real32" Value="-20"/>
  466. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  467. </PropertyList>
  468. </Effect>
  469. <Effect Name="Bass_Remover_11" ID="{83B27FE7-5B7D-4380-900F-16B642F4A085}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  470. <PropertyList>
  471. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  472. <Property Name="FilterTypeBand2" Type="int32" Value="4"/>
  473. <Property Name="FrequencyBand1" Type="Real32" Value="600"/>
  474. <Property Name="FrequencyBand2" Type="Real32" Value="800"/>
  475. <Property Name="GainBand2" Type="Real32" Value="-24"/>
  476. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  477. </PropertyList>
  478. </Effect>
  479. <Effect Name="Boost_3dB_100Hz" ID="{3EA7C9BD-6F9A-4000-A227-F86B5B4328EE}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  480. <PropertyList>
  481. <Property Name="GainBand1" Type="Real32" Value="3"/>
  482. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  483. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  484. </PropertyList>
  485. </Effect>
  486. <Effect Name="Cut_3dB_100Hz" ID="{67423B74-4F0A-4719-92FE-343347C717C7}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  487. <PropertyList>
  488. <Property Name="GainBand1" Type="Real32" Value="-3"/>
  489. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  490. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  491. </PropertyList>
  492. </Effect>
  493. </ChildrenList>
  494. </Folder>
  495. <Folder Name="Creative EQ" ID="{E7A5B13B-69F0-4B8D-BE8B-B8C4A0EAA51A}" ShortID="685804813">
  496. <ChildrenList>
  497. <Effect Name="Born_In_1950" ID="{3B3A31C2-C9A6-430E-A3CF-62963E332052}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  498. <PropertyList>
  499. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  500. <Property Name="FrequencyBand3" Type="Real32" Value="9500"/>
  501. <Property Name="GainBand1" Type="Real32" Value="6"/>
  502. <Property Name="GainBand3" Type="Real32" Value="12"/>
  503. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  504. </PropertyList>
  505. </Effect>
  506. <Effect Name="Club_Music_Distant_01" ID="{972799F5-C6E5-4E4F-83E3-95AA307CDFD1}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  507. <PropertyList>
  508. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  509. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  510. <Property Name="FrequencyBand2" Type="Real32" Value="275"/>
  511. <Property Name="FrequencyBand3" Type="Real32" Value="1000"/>
  512. <Property Name="GainBand1" Type="Real32" Value="3"/>
  513. <Property Name="GainBand2" Type="Real32" Value="4"/>
  514. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  515. <Property Name="OutputLevel" Type="Real32" Value="-6"/>
  516. </PropertyList>
  517. </Effect>
  518. <Effect Name="Club_Music_Distant_02" ID="{3E941520-4EE5-423A-A522-789936746CAD}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  519. <PropertyList>
  520. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  521. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  522. <Property Name="FrequencyBand2" Type="Real32" Value="275"/>
  523. <Property Name="FrequencyBand3" Type="Real32" Value="700"/>
  524. <Property Name="GainBand1" Type="Real32" Value="10"/>
  525. <Property Name="GainBand2" Type="Real32" Value="4"/>
  526. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  527. <Property Name="OutputLevel" Type="Real32" Value="-10"/>
  528. </PropertyList>
  529. </Effect>
  530. <Effect Name="Club_Music_Distant_03" ID="{03297119-9BF7-4E5B-BFC2-717C1593964B}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  531. <PropertyList>
  532. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  533. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  534. <Property Name="FrequencyBand3" Type="Real32" Value="476"/>
  535. <Property Name="GainBand1" Type="Real32" Value="10"/>
  536. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  537. <Property Name="OutputLevel" Type="Real32" Value="-12"/>
  538. </PropertyList>
  539. </Effect>
  540. <Effect Name="Club_Music_Distant_04" ID="{9A14A831-C779-40C7-AFF7-8AF1723A90AF}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  541. <PropertyList>
  542. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  543. <Property Name="FrequencyBand1" Type="Real32" Value="150"/>
  544. <Property Name="FrequencyBand3" Type="Real32" Value="160"/>
  545. <Property Name="GainBand1" Type="Real32" Value="12"/>
  546. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  547. <Property Name="OutputLevel" Type="Real32" Value="-12"/>
  548. </PropertyList>
  549. </Effect>
  550. <Effect Name="In_My_Car" ID="{B6CE8691-D50C-4AC3-8314-6CB938FC8681}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  551. <PropertyList>
  552. <Property Name="FrequencyBand1" Type="Real32" Value="81"/>
  553. <Property Name="FrequencyBand2" Type="Real32" Value="892"/>
  554. <Property Name="FrequencyBand3" Type="Real32" Value="8967"/>
  555. <Property Name="GainBand1" Type="Real32" Value="-8"/>
  556. <Property Name="GainBand2" Type="Real32" Value="3.5"/>
  557. <Property Name="GainBand3" Type="Real32" Value="-3"/>
  558. </PropertyList>
  559. </Effect>
  560. <Effect Name="Next_Room" ID="{6CAFD7CA-D8F8-4947-8B86-1B68A5EBDC0A}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  561. <PropertyList>
  562. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  563. <Property Name="FilterTypeBand2" Type="int32" Value="0"/>
  564. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  565. <Property Name="FrequencyBand1" Type="Real32" Value="1000"/>
  566. <Property Name="FrequencyBand3" Type="Real32" Value="1400"/>
  567. <Property Name="OutputLevel" Type="Real32" Value="2.5"/>
  568. </PropertyList>
  569. </Effect>
  570. <Effect Name="Dialog_Through_AC_Vents" ID="{897297F0-8419-4DF6-AD6F-AFA7B93E0989}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  571. <PropertyList>
  572. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  573. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  574. <Property Name="FrequencyBand1" Type="Real32" Value="80"/>
  575. <Property Name="FrequencyBand2" Type="Real32" Value="691"/>
  576. <Property Name="FrequencyBand3" Type="Real32" Value="100"/>
  577. <Property Name="GainBand2" Type="Real32" Value="12"/>
  578. </PropertyList>
  579. </Effect>
  580. </ChildrenList>
  581. </Folder>
  582. </ChildrenList>
  583. </Folder>
  584. <Folder Name="High Pass Filters" ID="{5441713F-966E-419F-B171-057B368D693B}" ShortID="54754283">
  585. <ChildrenList>
  586. <Effect Name="High_Pass_60Hz" ID="{F9627628-0B10-4272-BC30-D4C20423CB38}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  587. <PropertyList>
  588. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  589. <Property Name="FrequencyBand1" Type="Real32" Value="60"/>
  590. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  591. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  592. </PropertyList>
  593. </Effect>
  594. </ChildrenList>
  595. </Folder>
  596. <Folder Name="Misc" ID="{151A02CB-142F-4755-B709-77FF2A7A16BD}" ShortID="1004187057">
  597. <ChildrenList>
  598. <Effect Name="Static_Sibilance_Remover_Female" ID="{3E13EF40-7C1A-4EBC-9858-8CB584A642E5}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  599. <PropertyList>
  600. <Property Name="FrequencyBand2" Type="Real32" Value="6000"/>
  601. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  602. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  603. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  604. <Property Name="QFactorBand2" Type="Real32" Value="3"/>
  605. </PropertyList>
  606. </Effect>
  607. <Effect Name="Static_Sibilance_Remover_Male" ID="{3FF84C1E-F84E-432E-86BC-96B3C9219F10}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  608. <PropertyList>
  609. <Property Name="FrequencyBand2" Type="Real32" Value="4000"/>
  610. <Property Name="GainBand2" Type="Real32" Value="-6"/>
  611. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  612. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  613. <Property Name="QFactorBand2" Type="Real32" Value="3"/>
  614. </PropertyList>
  615. </Effect>
  616. </ChildrenList>
  617. </Folder>
  618. <Folder Name="Low Pass Filters" ID="{40969D6D-1C68-42EB-B46D-FD1A504F797C}" ShortID="1066977057">
  619. <ChildrenList>
  620. <Effect Name="Low_Pass_20KHz" ID="{830124FB-B9D5-4AE8-846E-E94A74652666}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  621. <PropertyList>
  622. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  623. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  624. <Property Name="FrequencyBand3" Type="Real32" Value="20000"/>
  625. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  626. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  627. </PropertyList>
  628. </Effect>
  629. </ChildrenList>
  630. </Folder>
  631. <Folder Name="Band Pass Filters" ID="{06F31128-3218-4580-A1BE-00714DE3FC6C}" ShortID="606165038">
  632. <ChildrenList>
  633. <Effect Name="Single_Band_1Khz_Wide" ID="{9B6A1D1B-F90F-4EAC-B796-2943413957FE}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  634. <PropertyList>
  635. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  636. <Property Name="FilterTypeBand2" Type="int32" Value="2"/>
  637. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  638. <Property Name="FrequencyBand1" Type="Real32" Value="1000"/>
  639. <Property Name="FrequencyBand3" Type="Real32" Value="10000"/>
  640. <Property Name="OnOffBand1" Type="bool" Value="False"/>
  641. <Property Name="OnOffBand3" Type="bool" Value="False"/>
  642. <Property Name="QFactorBand2" Type="Real32" Value="0.5"/>
  643. </PropertyList>
  644. </Effect>
  645. <Effect Name="Dual_Filters_Reset" ID="{C89DF4F6-C035-4745-868A-D8CBDCE8D96E}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  646. <PropertyList>
  647. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  648. <Property Name="FilterTypeBand2" Type="int32" Value="3"/>
  649. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  650. <Property Name="FrequencyBand1" Type="Real32" Value="20"/>
  651. <Property Name="FrequencyBand3" Type="Real32" Value="20000"/>
  652. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  653. </PropertyList>
  654. </Effect>
  655. <Effect Name="Dual_Filters_Narrow_Bandwidth" ID="{A24607C6-04E1-4D41-B513-28C0914D138D}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  656. <PropertyList>
  657. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  658. <Property Name="FilterTypeBand2" Type="int32" Value="3"/>
  659. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  660. <Property Name="FrequencyBand1" Type="Real32" Value="500"/>
  661. <Property Name="OnOffBand2" Type="bool" Value="False"/>
  662. </PropertyList>
  663. </Effect>
  664. <Effect Name="Dual_Filters_Radio_Comm" ID="{69479ACD-2C87-4007-B83E-55210A3B36B7}" PluginName="Wwise Parametric EQ" CompanyID="0" PluginID="105" PluginType="3">
  665. <PropertyList>
  666. <Property Name="FilterTypeBand1" Type="int32" Value="1"/>
  667. <Property Name="FilterTypeBand3" Type="int32" Value="0"/>
  668. <Property Name="FrequencyBand1" Type="Real32" Value="800"/>
  669. <Property Name="FrequencyBand2" Type="Real32" Value="3000"/>
  670. <Property Name="FrequencyBand3" Type="Real32" Value="4660"/>
  671. <Property Name="GainBand2" Type="Real32" Value="18"/>
  672. <Property Name="OutputLevel" Type="Real32" Value="-12"/>
  673. </PropertyList>
  674. </Effect>
  675. </ChildrenList>
  676. </Folder>
  677. </ChildrenList>
  678. </Folder>
  679. <Folder Name="Matrix Reverb" ID="{15437578-D8BA-4E3F-B5DA-E03465545132}" ShortID="292445827">
  680. <ChildrenList>
  681. <Effect Name="Bathroom1" ID="{1969D30F-C165-45C0-B290-DE3ED07A7AA3}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  682. <PropertyList>
  683. <Property Name="HFRatio" Type="Real32" Value="4.5"/>
  684. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  685. <Property Name="ReverbTime" Type="Real32" Value="1"/>
  686. <Property Name="WetLevel" Type="Real32" Value="-20"/>
  687. </PropertyList>
  688. </Effect>
  689. <Effect Name="Big_Garage1" ID="{172402A8-22F4-40FC-BE1D-5269594CB633}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  690. <PropertyList>
  691. <Property Name="HFRatio" Type="Real32" Value="3"/>
  692. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  693. <Property Name="ReverbTime" Type="Real32" Value="2"/>
  694. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  695. </PropertyList>
  696. </Effect>
  697. <Effect Name="Large_Bright_Chamber1" ID="{0BFA2291-5716-4759-AC24-F59D29E8F2E4}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  698. <PropertyList>
  699. <Property Name="HFRatio" Type="Real32" Value="1"/>
  700. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  701. <Property Name="PreDelay" Type="Real32" Value="0.05"/>
  702. <Property Name="ReverbTime" Type="Real32" Value="2"/>
  703. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  704. </PropertyList>
  705. </Effect>
  706. <Effect Name="Large_Church1" ID="{9B6E8B78-EF8C-494C-AADA-D01CF51B5FAC}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  707. <PropertyList>
  708. <Property Name="HFRatio" Type="Real32" Value="6"/>
  709. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  710. <Property Name="PreDelay" Type="Real32" Value="0.1"/>
  711. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  712. </PropertyList>
  713. </Effect>
  714. <Effect Name="Medium_Room1" ID="{71B802A7-03E2-4998-B241-B2B84FE9DDFF}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  715. <PropertyList>
  716. <Property Name="HFRatio" Type="Real32" Value="6"/>
  717. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  718. <Property Name="ReverbTime" Type="Real32" Value="2"/>
  719. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  720. </PropertyList>
  721. </Effect>
  722. <Effect Name="PA_Announcement1" ID="{65E0ACE4-B404-4485-87A4-5907277D9858}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  723. <PropertyList>
  724. <Property Name="HFRatio" Type="Real32" Value="5.5"/>
  725. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  726. <Property Name="PreDelay" Type="Real32" Value="0.2"/>
  727. <Property Name="ReverbTime" Type="Real32" Value="2"/>
  728. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  729. </PropertyList>
  730. </Effect>
  731. <Effect Name="Small_Tiled_Room1" ID="{41EEE722-3009-4B3F-8820-F414623783E3}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  732. <PropertyList>
  733. <Property Name="HFRatio" Type="Real32" Value="8"/>
  734. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  735. <Property Name="ReverbTime" Type="Real32" Value="1.5"/>
  736. <Property Name="WetLevel" Type="Real32" Value="-25"/>
  737. </PropertyList>
  738. </Effect>
  739. <Effect Name="Small_Wooden_Room1" ID="{F7CBE859-36A8-4174-B553-AE32A7FE95FA}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  740. <PropertyList>
  741. <Property Name="HFRatio" Type="Real32" Value="10"/>
  742. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  743. <Property Name="ReverbTime" Type="Real32" Value="1.5"/>
  744. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  745. </PropertyList>
  746. </Effect>
  747. <Effect Name="Tunnel1" ID="{CC44B890-9865-4157-965F-86FED27BC4C6}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  748. <PropertyList>
  749. <Property Name="HFRatio" Type="Real32" Value="9.5"/>
  750. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  751. <Property Name="ReverbTime" Type="Real32" Value="5"/>
  752. <Property Name="WetLevel" Type="Real32" Value="-30"/>
  753. </PropertyList>
  754. </Effect>
  755. <Effect Name="Underground_Parking1" ID="{8DA66AA3-6CA0-41A0-B7A2-BB6FCABFCDA8}" PluginName="Wwise Matrix Reverb" CompanyID="0" PluginID="115" PluginType="3">
  756. <PropertyList>
  757. <Property Name="DryLevel" Type="Real32" Value="-0.3"/>
  758. <Property Name="HFRatio" Type="Real32" Value="7.5"/>
  759. <Property Name="NumberOfDelays" Type="int32" Value="12"/>
  760. <Property Name="PreDelay" Type="Real32" Value="0.02"/>
  761. <Property Name="ReverbTime" Type="Real32" Value="1.8"/>
  762. <Property Name="WetLevel" Type="Real32" Value="-22"/>
  763. </PropertyList>
  764. </Effect>
  765. </ChildrenList>
  766. </Folder>
  767. <Folder Name="RoomVerb" ID="{D16E55BD-B819-4EBE-8C66-2CA5A5FE1653}" ShortID="6853472">
  768. <ChildrenList>
  769. <Folder Name="Halls" ID="{98C56DE1-706D-4D92-B380-69CDF64D5DF2}" ShortID="763157902">
  770. <ChildrenList>
  771. <Effect Name="Hall_Large_Bright" ID="{CB602948-2D1D-4977-A8D5-378184293E80}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  772. <PropertyList>
  773. <Property Name="DecayTime" Type="Real32" Value="4.9"/>
  774. <Property Name="Density" Type="Real32" Value="70"/>
  775. <Property Name="DryLevel" Type="Real32" Value="-2"/>
  776. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  777. <Property Name="ERPattern" Type="int32" Value="15"/>
  778. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  779. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  780. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  781. <Property Name="Filter3Gain" Type="Real32" Value="3"/>
  782. <Property Name="HFDamping" Type="Real32" Value="1.6"/>
  783. <Property Name="PreDelay" Type="Real32" Value="75"/>
  784. <Property Name="Quality" Type="int32" Value="14"/>
  785. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  786. <Property Name="RoomShape" Type="Real32" Value="55"/>
  787. <Property Name="RoomSize" Type="Real32" Value="49"/>
  788. </PropertyList>
  789. </Effect>
  790. <Effect Name="Hall_Medium_Bright" ID="{3C3845B2-C76E-4634-9108-83FA43A5A7BC}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  791. <PropertyList>
  792. <Property Name="DecayTime" Type="Real32" Value="3.2"/>
  793. <Property Name="Density" Type="Real32" Value="70"/>
  794. <Property Name="Diffusion" Type="Real32" Value="76"/>
  795. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  796. <Property Name="ERPattern" Type="int32" Value="15"/>
  797. <Property Name="Filter1Freq" Type="Real32" Value="600"/>
  798. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  799. <Property Name="Filter2Freq" Type="Real32" Value="2000"/>
  800. <Property Name="Filter3Freq" Type="Real32" Value="6500"/>
  801. <Property Name="Filter3Gain" Type="Real32" Value="3"/>
  802. <Property Name="HFDamping" Type="Real32" Value="1.8"/>
  803. <Property Name="PreDelay" Type="Real32" Value="50"/>
  804. <Property Name="Quality" Type="int32" Value="14"/>
  805. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  806. <Property Name="RoomShape" Type="Real32" Value="55"/>
  807. <Property Name="RoomSize" Type="Real32" Value="28"/>
  808. <Property Name="StereoWidth" Type="Real32" Value="165"/>
  809. </PropertyList>
  810. </Effect>
  811. <Effect Name="Hall_Small_Bright" ID="{D8AD1955-D2BA-4C88-A806-E2D8AB47A90B}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  812. <PropertyList>
  813. <Property Name="DecayTime" Type="Real32" Value="2.2"/>
  814. <Property Name="Density" Type="Real32" Value="44"/>
  815. <Property Name="ERLevel" Type="Real32" Value="-25"/>
  816. <Property Name="ERPattern" Type="int32" Value="13"/>
  817. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  818. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  819. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  820. <Property Name="Filter3Gain" Type="Real32" Value="4.5"/>
  821. <Property Name="HFDamping" Type="Real32" Value="1.85"/>
  822. <Property Name="PreDelay" Type="Real32" Value="40"/>
  823. <Property Name="Quality" Type="int32" Value="14"/>
  824. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  825. <Property Name="RoomShape" Type="Real32" Value="55"/>
  826. <Property Name="RoomSize" Type="Real32" Value="24"/>
  827. </PropertyList>
  828. </Effect>
  829. <Effect Name="Hall_Large_Dark" ID="{0F6A7D6D-131C-4650-9561-FC05F5C7A37B}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  830. <PropertyList>
  831. <Property Name="DecayTime" Type="Real32" Value="5.2"/>
  832. <Property Name="Density" Type="Real32" Value="70"/>
  833. <Property Name="ERLevel" Type="Real32" Value="-25"/>
  834. <Property Name="ERPattern" Type="int32" Value="11"/>
  835. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  836. <Property Name="Filter1Gain" Type="Real32" Value="4"/>
  837. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  838. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  839. <Property Name="Filter3Gain" Type="Real32" Value="-11.5"/>
  840. <Property Name="HFDamping" Type="Real32" Value="5.05"/>
  841. <Property Name="PreDelay" Type="Real32" Value="75"/>
  842. <Property Name="Quality" Type="int32" Value="16"/>
  843. <Property Name="ReverbLevel" Type="Real32" Value="-25"/>
  844. <Property Name="RoomShape" Type="Real32" Value="55"/>
  845. <Property Name="RoomSize" Type="Real32" Value="73"/>
  846. </PropertyList>
  847. </Effect>
  848. <Effect Name="Hall_Medium_Dark" ID="{626B6E38-739B-4689-819F-F81AD3788BDE}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  849. <PropertyList>
  850. <Property Name="DecayTime" Type="Real32" Value="3.8"/>
  851. <Property Name="Density" Type="Real32" Value="70"/>
  852. <Property Name="Diffusion" Type="Real32" Value="64"/>
  853. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  854. <Property Name="ERPattern" Type="int32" Value="10"/>
  855. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  856. <Property Name="Filter1Gain" Type="Real32" Value="4"/>
  857. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  858. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  859. <Property Name="Filter3Gain" Type="Real32" Value="-11.5"/>
  860. <Property Name="HFDamping" Type="Real32" Value="5.05"/>
  861. <Property Name="PreDelay" Type="Real32" Value="48"/>
  862. <Property Name="Quality" Type="int32" Value="16"/>
  863. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  864. <Property Name="RoomShape" Type="Real32" Value="55"/>
  865. <Property Name="RoomSize" Type="Real32" Value="53"/>
  866. <Property Name="StereoWidth" Type="Real32" Value="165"/>
  867. </PropertyList>
  868. </Effect>
  869. <Effect Name="Hall_Guns" ID="{B35D266A-CE6E-40A1-B197-14C12F9C21B1}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  870. <PropertyList>
  871. <Property Name="DecayTime" Type="Real32" Value="4.8"/>
  872. <Property Name="Density" Type="Real32" Value="70"/>
  873. <Property Name="ERLevel" Type="Real32" Value="-16"/>
  874. <Property Name="ERPattern" Type="int32" Value="12"/>
  875. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  876. <Property Name="Filter1Gain" Type="Real32" Value="1"/>
  877. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  878. <Property Name="Filter2Freq" Type="Real32" Value="9860"/>
  879. <Property Name="Filter2Gain" Type="Real32" Value="-2.5"/>
  880. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  881. <Property Name="Filter3Gain" Type="Real32" Value="1"/>
  882. <Property Name="HFDamping" Type="Real32" Value="3"/>
  883. <Property Name="PreDelay" Type="Real32" Value="137"/>
  884. <Property Name="Quality" Type="int32" Value="14"/>
  885. <Property Name="ReverbLevel" Type="Real32" Value="-21"/>
  886. <Property Name="RoomShape" Type="Real32" Value="55"/>
  887. <Property Name="RoomSize" Type="Real32" Value="45"/>
  888. </PropertyList>
  889. </Effect>
  890. <Effect Name="Hall_Large" ID="{6D154498-FF6D-4823-96FC-56841B70E079}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  891. <PropertyList>
  892. <Property Name="DecayTime" Type="Real32" Value="4.9"/>
  893. <Property Name="Density" Type="Real32" Value="70"/>
  894. <Property Name="ERFrontBackDelay" Type="Real32" Value="10"/>
  895. <Property Name="ERLevel" Type="Real32" Value="-6"/>
  896. <Property Name="ERPattern" Type="int32" Value="15"/>
  897. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  898. <Property Name="Filter1Gain" Type="Real32" Value="3"/>
  899. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  900. <Property Name="HFDamping" Type="Real32" Value="2.35"/>
  901. <Property Name="PreDelay" Type="Real32" Value="74"/>
  902. <Property Name="Quality" Type="int32" Value="14"/>
  903. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  904. <Property Name="RoomShape" Type="Real32" Value="55"/>
  905. <Property Name="RoomSize" Type="Real32" Value="49"/>
  906. </PropertyList>
  907. </Effect>
  908. <Effect Name="Hall_Medium" ID="{50286348-176A-4235-9E4C-CA5F73D87818}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  909. <PropertyList>
  910. <Property Name="DecayTime" Type="Real32" Value="3.2"/>
  911. <Property Name="Density" Type="Real32" Value="58"/>
  912. <Property Name="DryLevel" Type="Real32" Value="-6.3"/>
  913. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  914. <Property Name="ERPattern" Type="int32" Value="14"/>
  915. <Property Name="EnableToneControls" Type="bool" Value="True"/>
  916. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  917. <Property Name="Filter1Gain" Type="Real32" Value="2"/>
  918. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  919. <Property Name="HFDamping" Type="Real32" Value="2.35"/>
  920. <Property Name="PreDelay" Type="Real32" Value="50"/>
  921. <Property Name="Quality" Type="int32" Value="16"/>
  922. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  923. <Property Name="RoomShape" Type="Real32" Value="55"/>
  924. <Property Name="RoomSize" Type="Real32" Value="38"/>
  925. <Property Name="StereoWidth" Type="Real32" Value="165"/>
  926. </PropertyList>
  927. </Effect>
  928. <Effect Name="Hall_Small" ID="{D65B5F04-B83B-412C-9434-34A13A477E24}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  929. <PropertyList>
  930. <Property Name="DecayTime" Type="Real32" Value="1.9"/>
  931. <Property Name="Density" Type="Real32" Value="44"/>
  932. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  933. <Property Name="ERPattern" Type="int32" Value="13"/>
  934. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  935. <Property Name="Filter1Gain" Type="Real32" Value="2"/>
  936. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  937. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  938. <Property Name="Filter3Gain" Type="Real32" Value="-0.5"/>
  939. <Property Name="HFDamping" Type="Real32" Value="2.8"/>
  940. <Property Name="PreDelay" Type="Real32" Value="32"/>
  941. <Property Name="Quality" Type="int32" Value="16"/>
  942. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  943. <Property Name="RoomShape" Type="Real32" Value="55"/>
  944. <Property Name="RoomSize" Type="Real32" Value="22"/>
  945. <Property Name="StereoWidth" Type="Real32" Value="155"/>
  946. </PropertyList>
  947. </Effect>
  948. <Effect Name="Hall_Large_TooBright" ID="{5F144EE3-081F-4BEC-ABCF-F88E111FECAE}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  949. <PropertyList>
  950. <Property Name="DecayTime" Type="Real32" Value="4.9"/>
  951. <Property Name="Density" Type="Real32" Value="70"/>
  952. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  953. <Property Name="ERPattern" Type="int32" Value="15"/>
  954. <Property Name="Filter1Freq" Type="Real32" Value="600"/>
  955. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  956. <Property Name="Filter2Freq" Type="Real32" Value="2000"/>
  957. <Property Name="Filter3Freq" Type="Real32" Value="5000"/>
  958. <Property Name="Filter3Gain" Type="Real32" Value="3.5"/>
  959. <Property Name="HFDamping" Type="Real32" Value="1.25"/>
  960. <Property Name="PreDelay" Type="Real32" Value="74"/>
  961. <Property Name="Quality" Type="int32" Value="14"/>
  962. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  963. <Property Name="RoomShape" Type="Real32" Value="55"/>
  964. <Property Name="RoomSize" Type="Real32" Value="49"/>
  965. </PropertyList>
  966. </Effect>
  967. <Effect Name="Hall_Stop_Screaming" ID="{8CDB5849-1E3A-4CE7-B5EB-0E90DBDF1D10}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  968. <PropertyList>
  969. <Property Name="DecayTime" Type="Real32" Value="4.3"/>
  970. <Property Name="Density" Type="Real32" Value="70"/>
  971. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  972. <Property Name="ERPattern" Type="int32" Value="16"/>
  973. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  974. <Property Name="Filter1Gain" Type="Real32" Value="-3"/>
  975. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  976. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  977. <Property Name="HFDamping" Type="Real32" Value="4.1"/>
  978. <Property Name="PreDelay" Type="Real32" Value="64"/>
  979. <Property Name="Quality" Type="int32" Value="14"/>
  980. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  981. <Property Name="RoomShape" Type="Real32" Value="55"/>
  982. <Property Name="RoomSize" Type="Real32" Value="34"/>
  983. <Property Name="StereoWidth" Type="Real32" Value="165"/>
  984. </PropertyList>
  985. </Effect>
  986. <Effect Name="Hall_Conversation" ID="{E2C3BD70-E5E4-46A5-BDA6-99A92FAAC1AC}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  987. <PropertyList>
  988. <Property Name="DecayTime" Type="Real32" Value="4.3"/>
  989. <Property Name="Density" Type="Real32" Value="70"/>
  990. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  991. <Property Name="ERPattern" Type="int32" Value="16"/>
  992. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  993. <Property Name="Filter1Gain" Type="Real32" Value="-0.5"/>
  994. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  995. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  996. <Property Name="HFDamping" Type="Real32" Value="4.1"/>
  997. <Property Name="PreDelay" Type="Real32" Value="58"/>
  998. <Property Name="Quality" Type="int32" Value="14"/>
  999. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  1000. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1001. <Property Name="RoomSize" Type="Real32" Value="34"/>
  1002. </PropertyList>
  1003. </Effect>
  1004. </ChildrenList>
  1005. </Folder>
  1006. <Folder Name="Claustrophobia" ID="{6D163BFA-0E83-434C-AF4D-FCA50934152A}" ShortID="143120504">
  1007. <ChildrenList>
  1008. <Effect Name="Not_A_Yellow_Submarine" ID="{B5719071-C58D-49FA-8766-B1D986D017EC}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1009. <PropertyList>
  1010. <Property Name="DecayTime" Type="Real32" Value="1.3"/>
  1011. <Property Name="Density" Type="Real32" Value="32"/>
  1012. <Property Name="ERLevel" Type="Real32" Value="-16"/>
  1013. <Property Name="ERPattern" Type="int32" Value="27"/>
  1014. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1015. <Property Name="Filter1Gain" Type="Real32" Value="-5"/>
  1016. <Property Name="Filter2Freq" Type="Real32" Value="7020"/>
  1017. <Property Name="Filter2Gain" Type="Real32" Value="-6"/>
  1018. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1019. <Property Name="Filter3Gain" Type="Real32" Value="1"/>
  1020. <Property Name="HFDamping" Type="Real32" Value="1.5"/>
  1021. <Property Name="PreDelay" Type="Real32" Value="42"/>
  1022. <Property Name="Quality" Type="int32" Value="6"/>
  1023. <Property Name="ReverbLevel" Type="Real32" Value="-15"/>
  1024. <Property Name="RoomShape" Type="Real32" Value="36"/>
  1025. <Property Name="RoomSize" Type="Real32" Value="-24"/>
  1026. <Property Name="StereoWidth" Type="Real32" Value="90"/>
  1027. </PropertyList>
  1028. </Effect>
  1029. <Effect Name="My_Closet" ID="{384A82A1-3C92-4AC5-AFC2-474F2080642C}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1030. <PropertyList>
  1031. <Property Name="DecayTime" Type="Real32" Value="0.2"/>
  1032. <Property Name="Density" Type="Real32" Value="32"/>
  1033. <Property Name="ERLevel" Type="Real32" Value="-19"/>
  1034. <Property Name="ERPattern" Type="int32" Value="27"/>
  1035. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1036. <Property Name="Filter1Gain" Type="Real32" Value="-1.5"/>
  1037. <Property Name="Filter2Freq" Type="Real32" Value="300"/>
  1038. <Property Name="Filter2Gain" Type="Real32" Value="6"/>
  1039. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1040. <Property Name="Filter3InsertPos" Type="int32" Value="0"/>
  1041. <Property Name="HFDamping" Type="Real32" Value="2.65"/>
  1042. <Property Name="PreDelay" Type="Real32" Value="6"/>
  1043. <Property Name="ReverbLevel" Type="Real32" Value="-17"/>
  1044. <Property Name="RoomShape" Type="Real32" Value="66"/>
  1045. <Property Name="RoomSize" Type="Real32" Value="-21"/>
  1046. <Property Name="StereoWidth" Type="Real32" Value="60"/>
  1047. </PropertyList>
  1048. </Effect>
  1049. <Effect Name="Robotic_Trash" ID="{18FEB1E8-36C5-4B2D-959A-8F3CE9ECBB0E}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1050. <PropertyList>
  1051. <Property Name="DecayTime" Type="Real32" Value="0.6"/>
  1052. <Property Name="Density" Type="Real32" Value="0"/>
  1053. <Property Name="Diffusion" Type="Real32" Value="0"/>
  1054. <Property Name="DryLevel" Type="Real32" Value="-3"/>
  1055. <Property Name="ERLevel" Type="Real32" Value="-17"/>
  1056. <Property Name="ERPattern" Type="int32" Value="27"/>
  1057. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1058. <Property Name="Filter1Gain" Type="Real32" Value="-13"/>
  1059. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1060. <Property Name="Filter2Gain" Type="Real32" Value="9"/>
  1061. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1062. <Property Name="HFDamping" Type="Real32" Value="0.5"/>
  1063. <Property Name="PreDelay" Type="Real32" Value="0"/>
  1064. <Property Name="Quality" Type="int32" Value="2"/>
  1065. <Property Name="ReverbLevel" Type="Real32" Value="-13"/>
  1066. <Property Name="RoomShape" Type="Real32" Value="36"/>
  1067. <Property Name="RoomSize" Type="Real32" Value="-100"/>
  1068. <Property Name="StereoWidth" Type="Real32" Value="0"/>
  1069. </PropertyList>
  1070. </Effect>
  1071. <Effect Name="Dirty_Washing_Machine" ID="{824764DD-7364-411D-AF50-DEDF8E3DCC48}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1072. <PropertyList>
  1073. <Property Name="DecayTime" Type="Real32" Value="0.3"/>
  1074. <Property Name="Density" Type="Real32" Value="19"/>
  1075. <Property Name="Diffusion" Type="Real32" Value="55"/>
  1076. <Property Name="ERLevel" Type="Real32" Value="-17"/>
  1077. <Property Name="ERPattern" Type="int32" Value="26"/>
  1078. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1079. <Property Name="Filter1Gain" Type="Real32" Value="-7"/>
  1080. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1081. <Property Name="Filter2Gain" Type="Real32" Value="12"/>
  1082. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1083. <Property Name="Filter3Gain" Type="Real32" Value="0.5"/>
  1084. <Property Name="HFDamping" Type="Real32" Value="0.5"/>
  1085. <Property Name="PreDelay" Type="Real32" Value="12"/>
  1086. <Property Name="Quality" Type="int32" Value="2"/>
  1087. <Property Name="ReverbLevel" Type="Real32" Value="-14"/>
  1088. <Property Name="RoomShape" Type="Real32" Value="51"/>
  1089. <Property Name="RoomSize" Type="Real32" Value="-100"/>
  1090. <Property Name="StereoWidth" Type="Real32" Value="0"/>
  1091. </PropertyList>
  1092. </Effect>
  1093. <Effect Name="Phone_Booth" ID="{180A35FE-BF4E-4BCD-8D7F-872B580E55EC}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1094. <PropertyList>
  1095. <Property Name="DecayTime" Type="Real32" Value="0.3"/>
  1096. <Property Name="Density" Type="Real32" Value="32"/>
  1097. <Property Name="DryLevel" Type="Real32" Value="-3"/>
  1098. <Property Name="ERLevel" Type="Real32" Value="-10"/>
  1099. <Property Name="ERPattern" Type="int32" Value="27"/>
  1100. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1101. <Property Name="Filter1Gain" Type="Real32" Value="-5"/>
  1102. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  1103. <Property Name="Filter2Freq" Type="Real32" Value="6450"/>
  1104. <Property Name="Filter2Gain" Type="Real32" Value="8.5"/>
  1105. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1106. <Property Name="HFDamping" Type="Real32" Value="3.4"/>
  1107. <Property Name="PreDelay" Type="Real32" Value="5"/>
  1108. <Property Name="Quality" Type="int32" Value="6"/>
  1109. <Property Name="ReverbLevel" Type="Real32" Value="-26"/>
  1110. <Property Name="RoomShape" Type="Real32" Value="36"/>
  1111. <Property Name="RoomSize" Type="Real32" Value="-20"/>
  1112. <Property Name="StereoWidth" Type="Real32" Value="0"/>
  1113. </PropertyList>
  1114. </Effect>
  1115. <Effect Name="Inside_My_Head" ID="{94B53301-9AA1-468F-8419-92AEDAAE39DF}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1116. <PropertyList>
  1117. <Property Name="DecayTime" Type="Real32" Value="0.8"/>
  1118. <Property Name="Density" Type="Real32" Value="82"/>
  1119. <Property Name="Diffusion" Type="Real32" Value="0"/>
  1120. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1121. <Property Name="ERLevel" Type="Real32" Value="-3"/>
  1122. <Property Name="ERPattern" Type="int32" Value="24"/>
  1123. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1124. <Property Name="Filter1Gain" Type="Real32" Value="-9.5"/>
  1125. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1126. <Property Name="Filter2Gain" Type="Real32" Value="9"/>
  1127. <Property Name="Filter3Freq" Type="Real32" Value="6930"/>
  1128. <Property Name="HFDamping" Type="Real32" Value="0.5"/>
  1129. <Property Name="PreDelay" Type="Real32" Value="144"/>
  1130. <Property Name="Quality" Type="int32" Value="4"/>
  1131. <Property Name="ReverbLevel" Type="Real32" Value="-16"/>
  1132. <Property Name="RoomSize" Type="Real32" Value="100"/>
  1133. <Property Name="StereoWidth" Type="Real32" Value="0"/>
  1134. </PropertyList>
  1135. </Effect>
  1136. <Effect Name="Inside_Your_Head" ID="{AE2D0AE1-8963-400A-AA4A-52A7A6397F89}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1137. <PropertyList>
  1138. <Property Name="DecayTime" Type="Real32" Value="1"/>
  1139. <Property Name="Density" Type="Real32" Value="82"/>
  1140. <Property Name="Diffusion" Type="Real32" Value="0"/>
  1141. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1142. <Property Name="ERLevel" Type="Real32" Value="-3"/>
  1143. <Property Name="ERPattern" Type="int32" Value="24"/>
  1144. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1145. <Property Name="Filter1Gain" Type="Real32" Value="-8"/>
  1146. <Property Name="Filter2Freq" Type="Real32" Value="490"/>
  1147. <Property Name="Filter2Gain" Type="Real32" Value="9"/>
  1148. <Property Name="Filter3Freq" Type="Real32" Value="6930"/>
  1149. <Property Name="Filter3Gain" Type="Real32" Value="-24"/>
  1150. <Property Name="HFDamping" Type="Real32" Value="0.5"/>
  1151. <Property Name="PreDelay" Type="Real32" Value="200"/>
  1152. <Property Name="Quality" Type="int32" Value="4"/>
  1153. <Property Name="ReverbLevel" Type="Real32" Value="-14"/>
  1154. <Property Name="RoomSize" Type="Real32" Value="-100"/>
  1155. <Property Name="StereoWidth" Type="Real32" Value="0"/>
  1156. </PropertyList>
  1157. </Effect>
  1158. </ChildrenList>
  1159. </Folder>
  1160. <Folder Name="Plates" ID="{D2AFE562-3684-4BF0-83FE-82AB5C0D848B}" ShortID="65904299">
  1161. <ChildrenList>
  1162. <Effect Name="Plate_Medium" ID="{33384D0C-6ACB-4E3D-AC82-73AAB3AE1CA5}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1163. <PropertyList>
  1164. <Property Name="DecayTime" Type="Real32" Value="1.9"/>
  1165. <Property Name="Density" Type="Real32" Value="60"/>
  1166. <Property Name="Diffusion" Type="Real32" Value="74"/>
  1167. <Property Name="ERLevel" Type="Real32" Value="-22"/>
  1168. <Property Name="ERPattern" Type="int32" Value="19"/>
  1169. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1170. <Property Name="Filter1Gain" Type="Real32" Value="-2.5"/>
  1171. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1172. <Property Name="HFDamping" Type="Real32" Value="3.05"/>
  1173. <Property Name="PreDelay" Type="Real32" Value="20"/>
  1174. <Property Name="Quality" Type="int32" Value="10"/>
  1175. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1176. <Property Name="RoomShape" Type="Real32" Value="0"/>
  1177. <Property Name="RoomSize" Type="Real32" Value="27"/>
  1178. <Property Name="StereoWidth" Type="Real32" Value="165"/>
  1179. </PropertyList>
  1180. </Effect>
  1181. <Effect Name="Plate_Small" ID="{5681977F-CD7F-4D09-AA58-118BEFA48C8C}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1182. <PropertyList>
  1183. <Property Name="DecayTime" Type="Real32" Value="1.3"/>
  1184. <Property Name="Density" Type="Real32" Value="60"/>
  1185. <Property Name="Diffusion" Type="Real32" Value="74"/>
  1186. <Property Name="ERLevel" Type="Real32" Value="-18"/>
  1187. <Property Name="ERPattern" Type="int32" Value="18"/>
  1188. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1189. <Property Name="Filter1Gain" Type="Real32" Value="-2.5"/>
  1190. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1191. <Property Name="HFDamping" Type="Real32" Value="3.05"/>
  1192. <Property Name="PreDelay" Type="Real32" Value="15"/>
  1193. <Property Name="Quality" Type="int32" Value="10"/>
  1194. <Property Name="ReverbLevel" Type="Real32" Value="-19"/>
  1195. <Property Name="RoomShape" Type="Real32" Value="0"/>
  1196. <Property Name="RoomSize" Type="Real32" Value="27"/>
  1197. <Property Name="StereoWidth" Type="Real32" Value="155"/>
  1198. </PropertyList>
  1199. </Effect>
  1200. <Effect Name="Plate_Large" ID="{62CB7384-421D-4F9A-9CF1-E90F7336A07B}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1201. <PropertyList>
  1202. <Property Name="DecayTime" Type="Real32" Value="2.5"/>
  1203. <Property Name="Density" Type="Real32" Value="60"/>
  1204. <Property Name="Diffusion" Type="Real32" Value="74"/>
  1205. <Property Name="DryLevel" Type="Real32" Value="-3.3"/>
  1206. <Property Name="ERLevel" Type="Real32" Value="-28"/>
  1207. <Property Name="ERPattern" Type="int32" Value="20"/>
  1208. <Property Name="EnableToneControls" Type="bool" Value="True"/>
  1209. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1210. <Property Name="Filter1Gain" Type="Real32" Value="9"/>
  1211. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1212. <Property Name="HFDamping" Type="Real32" Value="2.85"/>
  1213. <Property Name="PreDelay" Type="Real32" Value="38"/>
  1214. <Property Name="Quality" Type="int32" Value="10"/>
  1215. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1216. <Property Name="RoomShape" Type="Real32" Value="0"/>
  1217. <Property Name="RoomSize" Type="Real32" Value="20"/>
  1218. </PropertyList>
  1219. </Effect>
  1220. <Effect Name="Plate_Sizzle" ID="{D4A5BBF1-6A59-47A7-BB97-E7695900B72F}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1221. <PropertyList>
  1222. <Property Name="DecayTime" Type="Real32" Value="2.5"/>
  1223. <Property Name="Density" Type="Real32" Value="60"/>
  1224. <Property Name="Diffusion" Type="Real32" Value="74"/>
  1225. <Property Name="DryLevel" Type="Real32" Value="-9.3"/>
  1226. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1227. <Property Name="ERPattern" Type="int32" Value="21"/>
  1228. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1229. <Property Name="Filter1Gain" Type="Real32" Value="-2.5"/>
  1230. <Property Name="Filter2Freq" Type="Real32" Value="780"/>
  1231. <Property Name="Filter3Freq" Type="Real32" Value="7210"/>
  1232. <Property Name="Filter3Gain" Type="Real32" Value="5"/>
  1233. <Property Name="HFDamping" Type="Real32" Value="1.75"/>
  1234. <Property Name="PreDelay" Type="Real32" Value="40"/>
  1235. <Property Name="Quality" Type="int32" Value="10"/>
  1236. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1237. <Property Name="RoomShape" Type="Real32" Value="0"/>
  1238. <Property Name="RoomSize" Type="Real32" Value="20"/>
  1239. <Property Name="StereoWidth" Type="Real32" Value="155"/>
  1240. </PropertyList>
  1241. </Effect>
  1242. </ChildrenList>
  1243. </Folder>
  1244. <Folder Name="Rooms" ID="{2A535D3E-9FB6-4EF9-AE14-0DCC404A4CDA}" ShortID="169312458">
  1245. <ChildrenList>
  1246. <Effect Name="Room_Large" ID="{AD8EFAFC-7121-4D5F-BE4D-B13FBD6CEBAE}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1247. <PropertyList>
  1248. <Property Name="DecayTime" Type="Real32" Value="1.8"/>
  1249. <Property Name="Density" Type="Real32" Value="70"/>
  1250. <Property Name="Diffusion" Type="Real32" Value="46"/>
  1251. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1252. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1253. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1254. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  1255. <Property Name="HFDamping" Type="Real32" Value="2.7"/>
  1256. <Property Name="PreDelay" Type="Real32" Value="35"/>
  1257. <Property Name="Quality" Type="int32" Value="12"/>
  1258. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  1259. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1260. <Property Name="RoomSize" Type="Real32" Value="15"/>
  1261. <Property Name="StereoWidth" Type="Real32" Value="140"/>
  1262. </PropertyList>
  1263. </Effect>
  1264. <Effect Name="Room_Medium" ID="{F5C06EC1-E4A4-4332-A7D3-A89E2986B74F}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1265. <PropertyList>
  1266. <Property Name="DecayTime" Type="Real32" Value="1.1"/>
  1267. <Property Name="Density" Type="Real32" Value="100"/>
  1268. <Property Name="Diffusion" Type="Real32" Value="46"/>
  1269. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1270. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1271. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1272. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  1273. <Property Name="HFDamping" Type="Real32" Value="2.7"/>
  1274. <Property Name="Quality" Type="int32" Value="12"/>
  1275. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1276. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1277. <Property Name="RoomSize" Type="Real32" Value="15"/>
  1278. <Property Name="StereoWidth" Type="Real32" Value="115"/>
  1279. </PropertyList>
  1280. </Effect>
  1281. <Effect Name="Room_Small" ID="{577F1466-A63B-47F7-98BD-C56E433F8B5D}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1282. <PropertyList>
  1283. <Property Name="DecayTime" Type="Real32" Value="0.7"/>
  1284. <Property Name="Density" Type="Real32" Value="44"/>
  1285. <Property Name="Diffusion" Type="Real32" Value="46"/>
  1286. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1287. <Property Name="ERPattern" Type="int32" Value="22"/>
  1288. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1289. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1290. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  1291. <Property Name="HFDamping" Type="Real32" Value="2.7"/>
  1292. <Property Name="PreDelay" Type="Real32" Value="12"/>
  1293. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1294. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1295. <Property Name="RoomSize" Type="Real32" Value="15"/>
  1296. <Property Name="StereoWidth" Type="Real32" Value="90"/>
  1297. </PropertyList>
  1298. </Effect>
  1299. <Effect Name="Room_Medium_Tiled" ID="{0C0A3A92-A571-4FDB-AB40-ACFED04E0217}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1300. <PropertyList>
  1301. <Property Name="DecayTime" Type="Real32" Value="1.1"/>
  1302. <Property Name="Density" Type="Real32" Value="72"/>
  1303. <Property Name="Diffusion" Type="Real32" Value="72"/>
  1304. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1305. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1306. <Property Name="Filter2Freq" Type="Real32" Value="6000"/>
  1307. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1308. <Property Name="Filter3Gain" Type="Real32" Value="-2"/>
  1309. <Property Name="HFDamping" Type="Real32" Value="1.05"/>
  1310. <Property Name="PreDelay" Type="Real32" Value="26"/>
  1311. <Property Name="Quality" Type="int32" Value="10"/>
  1312. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1313. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1314. <Property Name="RoomSize" Type="Real32" Value="44"/>
  1315. <Property Name="StereoWidth" Type="Real32" Value="135"/>
  1316. </PropertyList>
  1317. </Effect>
  1318. <Effect Name="Room_Medium_High_Absorbtion" ID="{E22DBBB6-7656-4B93-A28D-C003FD416889}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1319. <PropertyList>
  1320. <Property Name="Density" Type="Real32" Value="70"/>
  1321. <Property Name="Diffusion" Type="Real32" Value="46"/>
  1322. <Property Name="ERLevel" Type="Real32" Value="-23"/>
  1323. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1324. <Property Name="Filter2Freq" Type="Real32" Value="10520"/>
  1325. <Property Name="Filter2Gain" Type="Real32" Value="-12"/>
  1326. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1327. <Property Name="Filter3Gain" Type="Real32" Value="-12"/>
  1328. <Property Name="HFDamping" Type="Real32" Value="7"/>
  1329. <Property Name="Quality" Type="int32" Value="10"/>
  1330. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1331. <Property Name="RoomShape" Type="Real32" Value="55"/>
  1332. <Property Name="RoomSize" Type="Real32" Value="15"/>
  1333. <Property Name="StereoWidth" Type="Real32" Value="115"/>
  1334. </PropertyList>
  1335. </Effect>
  1336. </ChildrenList>
  1337. </Folder>
  1338. <Folder Name="Cathedrals" ID="{DFEE1FB0-5C6E-4BF1-AB5E-3835E6DD0723}" ShortID="978789462">
  1339. <ChildrenList>
  1340. <Effect Name="Holy" ID="{CC7B8638-C670-4AD5-B3FB-331EA81037F6}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1341. <PropertyList>
  1342. <Property Name="DecayTime" Type="Real32" Value="8"/>
  1343. <Property Name="Density" Type="Real32" Value="70"/>
  1344. <Property Name="DryLevel" Type="Real32" Value="-11.3"/>
  1345. <Property Name="ERFrontBackDelay" Type="Real32" Value="14"/>
  1346. <Property Name="ERLevel" Type="Real32" Value="-24"/>
  1347. <Property Name="ERPattern" Type="int32" Value="9"/>
  1348. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1349. <Property Name="Filter1Gain" Type="Real32" Value="-0.5"/>
  1350. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  1351. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1352. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  1353. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  1354. <Property Name="HFDamping" Type="Real32" Value="5.7"/>
  1355. <Property Name="PreDelay" Type="Real32" Value="180"/>
  1356. <Property Name="Quality" Type="int32" Value="14"/>
  1357. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  1358. <Property Name="RoomSize" Type="Real32" Value="100"/>
  1359. <Property Name="StereoWidth" Type="Real32" Value="172"/>
  1360. </PropertyList>
  1361. </Effect>
  1362. <Effect Name="Medium" ID="{AEB3F175-958B-45F2-A4C2-3FBD4F456568}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1363. <PropertyList>
  1364. <Property Name="DecayTime" Type="Real32" Value="5.8"/>
  1365. <Property Name="Density" Type="Real32" Value="70"/>
  1366. <Property Name="ERLevel" Type="Real32" Value="-28"/>
  1367. <Property Name="ERPattern" Type="int32" Value="9"/>
  1368. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1369. <Property Name="Filter1Gain" Type="Real32" Value="-2"/>
  1370. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  1371. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1372. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  1373. <Property Name="Filter3Gain" Type="Real32" Value="-4.5"/>
  1374. <Property Name="HFDamping" Type="Real32" Value="5.7"/>
  1375. <Property Name="PreDelay" Type="Real32" Value="120"/>
  1376. <Property Name="Quality" Type="int32" Value="14"/>
  1377. <Property Name="ReverbLevel" Type="Real32" Value="-22"/>
  1378. <Property Name="RoomSize" Type="Real32" Value="100"/>
  1379. <Property Name="StereoWidth" Type="Real32" Value="172"/>
  1380. </PropertyList>
  1381. </Effect>
  1382. <Effect Name="Church_Small_Wood" ID="{940CCB47-F031-4C6A-B0E6-726CAC418C02}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1383. <PropertyList>
  1384. <Property Name="DecayTime" Type="Real32" Value="1.3"/>
  1385. <Property Name="Density" Type="Real32" Value="27"/>
  1386. <Property Name="ERLevel" Type="Real32" Value="-24"/>
  1387. <Property Name="ERPattern" Type="int32" Value="6"/>
  1388. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1389. <Property Name="Filter1Gain" Type="Real32" Value="-5.5"/>
  1390. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  1391. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1392. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  1393. <Property Name="Filter3Gain" Type="Real32" Value="-7"/>
  1394. <Property Name="HFDamping" Type="Real32" Value="3.7"/>
  1395. <Property Name="PreDelay" Type="Real32" Value="18"/>
  1396. <Property Name="Quality" Type="int32" Value="12"/>
  1397. <Property Name="ReverbLevel" Type="Real32" Value="-23"/>
  1398. <Property Name="RoomSize" Type="Real32" Value="20"/>
  1399. </PropertyList>
  1400. </Effect>
  1401. </ChildrenList>
  1402. </Folder>
  1403. <Folder Name="Huge Spaces" ID="{BA977855-2013-4BEC-9DA1-14012C02AEB5}" ShortID="987290544">
  1404. <ChildrenList>
  1405. <Effect Name="Machine_Gun_Hangar" ID="{B8FD966C-FC0F-4CD3-8236-B28DF27CDE7D}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1406. <PropertyList>
  1407. <Property Name="DecayTime" Type="Real32" Value="4.6"/>
  1408. <Property Name="Density" Type="Real32" Value="100"/>
  1409. <Property Name="Diffusion" Type="Real32" Value="53"/>
  1410. <Property Name="ERLevel" Type="Real32" Value="-15"/>
  1411. <Property Name="ERPattern" Type="int32" Value="30"/>
  1412. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1413. <Property Name="Filter1Gain" Type="Real32" Value="-4.5"/>
  1414. <Property Name="Filter1InsertPos" Type="int32" Value="2"/>
  1415. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1416. <Property Name="Filter3Freq" Type="Real32" Value="11000"/>
  1417. <Property Name="Filter3Gain" Type="Real32" Value="1"/>
  1418. <Property Name="HFDamping" Type="Real32" Value="5.3"/>
  1419. <Property Name="PreDelay" Type="Real32" Value="80"/>
  1420. <Property Name="Quality" Type="int32" Value="6"/>
  1421. <Property Name="ReverbLevel" Type="Real32" Value="-19"/>
  1422. <Property Name="RoomSize" Type="Real32" Value="100"/>
  1423. </PropertyList>
  1424. </Effect>
  1425. <Effect Name="Aluminium_Tank" ID="{0D20C91A-F750-47E0-AE32-00E5F2AA1272}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1426. <PropertyList>
  1427. <Property Name="DecayTime" Type="Real32" Value="10"/>
  1428. <Property Name="Density" Type="Real32" Value="100"/>
  1429. <Property Name="Diffusion" Type="Real32" Value="53"/>
  1430. <Property Name="ERLevel" Type="Real32" Value="-25"/>
  1431. <Property Name="ERPattern" Type="int32" Value="30"/>
  1432. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1433. <Property Name="Filter2Freq" Type="Real32" Value="2200"/>
  1434. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1435. <Property Name="Filter2Q" Type="Real32" Value="0.1"/>
  1436. <Property Name="Filter3Freq" Type="Real32" Value="15000"/>
  1437. <Property Name="Filter3Gain" Type="Real32" Value="-3.5"/>
  1438. <Property Name="HFDamping" Type="Real32" Value="10"/>
  1439. <Property Name="PreDelay" Type="Real32" Value="100"/>
  1440. <Property Name="Quality" Type="int32" Value="6"/>
  1441. <Property Name="ReverbLevel" Type="Real32" Value="-14"/>
  1442. <Property Name="RoomSize" Type="Real32" Value="71"/>
  1443. <Property Name="StereoWidth" Type="Real32" Value="130"/>
  1444. </PropertyList>
  1445. </Effect>
  1446. <Effect Name="Metal_Hangar" ID="{C4A4605C-42EF-476A-B53C-E31C7A442C24}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1447. <PropertyList>
  1448. <Property Name="DecayTime" Type="Real32" Value="6.2"/>
  1449. <Property Name="Density" Type="Real32" Value="94"/>
  1450. <Property Name="Diffusion" Type="Real32" Value="53"/>
  1451. <Property Name="ERLevel" Type="Real32" Value="-22"/>
  1452. <Property Name="ERPattern" Type="int32" Value="30"/>
  1453. <Property Name="Filter1Freq" Type="Real32" Value="590"/>
  1454. <Property Name="Filter1Gain" Type="Real32" Value="-7"/>
  1455. <Property Name="Filter2Freq" Type="Real32" Value="2200"/>
  1456. <Property Name="Filter2InsertPos" Type="int32" Value="0"/>
  1457. <Property Name="Filter2Q" Type="Real32" Value="0.1"/>
  1458. <Property Name="Filter3Freq" Type="Real32" Value="12000"/>
  1459. <Property Name="Filter3Gain" Type="Real32" Value="2.5"/>
  1460. <Property Name="HFDamping" Type="Real32" Value="5.65"/>
  1461. <Property Name="PreDelay" Type="Real32" Value="125"/>
  1462. <Property Name="Quality" Type="int32" Value="12"/>
  1463. <Property Name="RoomShape" Type="Real32" Value="0"/>
  1464. <Property Name="RoomSize" Type="Real32" Value="71"/>
  1465. <Property Name="StereoWidth" Type="Real32" Value="140"/>
  1466. </PropertyList>
  1467. </Effect>
  1468. <Effect Name="Space_Dreaming" ID="{4FF7C4B2-37B0-4DFF-8E8A-1420102AE2DD}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1469. <PropertyList>
  1470. <Property Name="DecayTime" Type="Real32" Value="5.8"/>
  1471. <Property Name="Density" Type="Real32" Value="100"/>
  1472. <Property Name="Diffusion" Type="Real32" Value="53"/>
  1473. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1474. <Property Name="ERLevel" Type="Real32" Value="-6"/>
  1475. <Property Name="ERPattern" Type="int32" Value="29"/>
  1476. <Property Name="Filter1Freq" Type="Real32" Value="490"/>
  1477. <Property Name="Filter1Gain" Type="Real32" Value="-11"/>
  1478. <Property Name="Filter2Freq" Type="Real32" Value="1250"/>
  1479. <Property Name="Filter2Gain" Type="Real32" Value="10"/>
  1480. <Property Name="Filter2Q" Type="Real32" Value="0.1"/>
  1481. <Property Name="Filter3Freq" Type="Real32" Value="10620"/>
  1482. <Property Name="Filter3Gain" Type="Real32" Value="-17.5"/>
  1483. <Property Name="HFDamping" Type="Real32" Value="7.05"/>
  1484. <Property Name="PreDelay" Type="Real32" Value="200"/>
  1485. <Property Name="Quality" Type="int32" Value="6"/>
  1486. <Property Name="ReverbLevel" Type="Real32" Value="-19"/>
  1487. <Property Name="RoomShape" Type="Real32" Value="81"/>
  1488. <Property Name="RoomSize" Type="Real32" Value="100"/>
  1489. <Property Name="StereoWidth" Type="Real32" Value="120"/>
  1490. </PropertyList>
  1491. </Effect>
  1492. <Effect Name="Space_Garage" ID="{1AF92D84-49DD-4BBC-8F29-6C6D10082B6E}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1493. <PropertyList>
  1494. <Property Name="Density" Type="Real32" Value="100"/>
  1495. <Property Name="Diffusion" Type="Real32" Value="45"/>
  1496. <Property Name="ERLevel" Type="Real32" Value="-17"/>
  1497. <Property Name="ERPattern" Type="int32" Value="30"/>
  1498. <Property Name="Filter1Freq" Type="Real32" Value="300"/>
  1499. <Property Name="Filter1Gain" Type="Real32" Value="4"/>
  1500. <Property Name="Filter2Freq" Type="Real32" Value="2480"/>
  1501. <Property Name="Filter2Gain" Type="Real32" Value="-24"/>
  1502. <Property Name="Filter3Freq" Type="Real32" Value="9290"/>
  1503. <Property Name="Filter3Gain" Type="Real32" Value="0.5"/>
  1504. <Property Name="Filter3InsertPos" Type="int32" Value="1"/>
  1505. <Property Name="HFDamping" Type="Real32" Value="1.4"/>
  1506. <Property Name="PreDelay" Type="Real32" Value="128"/>
  1507. <Property Name="ReverbLevel" Type="Real32" Value="-16"/>
  1508. <Property Name="RoomShape" Type="Real32" Value="69"/>
  1509. <Property Name="RoomSize" Type="Real32" Value="38"/>
  1510. <Property Name="StereoWidth" Type="Real32" Value="150"/>
  1511. </PropertyList>
  1512. </Effect>
  1513. </ChildrenList>
  1514. </Folder>
  1515. <Folder Name="Exteriors" ID="{F49A7F7F-6562-433E-A73C-FCF4A76B2582}" ShortID="1065687125">
  1516. <ChildrenList>
  1517. <Effect Name="Have_U_Ever_Been_Outside" ID="{FE29AE8D-FD86-4652-A95D-68D32F5760EC}" PluginName="Wwise RoomVerb" CompanyID="0" PluginID="118" PluginType="3">
  1518. <PropertyList>
  1519. <Property Name="DecayTime" Type="Real32" Value="1"/>
  1520. <Property Name="Density" Type="Real32" Value="50"/>
  1521. <Property Name="DryLevel" Type="Real32" Value="-9.3"/>
  1522. <Property Name="ERFrontBackDelay" Type="Real32" Value="3"/>
  1523. <Property Name="ERLevel" Type="Real32" Value="-12"/>
  1524. <Property Name="ERPattern" Type="int32" Value="29"/>
  1525. <Property Name="Filter1Freq" Type="Real32" Value="210"/>
  1526. <Property Name="Filter1Gain" Type="Real32" Value="1.5"/>
  1527. <Property Name="Filter2Freq" Type="Real32" Value="6830"/>
  1528. <Property Name="Filter2Gain" Type="Real32" Value="-7.5"/>
  1529. <Property Name="Filter2Q" Type="Real32" Value="0.65"/>
  1530. <Property Name="Filter3Freq" Type="Real32" Value="8440"/>
  1531. <Property Name="Filter3Gain" Type="Real32" Value="-4"/>
  1532. <Property Name="HFDamping" Type="Real32" Value="5.05"/>
  1533. <Property Name="PreDelay" Type="Real32" Value="145"/>
  1534. <Property Name="Quality" Type="int32" Value="12"/>
  1535. <Property Name="ReverbLevel" Type="Real32" Value="-1"/>
  1536. <Property Name="RoomSize" Type="Real32" Value="73"/>
  1537. <Property Name="StereoWidth" Type="Real32" Value="28"/>
  1538. </PropertyList>
  1539. </Effect>
  1540. </ChildrenList>
  1541. </Folder>
  1542. </ChildrenList>
  1543. </Folder>
  1544. <Folder Name="Flanger" ID="{7DAC593F-E45C-42D6-9C69-23A9DEC47B9D}" ShortID="177523455">
  1545. <ChildrenList>
  1546. <Folder Name="Flanging" ID="{BB44E83C-AB2B-4817-AD18-F0CF99AC37E4}" ShortID="256040100">
  1547. <ChildrenList>
  1548. <Effect Name="Standard" ID="{1A2EAB31-6283-4C0D-89B2-F050DF89D421}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1549. <PropertyList>
  1550. <Property Name="DelayTime" Type="Real32" Value="1"/>
  1551. <Property Name="FeedBackLevel" Type="Real32" Value="0.7"/>
  1552. <Property Name="FeedForwardLevel" Type="Real32" Value="0.7"/>
  1553. <Property Name="ModDepth" Type="Real32" Value="65"/>
  1554. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1555. <Property Name="ModWaveform" Type="int32" Value="1"/>
  1556. </PropertyList>
  1557. </Effect>
  1558. <Effect Name="Deep" ID="{76753DA8-3DCF-4812-A726-2745812F6C1B}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1559. <PropertyList>
  1560. <Property Name="FeedBackLevel" Type="Real32" Value="0.75"/>
  1561. <Property Name="FeedForwardLevel" Type="Real32" Value="0.7"/>
  1562. <Property Name="ModDepth" Type="Real32" Value="100"/>
  1563. <Property Name="ModFrequency" Type="Real32" Value="0.6"/>
  1564. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1565. </PropertyList>
  1566. </Effect>
  1567. <Effect Name="Treble" ID="{FB516F18-AA49-4B92-BC11-FA23E8CC59B4}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1568. <PropertyList>
  1569. <Property Name="DelayTime" Type="Real32" Value="0.5"/>
  1570. <Property Name="FeedBackLevel" Type="Real32" Value="0.8"/>
  1571. <Property Name="ModDepth" Type="Real32" Value="70"/>
  1572. <Property Name="ModFrequency" Type="Real32" Value="2"/>
  1573. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1574. </PropertyList>
  1575. </Effect>
  1576. <Effect Name="Bass" ID="{AB3CE4D4-B0DD-4FC2-AC1D-30EB749C5911}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1577. <PropertyList>
  1578. <Property Name="DelayTime" Type="Real32" Value="10"/>
  1579. <Property Name="FeedBackLevel" Type="Real32" Value="0.75"/>
  1580. <Property Name="FeedForwardLevel" Type="Real32" Value="0.5"/>
  1581. <Property Name="ModDepth" Type="Real32" Value="60"/>
  1582. <Property Name="ModFrequency" Type="Real32" Value="0.25"/>
  1583. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1584. </PropertyList>
  1585. </Effect>
  1586. <Effect Name="Heavy_Metal" ID="{9104321C-9E54-4879-A29A-EF8D46BE9035}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1587. <PropertyList>
  1588. <Property Name="DelayTime" Type="Real32" Value="7"/>
  1589. <Property Name="FeedBackLevel" Type="Real32" Value="0.95"/>
  1590. <Property Name="ModDepth" Type="Real32" Value="2"/>
  1591. <Property Name="ModFrequency" Type="Real32" Value="0.25"/>
  1592. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1593. </PropertyList>
  1594. </Effect>
  1595. </ChildrenList>
  1596. </Folder>
  1597. <Folder Name="Chorus" ID="{6FE96ECA-BF65-4A12-9C7B-B11976CA7133}" ShortID="1003146286">
  1598. <ChildrenList>
  1599. <Effect Name="Chorus_Like" ID="{EEE0CC86-8CA5-4DBC-A6B7-568FCB26F290}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1600. <PropertyList>
  1601. <Property Name="DelayTime" Type="Real32" Value="10"/>
  1602. <Property Name="ModDepth" Type="Real32" Value="60"/>
  1603. <Property Name="ModFrequency" Type="Real32" Value="0.85"/>
  1604. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1605. </PropertyList>
  1606. </Effect>
  1607. </ChildrenList>
  1608. </Folder>
  1609. <Effect Name="Vibrato" ID="{D9586A30-FF0D-4DCC-89C5-04CDC4716ED6}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1610. <PropertyList>
  1611. <Property Name="DelayTime" Type="Real32" Value="8.5"/>
  1612. <Property Name="DryLevel" Type="Real32" Value="0.3"/>
  1613. <Property Name="FeedBackLevel" Type="Real32" Value="0.9"/>
  1614. <Property Name="ModDepth" Type="Real32" Value="10"/>
  1615. <Property Name="ModFrequency" Type="Real32" Value="5.5"/>
  1616. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1617. </PropertyList>
  1618. </Effect>
  1619. <Effect Name="Special_Effect_1" ID="{83317D8A-9D4C-438E-BE8C-BC7D27CAD1B0}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1620. <PropertyList>
  1621. <Property Name="DelayTime" Type="Real32" Value="10"/>
  1622. <Property Name="DryLevel" Type="Real32" Value="0"/>
  1623. <Property Name="ModDepth" Type="Real32" Value="80"/>
  1624. <Property Name="ModFrequency" Type="Real32" Value="2"/>
  1625. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1626. </PropertyList>
  1627. </Effect>
  1628. <Folder Name="Static Comb Filtering" ID="{6044FF31-2237-4EC5-B94F-9C0C25CFAC44}" ShortID="504290141">
  1629. <ChildrenList>
  1630. <Effect Name="Few_Odd_Harm_Notches" ID="{3B5685A6-6274-4292-B5B9-32AFE28DB80B}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1631. <PropertyList>
  1632. <Property Name="DelayTime" Type="Real32" Value="0.4"/>
  1633. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1634. </PropertyList>
  1635. </Effect>
  1636. <Effect Name="Many_Odd_Harm_Notches" ID="{773FA234-F683-4788-B7C1-4D272A8CDE69}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1637. <PropertyList>
  1638. <Property Name="DelayTime" Type="Real32" Value="2.5"/>
  1639. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1640. </PropertyList>
  1641. </Effect>
  1642. <Effect Name="Few_Odd_Harm_Peaks" ID="{08C13A59-4200-4E97-8B9B-72CE1926B0A7}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1643. <PropertyList>
  1644. <Property Name="DelayTime" Type="Real32" Value="0.4"/>
  1645. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1646. <Property Name="FeedBackLevel" Type="Real32" Value="0.95"/>
  1647. </PropertyList>
  1648. </Effect>
  1649. <Effect Name="Many_Odd_Harm_Peaks" ID="{227BF0C2-EE7F-4962-AEFD-BE4C86E48398}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1650. <PropertyList>
  1651. <Property Name="DelayTime" Type="Real32" Value="2.5"/>
  1652. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1653. <Property Name="FeedBackLevel" Type="Real32" Value="0.95"/>
  1654. </PropertyList>
  1655. </Effect>
  1656. <Effect Name="Few_Even_Notches" ID="{25DCAC4B-7165-436C-9B22-75628C2533D1}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1657. <PropertyList>
  1658. <Property Name="DelayTime" Type="Real32" Value="0.4"/>
  1659. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1660. <Property Name="FeedForwardLevel" Type="Real32" Value="-1"/>
  1661. </PropertyList>
  1662. </Effect>
  1663. <Effect Name="Few_Even_Harm_Peaks" ID="{63235485-F861-422B-91D5-B5545F7FEE21}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1664. <PropertyList>
  1665. <Property Name="DelayTime" Type="Real32" Value="0.4"/>
  1666. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1667. <Property Name="FeedBackLevel" Type="Real32" Value="-0.95"/>
  1668. </PropertyList>
  1669. </Effect>
  1670. <Effect Name="Many_Even_Harm_Notches" ID="{A7113535-F7D6-4B83-9DCB-01DD88295F76}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1671. <PropertyList>
  1672. <Property Name="DelayTime" Type="Real32" Value="2.5"/>
  1673. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1674. <Property Name="FeedForwardLevel" Type="Real32" Value="-1"/>
  1675. </PropertyList>
  1676. </Effect>
  1677. <Effect Name="Many_Even_Harm_Peaks" ID="{5DDE88E2-CBAD-4CE9-93B0-7FC59F32CBEE}" PluginName="Wwise Flanger" CompanyID="0" PluginID="125" PluginType="3">
  1678. <PropertyList>
  1679. <Property Name="DelayTime" Type="Real32" Value="2.5"/>
  1680. <Property Name="EnableLFO" Type="bool" Value="False"/>
  1681. <Property Name="FeedBackLevel" Type="Real32" Value="-0.95"/>
  1682. </PropertyList>
  1683. </Effect>
  1684. </ChildrenList>
  1685. </Folder>
  1686. </ChildrenList>
  1687. </Folder>
  1688. <Folder Name="Harmonizer" ID="{57E4AB58-AE54-4EA2-B894-6111D1F09163}" ShortID="412342428">
  1689. <ChildrenList>
  1690. <Effect Name="Fear_no_Evil" ID="{A1F17D99-0801-4F32-B74E-ADB2D9ACC556}" PluginName="Wwise Harmonizer" CompanyID="0" PluginID="138" PluginType="3">
  1691. <PropertyList>
  1692. <Property Name="DryLevel" Type="Real32" Value="-3"/>
  1693. <Property Name="Voice1Pitch" Type="Real32" Value="-100"/>
  1694. <Property Name="Voice2Enable" Type="bool" Value="True"/>
  1695. <Property Name="Voice2Pitch" Type="Real32" Value="100"/>
  1696. </PropertyList>
  1697. </Effect>
  1698. <Effect Name="Secret_message" ID="{2F5DE612-1AAD-4A84-8FB4-3E66521C920E}" PluginName="Wwise Harmonizer" CompanyID="0" PluginID="138" PluginType="3">
  1699. <PropertyList>
  1700. <Property Name="Voice1FilterFrequency" Type="Real32" Value="3656"/>
  1701. <Property Name="Voice1FilterType" Type="int32" Value="4"/>
  1702. <Property Name="Voice1Pitch" Type="Real32" Value="-1200"/>
  1703. <Property Name="Voice2Enable" Type="bool" Value="True"/>
  1704. <Property Name="Voice2FilterFrequency" Type="Real32" Value="361"/>
  1705. <Property Name="Voice2FilterType" Type="int32" Value="4"/>
  1706. <Property Name="Voice2Gain" Type="Real32" Value="-4"/>
  1707. <Property Name="Voice2Pitch" Type="Real32" Value="-1200"/>
  1708. <Property Name="WindowSize" Type="int32" Value="256"/>
  1709. </PropertyList>
  1710. </Effect>
  1711. <Effect Name="Secret_message_Distant" ID="{54C3F2D2-6B8D-4873-A383-2F6F7189C076}" PluginName="Wwise Harmonizer" CompanyID="0" PluginID="138" PluginType="3">
  1712. <PropertyList>
  1713. <Property Name="Voice1FilterFrequency" Type="Real32" Value="3656"/>
  1714. <Property Name="Voice1Pitch" Type="Real32" Value="-1200"/>
  1715. <Property Name="Voice2Enable" Type="bool" Value="True"/>
  1716. <Property Name="Voice2FilterFrequency" Type="Real32" Value="361"/>
  1717. <Property Name="Voice2Gain" Type="Real32" Value="-4"/>
  1718. <Property Name="Voice2Pitch" Type="Real32" Value="-1200"/>
  1719. <Property Name="WindowSize" Type="int32" Value="2304"/>
  1720. </PropertyList>
  1721. </Effect>
  1722. <Effect Name="Repeat_after_me" ID="{7A0568D0-BE8B-4233-B3E8-200344DB7AE0}" PluginName="Wwise Harmonizer" CompanyID="0" PluginID="138" PluginType="3">
  1723. <PropertyList>
  1724. <Property Name="Voice1FilterFrequency" Type="Real32" Value="3656"/>
  1725. <Property Name="Voice1FilterType" Type="int32" Value="4"/>
  1726. <Property Name="Voice1Pitch" Type="Real32" Value="400"/>
  1727. <Property Name="Voice2Enable" Type="bool" Value="True"/>
  1728. <Property Name="Voice2FilterFrequency" Type="Real32" Value="361"/>
  1729. <Property Name="Voice2FilterType" Type="int32" Value="4"/>
  1730. <Property Name="Voice2Pitch" Type="Real32" Value="-1100"/>
  1731. <Property Name="WindowSize" Type="int32" Value="3840"/>
  1732. </PropertyList>
  1733. </Effect>
  1734. <Effect Name="Three_Voices" ID="{71CA20BE-8C1D-4A0C-92AF-BFCE183D5651}" PluginName="Wwise Harmonizer" CompanyID="0" PluginID="138" PluginType="3">
  1735. <PropertyList>
  1736. <Property Name="DryLevel" Type="Real32" Value="-3"/>
  1737. <Property Name="Voice1Pitch" Type="Real32" Value="-100"/>
  1738. <Property Name="Voice2Enable" Type="bool" Value="True"/>
  1739. <Property Name="Voice2Pitch" Type="Real32" Value="100"/>
  1740. </PropertyList>
  1741. </Effect>
  1742. </ChildrenList>
  1743. </Folder>
  1744. <Folder Name="Stereo Delay" ID="{F3D9A55C-379D-4D15-82C8-FFB9B0C1E8C8}" ShortID="352473335">
  1745. <ChildrenList>
  1746. <Effect Name="_1_Frame_Delay" ID="{B8CCC284-212D-4ADF-B8E4-BC724B40D8BD}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1747. <PropertyList>
  1748. <Property Name="FilterFrequency" Type="Real32" Value="261"/>
  1749. <Property Name="FilterGain" Type="Real32" Value="10.5"/>
  1750. <Property Name="LeftDelayTime" Type="Real32" Value="0.03"/>
  1751. <Property Name="RightDelayTime" Type="Real32" Value="0.03"/>
  1752. </PropertyList>
  1753. </Effect>
  1754. <Effect Name="_1_Second_Delay" ID="{5AAB81A5-3444-4DE7-AEB3-2DDBB33D455B}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1755. <PropertyList>
  1756. <Property Name="FilterFrequency" Type="Real32" Value="261"/>
  1757. <Property Name="FilterGain" Type="Real32" Value="10.5"/>
  1758. <Property Name="LeftDelayTime" Type="Real32" Value="1"/>
  1759. <Property Name="RightDelayTime" Type="Real32" Value="1"/>
  1760. </PropertyList>
  1761. </Effect>
  1762. <Effect Name="LR_Slap_with_CrossFeed" ID="{30319A92-C5AC-437A-9864-430059762933}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1763. <PropertyList>
  1764. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1765. <Property Name="FilterFrequency" Type="Real32" Value="261"/>
  1766. <Property Name="FilterGain" Type="Real32" Value="10.5"/>
  1767. <Property Name="LeftCrossfeed" Type="Real32" Value="-20"/>
  1768. <Property Name="LeftDelayTime" Type="Real32" Value="0.29"/>
  1769. <Property Name="RightCrossfeed" Type="Real32" Value="-20"/>
  1770. <Property Name="RightDelayTime" Type="Real32" Value="0.43"/>
  1771. <Property Name="WetLevel" Type="Real32" Value="-6"/>
  1772. </PropertyList>
  1773. </Effect>
  1774. <Effect Name="Underwater_Echoes" ID="{3C6B127B-9DAE-4879-A4ED-75DF209310EC}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1775. <PropertyList>
  1776. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1777. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1778. <Property Name="EnableFeedback" Type="bool" Value="True"/>
  1779. <Property Name="FilterFrequency" Type="Real32" Value="333"/>
  1780. <Property Name="FilterGain" Type="Real32" Value="7"/>
  1781. <Property Name="FilterType" Type="int32" Value="4"/>
  1782. <Property Name="LeftCrossfeed" Type="Real32" Value="-3"/>
  1783. <Property Name="LeftDelayTime" Type="Real32" Value="0.29"/>
  1784. <Property Name="RightCrossfeed" Type="Real32" Value="-3"/>
  1785. <Property Name="RightDelayTime" Type="Real32" Value="0.43"/>
  1786. </PropertyList>
  1787. </Effect>
  1788. <Effect Name="Blue_Distant_Echoes" ID="{ABFA9875-521E-451F-AAB9-AB148847B9C0}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1789. <PropertyList>
  1790. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1791. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1792. <Property Name="EnableFeedback" Type="bool" Value="True"/>
  1793. <Property Name="FilterFrequency" Type="Real32" Value="2507"/>
  1794. <Property Name="FilterGain" Type="Real32" Value="-24"/>
  1795. <Property Name="FilterType" Type="int32" Value="3"/>
  1796. <Property Name="LeftCrossfeed" Type="Real32" Value="-10"/>
  1797. <Property Name="LeftDelayTime" Type="Real32" Value="0.29"/>
  1798. <Property Name="RightCrossfeed" Type="Real32" Value="-8"/>
  1799. <Property Name="RightDelayTime" Type="Real32" Value="0.43"/>
  1800. </PropertyList>
  1801. </Effect>
  1802. <Effect Name="Personnel_Advisor" ID="{B78063AF-DC4F-4D1D-B4AB-B3487BE02D7F}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1803. <PropertyList>
  1804. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1805. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1806. <Property Name="EnableFeedback" Type="bool" Value="True"/>
  1807. <Property Name="FilterFrequency" Type="Real32" Value="835"/>
  1808. <Property Name="FilterGain" Type="Real32" Value="-7.5"/>
  1809. <Property Name="FilterType" Type="int32" Value="7"/>
  1810. <Property Name="LeftCrossfeed" Type="Real32" Value="-10"/>
  1811. <Property Name="LeftDelayTime" Type="Real32" Value="0.41"/>
  1812. <Property Name="LeftFeedback" Type="Real32" Value="-20.5"/>
  1813. <Property Name="RightCrossfeed" Type="Real32" Value="-8"/>
  1814. <Property Name="RightDelayTime" Type="Real32" Value="0.35"/>
  1815. <Property Name="RightFeedback" Type="Real32" Value="-17.5"/>
  1816. </PropertyList>
  1817. </Effect>
  1818. <Effect Name="_500ms_Per_Hour" ID="{9CE2F0FB-CE0B-4CC7-A699-E30528959D0E}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1819. <PropertyList>
  1820. <Property Name="DryLevel" Type="Real32" Value="-12"/>
  1821. <Property Name="EnableFeedback" Type="bool" Value="True"/>
  1822. <Property Name="FilterFrequency" Type="Real32" Value="72"/>
  1823. <Property Name="FilterGain" Type="Real32" Value="2.5"/>
  1824. <Property Name="LeftCrossfeed" Type="Real32" Value="-48"/>
  1825. <Property Name="LeftDelayTime" Type="Real32" Value="0.5"/>
  1826. <Property Name="RightCrossfeed" Type="Real32" Value="-48"/>
  1827. <Property Name="RightDelayTime" Type="Real32" Value="0.5"/>
  1828. </PropertyList>
  1829. </Effect>
  1830. <Effect Name="Let_The_Power_Fall" ID="{6C4D2827-F82F-4BE3-A8DF-F0F0FAE93630}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1831. <PropertyList>
  1832. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1833. <Property Name="FilterFrequency" Type="Real32" Value="5000"/>
  1834. <Property Name="FilterGain" Type="Real32" Value="-24"/>
  1835. <Property Name="FilterType" Type="int32" Value="4"/>
  1836. <Property Name="LeftCrossfeed" Type="Real32" Value="-20"/>
  1837. <Property Name="LeftDelayTime" Type="Real32" Value="0.26"/>
  1838. <Property Name="RightCrossfeed" Type="Real32" Value="-20"/>
  1839. <Property Name="RightDelayTime" Type="Real32" Value="0.21"/>
  1840. </PropertyList>
  1841. </Effect>
  1842. <Effect Name="Caught_in_a_loop" ID="{8FC64215-9A75-4BE3-A33A-584C8CA49963}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1843. <PropertyList>
  1844. <Property Name="DryLevel" Type="Real32" Value="-96"/>
  1845. <Property Name="EnableCrossFeed" Type="bool" Value="True"/>
  1846. <Property Name="EnableFeedback" Type="bool" Value="True"/>
  1847. <Property Name="FilterFrequency" Type="Real32" Value="2364"/>
  1848. <Property Name="FilterGain" Type="Real32" Value="-24"/>
  1849. <Property Name="LeftCrossfeed" Type="Real32" Value="-15"/>
  1850. <Property Name="LeftDelayTime" Type="Real32" Value="0.47"/>
  1851. <Property Name="LeftFeedback" Type="Real32" Value="-18.5"/>
  1852. <Property Name="RightCrossfeed" Type="Real32" Value="-6"/>
  1853. <Property Name="RightDelayTime" Type="Real32" Value="0.39"/>
  1854. <Property Name="RightFeedback" Type="Real32" Value="-6"/>
  1855. </PropertyList>
  1856. </Effect>
  1857. <Effect Name="Straight_Delay" ID="{00ADE3F8-B4F2-465A-9DC3-9EA55A7B3235}" PluginName="Wwise Stereo Delay" CompanyID="0" PluginID="135" PluginType="3">
  1858. <PropertyList>
  1859. <Property Name="FilterFrequency" Type="Real32" Value="261"/>
  1860. <Property Name="FilterGain" Type="Real32" Value="10.5"/>
  1861. <Property Name="LeftDelayTime" Type="Real32" Value="0.25"/>
  1862. <Property Name="RightDelayTime" Type="Real32" Value="0.25"/>
  1863. <Property Name="WetLevel" Type="Real32" Value="-6"/>
  1864. </PropertyList>
  1865. </Effect>
  1866. </ChildrenList>
  1867. </Folder>
  1868. <Folder Name="Tremolo" ID="{F9C07D78-BC4E-4386-9433-A8D7BDDDAE14}" ShortID="998026893">
  1869. <ChildrenList>
  1870. <Effect Name="Say_what" ID="{E823825D-3114-4F6D-A6A4-7FB673A10A61}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1871. <PropertyList>
  1872. <Property Name="ModFrequency" Type="Real32" Value="1.18"/>
  1873. <Property Name="ModPWM" Type="Real32" Value="27"/>
  1874. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1875. <Property Name="ModPhaseSpread" Type="Real32" Value="58"/>
  1876. <Property Name="ModSmoothing" Type="Real32" Value="56"/>
  1877. <Property Name="ModWaveform" Type="int32" Value="2"/>
  1878. </PropertyList>
  1879. </Effect>
  1880. <Effect Name="Rhythmic_Talk" ID="{F0F27454-4BCC-4302-A61D-C324E7187DD0}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1881. <PropertyList>
  1882. <Property Name="ModFrequency" Type="Real32" Value="15"/>
  1883. <Property Name="ModPWM" Type="Real32" Value="15"/>
  1884. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1885. <Property Name="ModPhaseSpread" Type="Real32" Value="58"/>
  1886. <Property Name="ModSmoothing" Type="Real32" Value="45"/>
  1887. <Property Name="ModWaveform" Type="int32" Value="2"/>
  1888. </PropertyList>
  1889. </Effect>
  1890. <Effect Name="Very_Slow_Modulation" ID="{6082F901-3CE1-4D78-8F2D-B2B72CF28085}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1891. <PropertyList>
  1892. <Property Name="ModFrequency" Type="Real32" Value="0.5"/>
  1893. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1894. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1895. <Property Name="ModPhaseSpread" Type="Real32" Value="58"/>
  1896. </PropertyList>
  1897. </Effect>
  1898. <Effect Name="Boomerang" ID="{65397B72-19EC-43DB-B2D2-EB84437B6BDC}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1899. <PropertyList>
  1900. <Property Name="ModFrequency" Type="Real32" Value="3"/>
  1901. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1902. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1903. <Property Name="ModPhaseSpread" Type="Real32" Value="58"/>
  1904. <Property Name="ModWaveform" Type="int32" Value="1"/>
  1905. </PropertyList>
  1906. </Effect>
  1907. <Effect Name="Halfway_There" ID="{DD67F3B9-38CD-46FD-931A-19625D534C90}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1908. <PropertyList>
  1909. <Property Name="ModFrequency" Type="Real32" Value="1.06"/>
  1910. <Property Name="ModPWM" Type="Real32" Value="25"/>
  1911. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1912. <Property Name="ModPhaseSpread" Type="Real32" Value="19"/>
  1913. <Property Name="ModSmoothing" Type="Real32" Value="39"/>
  1914. <Property Name="ModWaveform" Type="int32" Value="2"/>
  1915. </PropertyList>
  1916. </Effect>
  1917. <Effect Name="Very_Bad_Connection" ID="{0C5A674D-5EC0-45A6-87A7-3885B3196DCD}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1918. <PropertyList>
  1919. <Property Name="ModFrequency" Type="Real32" Value="1376.52"/>
  1920. <Property Name="ModPWM" Type="Real32" Value="1"/>
  1921. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1922. <Property Name="ModSmoothing" Type="Real32" Value="100"/>
  1923. <Property Name="ModWaveform" Type="int32" Value="2"/>
  1924. </PropertyList>
  1925. </Effect>
  1926. <Effect Name="Aliasing" ID="{4CCC0D23-78CD-4B09-A62B-D3CB5E071A2F}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1927. <PropertyList>
  1928. <Property Name="ModFrequency" Type="Real32" Value="20000"/>
  1929. <Property Name="ModPWM" Type="Real32" Value="0"/>
  1930. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1931. <Property Name="ModPhaseSpread" Type="Real32" Value="19"/>
  1932. <Property Name="ModSmoothing" Type="Real32" Value="100"/>
  1933. <Property Name="ModWaveform" Type="int32" Value="4"/>
  1934. </PropertyList>
  1935. </Effect>
  1936. <Effect Name="Fast_LF_Tremolo" ID="{3B09A271-D9D4-4A4E-B545-F681E8313E5F}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1937. <PropertyList>
  1938. <Property Name="ModFrequency" Type="Real32" Value="19.84"/>
  1939. <Property Name="ModPWM" Type="Real32" Value="4"/>
  1940. <Property Name="ModPhaseOffset" Type="Real32" Value="87"/>
  1941. <Property Name="ModPhaseSpread" Type="Real32" Value="121"/>
  1942. <Property Name="ModSmoothing" Type="Real32" Value="100"/>
  1943. <Property Name="ModWaveform" Type="int32" Value="3"/>
  1944. </PropertyList>
  1945. </Effect>
  1946. <Effect Name="Fast_LF_Tremolo_No_Smoothing" ID="{D972718E-231C-4DBF-9288-FCAF4BF47B50}" PluginName="Wwise Tremolo" CompanyID="0" PluginID="131" PluginType="3">
  1947. <PropertyList>
  1948. <Property Name="ModFrequency" Type="Real32" Value="19.84"/>
  1949. <Property Name="ModPWM" Type="Real32" Value="4"/>
  1950. <Property Name="ModPhaseOffset" Type="Real32" Value="-180"/>
  1951. <Property Name="ModPhaseSpread" Type="Real32" Value="180"/>
  1952. <Property Name="ModWaveform" Type="int32" Value="3"/>
  1953. </PropertyList>
  1954. </Effect>
  1955. </ChildrenList>
  1956. </Folder>
  1957. <Folder Name="Pitch Shifter" ID="{CAAFBA9C-900A-43C9-A88A-5AC1B29DC25B}" ShortID="538169855">
  1958. <ChildrenList>
  1959. <Folder Name="Harmonize" ID="{E6BF529D-7390-477C-AFFA-9530FA9598E5}" ShortID="700587864">
  1960. <ChildrenList>
  1961. <Effect Name="Octave_Up" ID="{A98F423C-EC97-49D8-8698-445CE91F24B7}" PluginName="Wwise Pitch Shifter" CompanyID="0" PluginID="136" PluginType="3">
  1962. <PropertyList>
  1963. <Property Name="DryLevel" Type="Real32" Value="0"/>
  1964. <Property Name="Pitch" Type="Real32" Value="1200"/>
  1965. </PropertyList>
  1966. </Effect>
  1967. <Effect Name="Octave_Down" ID="{062EC4B1-5372-4D1E-917B-C757293F2B42}" PluginName="Wwise Pitch Shifter" CompanyID="0" PluginID="136" PluginType="3">
  1968. <PropertyList>
  1969. <Property Name="DryLevel" Type="Real32" Value="0"/>
  1970. <Property Name="Pitch" Type="Real32" Value="-1200"/>
  1971. </PropertyList>
  1972. </Effect>
  1973. </ChildrenList>
  1974. </Folder>
  1975. <Folder Name="Transpose" ID="{3356F030-FA3F-489C-9CC9-BC27F83083C3}" ShortID="691881135">
  1976. <ChildrenList>
  1977. <Effect Name="Chipmunk" ID="{54F9F04F-0D14-46AB-B38B-21CFD2EB46F6}" PluginName="Wwise Pitch Shifter" CompanyID="0" PluginID="136" PluginType="3">
  1978. <PropertyList>
  1979. <Property Name="Pitch" Type="Real32" Value="1200"/>
  1980. </PropertyList>
  1981. </Effect>
  1982. <Effect Name="Monsterize" ID="{99F80B38-1C45-42CE-9BCD-E94F3885DCAA}" PluginName="Wwise Pitch Shifter" CompanyID="0" PluginID="136" PluginType="3">
  1983. <PropertyList>
  1984. <Property Name="FilterFrequency" Type="Real32" Value="2000"/>
  1985. <Property Name="Pitch" Type="Real32" Value="-1200"/>
  1986. </PropertyList>
  1987. </Effect>
  1988. <Effect Name="Voice_CenterOnly_Lowered" ID="{179558E7-E6DF-4021-9D38-A284DF53B7E5}" PluginName="Wwise Pitch Shifter" CompanyID="0" PluginID="136" PluginType="3">
  1989. <PropertyList>
  1990. <Property Name="Input" Type="int32" Value="1"/>
  1991. <Property Name="Pitch" Type="Real32" Value="-500"/>
  1992. </PropertyList>
  1993. </Effect>
  1994. </ChildrenList>
  1995. </Folder>
  1996. </ChildrenList>
  1997. </Folder>
  1998. </ChildrenList>
  1999. </WorkUnit>
  2000. </Effects>
  2001. </WwiseDocument>