SkyAtmosphereComponent.h 1011 B

1234567891011121314151617181920212223242526272829
  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 <AzFramework/Components/ComponentAdapter.h>
  10. #include <SkyAtmosphere/SkyAtmosphereComponentController.h>
  11. namespace AZ::Render
  12. {
  13. class SkyAtmosphereComponent final
  14. : public AzFramework::Components::ComponentAdapter<SkyAtmosphereComponentController, SkyAtmosphereComponentConfig>
  15. {
  16. public:
  17. using BaseClass = AzFramework::Components::ComponentAdapter<SkyAtmosphereComponentController, SkyAtmosphereComponentConfig>;
  18. AZ_COMPONENT(AZ::Render::SkyAtmosphereComponent, "{5287C268-2456-42A3-BF91-3B65A517F1B6}" , BaseClass);
  19. SkyAtmosphereComponent() = default;
  20. SkyAtmosphereComponent(const SkyAtmosphereComponentConfig& config);
  21. static void Reflect(AZ::ReflectContext* context);
  22. };
  23. } // namespace AZ::Render