Skip to content

Commit

Permalink
Fixing last bit of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dyanikoglu committed Nov 10, 2023
1 parent 077025b commit 543ec86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/ALSV4_CPP/Public/Library/ALSAnimationStructLibrary.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,13 @@ struct FALSAnimGraphAimingValues
GENERATED_BODY()

UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category = "ALS|Anim Graph - Aiming Values")
FRotator SmoothedAimingRotation;
FRotator SmoothedAimingRotation = FRotator::ZeroRotator;

UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category = "ALS|Anim Graph - Aiming Values")
FRotator SpineRotation;
FRotator SpineRotation = FRotator::ZeroRotator;

UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category = "ALS|Anim Graph - Aiming Values")
FVector2D AimingAngle;
FVector2D AimingAngle = FVector2D::ZeroVector;

UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category = "ALS|Anim Graph - Aiming Values")
float AimSweepTime = 0.5f;
Expand Down
2 changes: 1 addition & 1 deletion Source/ALSV4_CPP/Public/Library/ALSCharacterEnumLibrary.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ enum class EALSHipsDirection : uint8
LB
};

UENUM(BlueprintType, meta = (ScriptName = "ALS_Stance"))
UENUM(BlueprintType, meta = (ScriptName = "ALS_MantleType"))
enum class EALSMantleType : uint8
{
HighMantle,
Expand Down

0 comments on commit 543ec86

Please sign in to comment.