Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/FMovieSceneBindingReferences
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const FMovieSceneBindingReference * AddOrReplaceBinding
(
const FGuid& ObjectId, |
Replace the binding associated with the ObjectId at the given BindingIndex with a new custom binding. | MovieSceneBindingReferences.h | |
const FMovieSceneBindingReference * AddOrReplaceBinding
(
const FGuid& ObjectId, |
Replace the binding associated with the ObjectId at the given BindingIndex with a new possessable locator binding. | MovieSceneBindingReferences.h |
AddOrReplaceBinding(const FGuid &, UMovieSceneCustomBinding *, int32)
Description
Replace the binding associated with the ObjectId at the given BindingIndex with a new custom binding. If no such binding exists, then one will be created at the nearest new BindingIndex.
| Name | AddOrReplaceBinding |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/MovieSceneBindingReferences.h |
| Include Path | #include "MovieSceneBindingReferences.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/MovieSceneBindingReferences.cpp |
const FMovieSceneBindingReference * AddOrReplaceBinding
(
const FGuid & ObjectId,
UMovieSceneCustomBinding * NewCustomBinding,
int32 BindingIndex
)
Parameters
| Name | Remarks |
|---|---|
| ObjectId | The ID to associate the object with |
| CustomBinding | A created custom binding for the object |
| BindingIndex | The binding index of the binding to replace. |
AddOrReplaceBinding(const FGuid &, FUniversalObjectLocator &&, int32)
Description
Replace the binding associated with the ObjectId at the given BindingIndex with a new possessable locator binding. If no such binding exists, then one will be created at the nearest new BindingIndex.
| Name | AddOrReplaceBinding |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/MovieSceneBindingReferences.h |
| Include Path | #include "MovieSceneBindingReferences.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/MovieSceneBindingReferences.cpp |
const FMovieSceneBindingReference * AddOrReplaceBinding
(
const FGuid & ObjectId,
FUniversalObjectLocator && NewLocator,
int32 BindingIndex
)
Parameters
| Name | Remarks |
|---|---|
| ObjectId | The ID to associate the object with |
| NewLocator | A created locator for the object |
| BindingIndex | The binding index of the binding to replace. |