/* * Copyright (c) Contributors to the Open 3D Engine Project * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ // Qt #include // AZ #include // Landscape Canvas #include "MeshBlockerAreaNode.h" namespace LandscapeCanvas { void MeshBlockerAreaNode::Reflect(AZ::ReflectContext* context) { AZ::SerializeContext* serializeContext = azrtti_cast(context); if (serializeContext) { serializeContext->Class() ->Version(0) ; } } const QString MeshBlockerAreaNode::TITLE = QObject::tr("Vegetation Layer Blocker (Mesh)"); MeshBlockerAreaNode::MeshBlockerAreaNode(GraphModel::GraphPtr graph) : BaseAreaNode(graph) { RegisterSlots(); CreateSlotData(); } void MeshBlockerAreaNode::RegisterSlots() { CreateEntityNameSlot(); // The Mesh Blocker doesn't need the shape bounds because the mesh is the shape } } // namespace LandscapeCanvas