EditorFastNoiseGradientComponent.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 <GradientSignal/Editor/EditorGradientComponentBase.h>
  10. #include "FastNoiseGradientComponent.h"
  11. namespace FastNoiseGem
  12. {
  13. class EditorFastNoiseGradientComponent
  14. : public GradientSignal::EditorGradientComponentBase<FastNoiseGradientComponent, FastNoiseGradientConfig>
  15. {
  16. public:
  17. using BaseClassType = GradientSignal::EditorGradientComponentBase<FastNoiseGradientComponent, FastNoiseGradientConfig>;
  18. AZ_EDITOR_COMPONENT(EditorFastNoiseGradientComponent, "{FD018DE5-5EB4-4219-9D0C-CB3C55DE656B}", BaseClassType);
  19. static void Reflect(AZ::ReflectContext* context);
  20. AZ::u32 ConfigurationChanged() override;
  21. static constexpr const char* const s_categoryName = "Gradients";
  22. static constexpr const char* const s_componentName = "FastNoise Gradient";
  23. static constexpr const char* const s_componentDescription = "Generates gradient values using FastNoise a noise generation library with a collection of realtime noise algorithms";
  24. static constexpr const char* const s_icon = "Editor/Icons/Components/Gradient.svg";
  25. static constexpr const char* const s_viewportIcon = "Editor/Icons/Components/Viewport/Gradient.svg";
  26. static constexpr const char* const s_helpUrl = "";
  27. private:
  28. AZ::Crc32 OnGenerateRandomSeed();
  29. };
  30. } //namespace FastNoiseGem