Renamed some animation data
This commit is contained in:
parent
492c4135f5
commit
e72064eb13
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 37 KiB |
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,3 +1,4 @@
|
||||
;METADATA=(Diff=true, UseCommands=true)
|
||||
[/Script/Engine.GameUserSettings]
|
||||
bUseVSync=False
|
||||
bUseDynamicResolution=False
|
||||
@ -5,8 +6,6 @@ ResolutionSizeX=3840
|
||||
ResolutionSizeY=2160
|
||||
LastUserConfirmedResolutionSizeX=3840
|
||||
LastUserConfirmedResolutionSizeY=2160
|
||||
WindowPosX=-1
|
||||
WindowPosY=-1
|
||||
FullscreenMode=1
|
||||
LastConfirmedFullscreenMode=1
|
||||
PreferredFullscreenMode=1
|
||||
|
||||
@ -121,13 +121,13 @@ class UAnimSequence* FOLSMovementAnimSet_ForwardFacing_StartCycle::GetMovementAn
|
||||
return result;
|
||||
}
|
||||
|
||||
UAnimSequence* FOLSMovementAnimSets_ForwardFacing_StopCycle::GetLeftOrRightAnim(const bool isRightFootPlanted) const
|
||||
UAnimSequence* FOLSMovementAnimSet_ForwardFacing_StopCycle::GetLeftOrRightAnim(const bool isRightFootPlanted) const
|
||||
{
|
||||
return Stop.GetForwardLeftOrRightFoot(isRightFootPlanted);
|
||||
}
|
||||
|
||||
class UAnimSequence* FOLSMovementAnimSets_ForwardFacing_Pivot::GetLeftOrRightByAngle(const float angle,
|
||||
const bool isRightFootFarFromTarget) const
|
||||
class UAnimSequence* FOLSMovementAnimSet_ForwardFacing_Pivot::GetLeftOrRightByAngle(const float angle,
|
||||
const bool isRightFootFarFromTarget) const
|
||||
{
|
||||
return (angle > 0.f
|
||||
? Pivot180R.GetForwardLeftOrRightFoot(isRightFootFarFromTarget)
|
||||
|
||||
@ -177,28 +177,13 @@ struct FOLSMovementAnimSet_ForwardFacing_Pivot
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
public:
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Movement Pivot Anim Set")
|
||||
FOLSMovementAnimSet_FeetPosition Pivot180L;
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Movement Pivot Anim Set")
|
||||
FOLSMovementAnimSet_FeetPosition Pivot180R;
|
||||
};
|
||||
|
||||
|
||||
USTRUCT(BlueprintType)
|
||||
struct FOLSMovementAnimSets_ForwardFacing_Pivot
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
public:
|
||||
|
||||
class UAnimSequence* GetLeftOrRightByAngle(const float angle,
|
||||
const bool isRightFootFarFromTarget) const;
|
||||
const bool isRightFootFarFromTarget) const;
|
||||
|
||||
public:
|
||||
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Movement Pivot Anim Set")
|
||||
FOLSMovementAnimSet_FeetPosition Pivot180L;
|
||||
|
||||
@ -207,7 +192,7 @@ public:
|
||||
};
|
||||
|
||||
USTRUCT(BlueprintType)
|
||||
struct FOLSMovementAnimSets_ForwardFacing_StopCycle
|
||||
struct FOLSMovementAnimSet_ForwardFacing_StopCycle
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
@ -266,10 +251,10 @@ public:
|
||||
TObjectPtr<class UAnimSequence> Cycle = nullptr;
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gait Anim Set")
|
||||
FOLSMovementAnimSets_ForwardFacing_Pivot Pivot;
|
||||
FOLSMovementAnimSet_ForwardFacing_Pivot Pivot;
|
||||
|
||||
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Gait Anim Set")
|
||||
FOLSMovementAnimSets_ForwardFacing_StopCycle StopCycle;
|
||||
FOLSMovementAnimSet_ForwardFacing_StopCycle StopCycle;
|
||||
};
|
||||
|
||||
USTRUCT(BlueprintType)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user