Renamed some animation data

This commit is contained in:
mrlee207 2025-07-30 21:29:07 +07:00
parent 492c4135f5
commit e72064eb13
9 changed files with 928 additions and 747 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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

View File

@ -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)

View File

@ -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)