Skip to content

Instantly share code, notes, and snippets.

@TheAyes
Last active August 9, 2022 01:00
Show Gist options
  • Save TheAyes/b2361a6a2853e03193f67edb3b71c871 to your computer and use it in GitHub Desktop.
Save TheAyes/b2361a6a2853e03193f67edb3b71c871 to your computer and use it in GitHub Desktop.
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment