Skip to content

Instantly share code, notes, and snippets.

View TheAyes's full-sized avatar
🎯
Focusing

Justin Schildt TheAyes

🎯
Focusing
View GitHub Profile
@TheAyes
TheAyes / UFUNCTION TEMPLATE
Last active August 9, 2022 01:00
Just a little UFUNCTION template I like to use.
/**
* My Comment usually goes here.
* @param param The input parameter description.
* @return The function result description.
*/
UFUNCTION(BlueprintCallable, Category = "MY FUNC"
meta(DisplayName = "MY FUNC", ShortTooltip = "MY TOOLTIP"))
FString MyFunc(float param);
@TheAyes
TheAyes / UPROPERTY TEMPLATE
Last active August 9, 2022 01:00
A little template like to use for my UPROPERTIES.
/* My Comment usually goes here. */
UPROPERTY(EditAnywhere, BlueprintReadwrite, Category = "MY VAR"
meta=(DisplayName = "MY VAR"))
float MyVar = 0;