You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Landscape Canvas
|
|
#include <Editor/Core/Core.h>
|
|
#include <Editor/Nodes/BaseNode.h>
|
|
|
|
namespace AZ
|
|
{
|
|
class ReflectContext;
|
|
}
|
|
|
|
namespace LandscapeCanvas
|
|
{
|
|
class GradientMixerNode : public BaseNode
|
|
{
|
|
public:
|
|
AZ_CLASS_ALLOCATOR(GradientMixerNode, AZ::SystemAllocator, 0);
|
|
AZ_RTTI(GradientMixerNode, "{D5AEAA23-12EB-4E55-B396-BEE13724FBDC}", BaseNode);
|
|
|
|
static void Reflect(AZ::ReflectContext* context);
|
|
|
|
GradientMixerNode() = default;
|
|
explicit GradientMixerNode(GraphModel::GraphPtr graph);
|
|
|
|
static const QString TITLE;
|
|
const char* GetTitle() const override;
|
|
const char* GetSubTitle() const override;
|
|
const BaseNodeType GetBaseNodeType() const override;
|
|
|
|
protected:
|
|
virtual void RegisterSlots() override;
|
|
};
|
|
}
|