This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*, *::before, *::after { | |
box-sizing: border-box; | |
min-width: 0; | |
margin: 0; | |
padding: 0; | |
} | |
html { | |
font-size: 62.5%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* My Comment usually goes here. */ | |
UPROPERTY(EditAnywhere, BlueprintReadwrite, Category = "MY VAR" | |
meta=(DisplayName = "MY VAR")) | |
float MyVar = 0; |