Navigation
API > API/Plugins > API/Plugins/AnimNext > API/Plugins/AnimNext/Param > API/Plugins/AnimNext/Param/IParameterSourceFactory
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/Param/IParameterSourceFactory.h |
| Include | #include "Param/IParameterSourceFactory.h" |
TUniquePtr < IParameterSource > CreateParameterSource
(
const FExternalParameterContext & InContext,
FName InSourceName,
TConstArrayView< FName > InRequiredParameters
) const
Remarks
Factory method used to create a parameter source of the specified name, with a set of parameters that are initially required a new parameter source, or nullptr if the source was not found
Parameters
| Name | Description |
|---|---|
| InContext | Context used to set up the parameter source |
| InSourceName | The name of the parameter source. This is conventionally the 'root' parameter of a set of parameters (e.g. Game_MyComponent, which contains Game_MyComponent_Param etc.) |
| InRequiredParameters | Any required parameters that the source should initially supply, can be empty |