You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-225386, UE-225387 #rb alexei.lebedev, gerard.martin, jordi.rovira [CL 36755590 by halfdan ingvarsson in 5.5 branch]
31 lines
554 B
C++
31 lines
554 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "MuT/NodeMatrix.h"
|
|
#include "Math/Matrix.h"
|
|
|
|
namespace mu
|
|
{
|
|
|
|
class MUTABLETOOLS_API NodeMatrixConstant : public NodeMatrix
|
|
{
|
|
public:
|
|
FMatrix44f Value;
|
|
|
|
// Node interface
|
|
const FNodeType* GetType() const override { return &StaticType; }
|
|
static const FNodeType* GetStaticType() { return &StaticType; }
|
|
|
|
protected:
|
|
|
|
//! Forbidden. Manage with the Ptr<> template.
|
|
virtual ~NodeMatrixConstant() override = default;
|
|
|
|
private:
|
|
|
|
static FNodeType StaticType;
|
|
};
|
|
|
|
}
|