Navigation
API > API/Plugins > API/Plugins/MetasoundEngine > API/Plugins/MetasoundEngine/FMetaSoundOutput
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Set
(
const DataType& Value |
Set the value, for copyable registered Metasound data types | MetasoundOutput.h | |
bool Set
(
DataType&& Value |
Set the value, for moveable registered Metasound data types | MetasoundOutput.h |
Set(const DataType &)
Description
Set the value, for copyable registered Metasound data types
| Name | Set |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngine/Public/MetasoundOutput.h |
| Include Path | #include "MetasoundOutput.h" |
template<typename DataType>
bool Set
(
const DataType & Value
)
true if the value was set, false otherwise
Parameters
| Name | Remarks |
|---|---|
| DataType | The expected data type of the output |
| Value | The value to use |
Set(DataType &&)
Description
Set the value, for moveable registered Metasound data types
| Name | Set |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundEngine/Public/MetasoundOutput.h |
| Include Path | #include "MetasoundOutput.h" |
template<typename DataType>
bool Set
(
DataType && Value
)
true if the value was set, false otherwise
Parameters
| Name | Remarks |
|---|---|
| DataType | The expected data type of the output |
| Value | The value to use |