diff --git a/Content/Maps/warmup.umap b/Content/Maps/warmup.umap index 83891e21a..00563cff6 100644 Binary files a/Content/Maps/warmup.umap and b/Content/Maps/warmup.umap differ diff --git a/Content/Physicals/PM_Character.uasset b/Content/Physicals/PM_Character.uasset index abe52c0ec..26cc5654a 100644 Binary files a/Content/Physicals/PM_Character.uasset and b/Content/Physicals/PM_Character.uasset differ diff --git a/Source/Cloud9/Character/Components/Cloud9CharacterMovement.h b/Source/Cloud9/Character/Components/Cloud9CharacterMovement.h index f6c42878b..4af4acedf 100644 --- a/Source/Cloud9/Character/Components/Cloud9CharacterMovement.h +++ b/Source/Cloud9/Character/Components/Cloud9CharacterMovement.h @@ -57,13 +57,15 @@ class CLOUD9_API UCloud9CharacterMovement : public UCharacterMovementComponent FActorComponentTickFunction* ThisTickFunction ) override; +protected: + /** Target rotator of character*/ + UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category=State) + FRotator TargetRotator; + private: static constexpr float RotationLagScale = 360.0f; /** Character rotation lag*/ - UPROPERTY(Category="Character Movement (Rotation Settings)", EditDefaultsOnly) + UPROPERTY(EditDefaultsOnly, Category=Config) float RotationLag; - - /** Target rotator of character*/ - FRotator TargetRotator; };