Files
UnrealEngine/Engine/Plugins/Mutable/Source/MutableTools/Public/MuT/NodeModifierMeshTransformInMesh.h
2025-05-18 13:04:45 +08:00

43 lines
739 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MuR/Ptr.h"
#include "MuR/Types.h"
#include "MuT/Node.h"
#include "MuT/NodeModifier.h"
#include "MuT/NodeMesh.h"
#include "MuT/NodeMatrix.h"
namespace mu
{
/** */
class MUTABLETOOLS_API NodeModifierMeshTransformInMesh : public NodeModifier
{
public:
/** */
Ptr<NodeMesh> BoundingMesh;
/** */
Ptr<NodeMatrix> MatrixNode;
public:
// Node interface
virtual const FNodeType* GetType() const override { return &StaticType; }
static const FNodeType* GetStaticType() { return &StaticType; }
protected:
/** Forbidden. Manage with the Ptr<> template. */
virtual ~NodeModifierMeshTransformInMesh() override {}
private:
static FNodeType StaticType;
};
}