Skip to content

Instantly share code, notes, and snippets.

View TheAyes's full-sized avatar
🎯
Focusing

Ayes TheAyes

🎯
Focusing
  • Germany
  • 07:36 (UTC +02:00)
View GitHub Profile
@TheAyes
TheAyes / reset.css
Last active September 16, 2024 08:54
CSS Reset
*, *::before, *::after {
box-sizing: border-box;
min-width: 0;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
}
@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;