AkReverbVolume.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*******************************************************************************
  2. The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
  3. Technology released in source code form as part of the game integration package.
  4. The content of this file may not be used without valid licenses to the
  5. AUDIOKINETIC Wwise Technology.
  6. Note that the use of the game engine is subject to the Unreal(R) Engine End User
  7. License Agreement at https://www.unrealengine.com/en-US/eula/unreal
  8. License Usage
  9. Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
  10. this file in accordance with the end user license agreement provided with the
  11. software or, alternatively, in accordance with the terms contained
  12. in a written agreement between you and Audiokinetic Inc.
  13. Copyright (c) 2023 Audiokinetic Inc.
  14. *******************************************************************************/
  15. /*=============================================================================
  16. AkReverbVolume.h:
  17. =============================================================================*/
  18. #pragma once
  19. #include "GameFramework/Volume.h"
  20. #include "AkLateReverbComponent.h"
  21. #include "AkReverbVolume.generated.h"
  22. /*------------------------------------------------------------------------------------
  23. AAkReverbVolume
  24. ------------------------------------------------------------------------------------*/
  25. UCLASS(hidecategories=(Advanced, Attachment, Volume), BlueprintType)
  26. class AKAUDIO_API AAkReverbVolume : public AVolume
  27. {
  28. GENERATED_BODY()
  29. public:
  30. AAkReverbVolume(const class FObjectInitializer& ObjectInitializer);
  31. #if WITH_EDITOR
  32. virtual FName GetCustomIconName() const override
  33. {
  34. static const FName IconName("ClassIcon.AkReverbVolume");
  35. return IconName;
  36. }
  37. #endif
  38. /** Whether this volume is currently enabled and able to affect sounds */
  39. UPROPERTY()
  40. bool bEnabled_DEPRECATED = false;
  41. UPROPERTY()
  42. class UAkAuxBus * AuxBus_DEPRECATED = nullptr;
  43. /** Wwise Auxiliary Bus associated to this AkReverbVolume */
  44. UPROPERTY()
  45. FString AuxBusName_DEPRECATED;
  46. /** Maximum send level to the Wwise Auxiliary Bus associated to this AkReverbVolume */
  47. UPROPERTY()
  48. float SendLevel_DEPRECATED = .0f;
  49. /** Rate at which to fade in/out the SendLevel of the current Reverb Volume when entering/exiting it, in percentage per second (0.2 will make the fade time 5 seconds) */
  50. UPROPERTY()
  51. float FadeRate_DEPRECATED = .0f;
  52. /**
  53. * The precedence in which the AkReverbVolumes will be applied. In the case of overlapping volumes, only the ones
  54. * with the highest priority are chosen (the number of simultaneous AkReverbVolumes is configurable in the Unreal
  55. * Editor Project Settings under Plugins > Wwise). If two or more overlapping AkReverbVolumes have the same
  56. * priority, the chosen AkReverbVolume is unpredictable.
  57. */
  58. UPROPERTY()
  59. float Priority_DEPRECATED = .0f;
  60. UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = "ReverbVolume", meta = (ShowOnlyInnerProperties))
  61. UAkLateReverbComponent* LateReverbComponent = nullptr;
  62. virtual void PostLoad() override;
  63. virtual void Serialize(FArchive& Ar) override;
  64. };