You're breathtaking!
This commit is contained in:
18
Source/Engine/Visject/GraphParameter.cpp
Normal file
18
Source/Engine/Visject/GraphParameter.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
|
||||
|
||||
#include "GraphParameter.h"
|
||||
#include "Engine/Core/Types/DataContainer.h"
|
||||
|
||||
BytesContainer GraphParameter::GetMetaData(int32 typeID) const
|
||||
{
|
||||
BytesContainer result;
|
||||
for (const auto& e : Meta.Entries)
|
||||
{
|
||||
if (e.TypeID == typeID)
|
||||
{
|
||||
result.Link(e.Data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
Reference in New Issue
Block a user