Files
2025-05-18 13:04:45 +08:00

46 lines
1009 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "MuR/Ptr.h"
#include "MuR/RefCounted.h"
#include "MuT/Node.h"
#include "MuT/NodeSurface.h"
#include "MuT/NodeModifier.h"
namespace mu
{
class MUTABLETOOLS_API NodeLOD : public Node
{
public:
//-----------------------------------------------------------------------------------------
// Node Interface
//-----------------------------------------------------------------------------------------
virtual const FNodeType* GetType() const override { return GetStaticType(); }
static const FNodeType* GetStaticType() { return &StaticType; }
//-----------------------------------------------------------------------------------------
// Own Interface
//-----------------------------------------------------------------------------------------
TArray<Ptr<NodeSurface>> Surfaces;
protected:
/** Forbidden. Manage with the Ptr<> template. */
~NodeLOD() {}
private:
static FNodeType StaticType;
};
}