DiffuseGlobalIlluminationComponentConfig.h 973 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/Component/Component.h>
  10. #include <Atom/RPI.Reflect/System/AnyAsset.h>
  11. #include <DiffuseProbeGrid/DiffuseGlobalIlluminationFeatureProcessorInterface.h>
  12. namespace AZ
  13. {
  14. namespace Render
  15. {
  16. class DiffuseGlobalIlluminationComponentConfig final
  17. : public ComponentConfig
  18. {
  19. public:
  20. AZ_RTTI(DiffuseGlobalIlluminationComponentConfig, "{0D0835D6-6094-4EF8-BEAC-5FF8A4E4C119}", ComponentConfig);
  21. AZ_CLASS_ALLOCATOR(DiffuseGlobalIlluminationComponentConfig, SystemAllocator);
  22. static void Reflect(ReflectContext* context);
  23. DiffuseGlobalIlluminationQualityLevel m_qualityLevel = DiffuseGlobalIlluminationQualityLevel::Low;
  24. };
  25. }
  26. }