Navigation
API > API/Runtime > API/Runtime/AnimationCore > API/Runtime/AnimationCore/UAnimationDataSourceRegistry
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
T * RequestSource
(
const FName& InName |
Returns a given data source and cast it to the expected class. | AnimationDataSource.h | |
UObject * RequestSource
(
const FName& InName, |
Returns a given data source and cast it to the expected class. | AnimationDataSource.h |
RequestSource(const FName &)
Description
Returns a given data source and cast it to the expected class.
| Name | RequestSource |
| Type | function |
| Header File | /Engine/Source/Runtime/AnimationCore/Public/AnimationDataSource.h |
| Include Path | #include "AnimationDataSource.h" |
template<class T>
T * RequestSource
(
const FName & InName
) const
The requested data source
Parameters
| Name | Remarks |
|---|---|
| InName | The name of the data source to look up. |
RequestSource(const FName &, UClass *)
Description
Returns a given data source and cast it to the expected class.
| Name | RequestSource |
| Type | function |
| Header File | /Engine/Source/Runtime/AnimationCore/Public/AnimationDataSource.h |
| Include Path | #include "AnimationDataSource.h" |
| Source | /Engine/Source/Runtime/AnimationCore/Private/AnimationDataSource.cpp |
UObject * RequestSource
(
const FName & InName,
UClass * InExpectedClass
) const
The requested data source
Parameters
| Name | Remarks |
|---|---|
| InName | The name of the data source to look up. |
| InExpectedClass | The class expected from the data source |