Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit cf357ae

Browse files
committed
Update comments
1 parent ae5fd09 commit cf357ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Source/TrickyFunctionLibrary/Public/TrickyUtilsLibrary.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TRICKYFUNCTIONLIBRARY_API UTrickyUtilsLibrary : public UBlueprintFunctionL
3232
GENERATED_BODY()
3333

3434
/**
35-
* Converts given time in seconds in different time formats.
35+
* Converts given time in seconds to different time formats.
3636
*/
3737
UFUNCTION(BlueprintPure, Category="TrickyFunctionLibrary")
3838
static FString ConvertTimeSeconds(const float TimeSeconds, const ETimeFormat TimeFormat);
@@ -46,7 +46,7 @@ class TRICKYFUNCTIONLIBRARY_API UTrickyUtilsLibrary : public UBlueprintFunctionL
4646
const float TargetTime = 1.f);
4747

4848
/**
49-
* Returns camera location and rotation.
49+
* Returns player characters viewport location and rotation.
5050
*/
5151
UFUNCTION(BlueprintCallable, Category="TrickyFunctionLibrary")
5252
static bool GetPlayerCharacterViewPoint(AActor* CharacterActor, FVector& ViewLocation, FRotator& ViewRotation);
@@ -60,21 +60,21 @@ class TRICKYFUNCTIONLIBRARY_API UTrickyUtilsLibrary : public UBlueprintFunctionL
6060
}
6161

6262
/**
63-
* Changes the given variable by a given delta value up to a target value.
63+
* Changes the given int32 variable by a given delta value up to a target value.
6464
* If CurrentValue > TargetValue, it will be decreased, else increased.
6565
*/
6666
UFUNCTION(BlueprintCallable, Category="TrickyFunctionLibrary")
6767
static void ApproachInt32(UPARAM(ref) int32& CurrentValue, const int32 TargetValue, const int32 DeltaValue);
6868

6969
/**
70-
* Changes the given variable by a given delta value up to a target value.
70+
* Changes the given float variable by a given delta value up to a target value.
7171
* If CurrentValue > TargetValue, it will be decreased, else increased.
7272
*/
7373
UFUNCTION(BlueprintCallable, Category="TrickyFunctionLibrary")
7474
static void ApproachFloat(UPARAM(ref) float& CurrentValue, const float TargetValue, const float DeltaValue);
7575

7676
/**
77-
* Changes the given variable by a given delta value up to a target value.
77+
* Changes the given vector variable by a given delta value up to a target value.
7878
* If CurrentValue > TargetValue, it will be decreased, else increased.
7979
*/
8080
UFUNCTION(BlueprintCallable, Category="TrickyFunctionLibrary")

0 commit comments

Comments
 (0)