Files
UnrealEngineUWP/Engine/Source/Runtime/AnimGraphRuntime/Public/SequencePlayerLibrary.h

90 lines
4.6 KiB
C
Raw Normal View History

Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimExecutionContext.h"
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
#include "Kismet/BlueprintFunctionLibrary.h"
#include "Animation/AnimNodeReference.h"
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
#include "SequencePlayerLibrary.generated.h"
struct FAnimNode_SequencePlayer;
USTRUCT(BlueprintType)
struct FSequencePlayerReference : public FAnimNodeReference
{
GENERATED_BODY()
typedef FAnimNode_SequencePlayer FInternalNodeType;
};
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
// Exposes operations to be performed on a sequence player anim node
// Note: Experimental and subject to change!
UCLASS(Experimental)
class ANIMGRAPHRUNTIME_API USequencePlayerLibrary : public UBlueprintFunctionLibrary
{
GENERATED_BODY()
public:
/** Get a sequence player context from an anim node context */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe, ExpandEnumAsExecs = "Result"))
static FSequencePlayerReference ConvertToSequencePlayer(const FAnimNodeReference& Node, EAnimNodeReferenceConversionResult& Result);
/** Get a sequence player context from an anim node context (pure) */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe, DisplayName = "Convert to Sequence Player"))
static void ConvertToSequencePlayerPure(const FAnimNodeReference& Node, FSequencePlayerReference& SequencePlayer, bool& Result)
{
EAnimNodeReferenceConversionResult ConversionResult;
SequencePlayer = ConvertToSequencePlayer(Node, ConversionResult);
Result = (ConversionResult == EAnimNodeReferenceConversionResult::Succeeded);
}
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
/** Set the current accumulated time of the sequence player */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe))
static FSequencePlayerReference SetAccumulatedTime(const FSequencePlayerReference& SequencePlayer, float Time);
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
/**
* Set the start position of the sequence player.
* If this is called from On Become Relevant or On Initial Update then it should be accompanied by a call to
* SetAccumulatedTime to achieve the desired effect of resetting the play time of a sequence player.
*/
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe))
static FSequencePlayerReference SetStartPosition(const FSequencePlayerReference& SequencePlayer, float StartPosition);
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
/** Set the play rate of the sequence player */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe))
static FSequencePlayerReference SetPlayRate(const FSequencePlayerReference& SequencePlayer, float PlayRate);
/** Set the current sequence of the sequence player */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe))
static FSequencePlayerReference SetSequence(const FSequencePlayerReference& SequencePlayer, UAnimSequenceBase* Sequence);
/** Set the current sequence of the sequence player with an inertial blend time */
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe))
static FSequencePlayerReference SetSequenceWithInertialBlending(const FAnimUpdateContext& UpdateContext, const FSequencePlayerReference& SequencePlayer, UAnimSequenceBase* Sequence, float BlendTime = 0.2f);
/** Get the current sequence of the sequence player - DEPRECATED, please use pure version */
UFUNCTION(BlueprintCallable, Category = "Sequence Player", meta = (BlueprintThreadSafe, DeprecatedFunction))
static FSequencePlayerReference GetSequence(const FSequencePlayerReference& SequencePlayer, UPARAM(Ref) UAnimSequenceBase*& SequenceBase);
/** Get the current sequence of the sequence player */
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe, DisplayName = "Get Sequence"))
static UAnimSequenceBase* GetSequencePure(const FSequencePlayerReference& SequencePlayer);
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
/** Gets the current accumulated time of the sequence player */
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe))
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
static float GetAccumulatedTime(const FSequencePlayerReference& SequencePlayer);
/** Get the start position of the sequence player */
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe))
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
static float GetStartPosition(const FSequencePlayerReference& SequencePlayer);
/** Get the play rate of the sequence player */
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe))
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
static float GetPlayRate(const FSequencePlayerReference& SequencePlayer);
/** Get the looping state of the sequence player */
UFUNCTION(BlueprintPure, Category = "Sequence Player", meta = (BlueprintThreadSafe))
#preflight 6143ef4681695600011c49a8 #rb braeden.shosa, aaron.cox, cesar.castro #jira none Motion Trajectory Component for Motion Matching: Motion Trajectory Component notes: 1) Abstract component/interface implemented with prediction and history API. 2) Implemented uniform, frame-rate independent history sampling algorithm for retaining trajectory sample coherence. 3) Implemented concrete Character Movement Trajectory Component for encapsulating ground locomotion prediction algorithm and API. 4) Motion Trajectory blueprint library containing: 5) FlattenTrajectory2D algorithm for isolating and removing Z axis direction contribution from tracjectory. 6) ClampTrajectoryDirection for projecting trajectory samples into a discrete, allowed set of directions (such as cardinal). Engine changes: 1) Implemented shared TrajectorySample, Range, and Domain structures for common usage among Motion Trajectory, Pose Search, and Blueprint. 2) Expanded Sequence Player blueprint library functionality for Scripted Motion Matching content example. Pose Search changes: 1) Match Pose renamed to Pose History with minor configuration parameters. 2) Complete removal of approximated past trajectory sampling. This has now been pushed to the Motion Trajectory Component. 3) Motion Matching interface changes: Goal has been replaced with Trajectory and Dynamic Play Rate Adjustment has been encapsulated to an experimental code module and blueprint library. New defaults, and encapsulating settings. 4) Motion Matching changes: New Pose Search blueprint library which encapsulates core Motion Matching algorithm. 5) Unified Trajectory to Pose Feature Vector transformation algorithms. 6) Removal of temporary Pose Search Prediction blueprint library (now Dynamic Play Rate). 7) End-to-end implementation support for Past/Future Time and Distance domain schemas. AnimInput changes: 1) Removal of AnimInput_CapsulePrediction (replaced with Motion Trajectory Component). Gameplay Anim Gym changes: 1) Pose search database is now fully distance-based (history and future). 2) Character blueprint includes Character Movement Trajectory Component with distance-based domain setup. 3) Scripted Motion Matching anim node function prototype with Engine content example. #preflight 6143ef4681695600011c49a8 [CL 17547347 by koray hagen in ue5-main branch]
2021-09-16 22:34:04 -04:00
static bool GetLoopAnimation(const FSequencePlayerReference& SequencePlayer);
Anim blueprint encapsulation improvements Adds 'template' anim BP concept. These anim BPs have no TargetSkeleton and as such cannot have direct references to animations placed inside of their anim graphs Adds function call support from anim nodes. All anim graph nodes can now call functions when initialized, updated, evaluated or when they first become relevant. Relevancy is established using a new FAnimSubsystemInstance_NodeRelevancy which tracks nodes in a local map, per UAnimInstance, if nodes require it. Functions are displayed on the node if bound, and in the details panel. Added a new override point to FAnimSubsystemInstance to allow for WT init. Moved FMemberReference customization into a public header so it can be used on anim node functions. Wrapped functions up into FAnimNodeFunctionRef structure so they can be re-used more effectively. Converted CallFunction node to use them. Added a couple of simple BP function libraries to demonstrate the use of the new FAnimNodeContext (this is intended to be a generic way of exposing FAnimNode_Base types to script without the node types themselves having to be known to script directly). Added the ability to set exposed properties as 'always dynamic' so they appear in mutable data rather than being merged into constants. This allows for the anim node data API to be changed to be less strict (and more script friendly). Now values can be set in mutable data (via GET_MUTABLE_ANIM_NODE_DATA_PTR) and attempted sets to constant data can be ignored and reported to client code. A few minor crash fixes with edge cases (inc when trying to open an asset editor fails because of a missing skeleton/cancellation). Also fixes an issue where literal linked anim graph/control rig/custom poroperty node inputs didnt get copied #rb Jurre.deBaare,Aaron.Cox [CL 16703644 by Thomas Sarkanen in ue5-main branch]
2021-06-17 08:58:34 -04:00
};