Is there any way to have comments ignore UPROPERTY and UFUNCTION lines? My code looks really ugly getting comments to show up corrently when you hover over function / variables.
I Have to do this:
UFUNCTION(BlueprintCallable, Category = Location)
/**
* Determine if a move is valid
*
* @param CurrentLocation The current location.
* @param RequestedLocation The requested location to move to.
*
* @return true if the requested location is adjacent, false if its not.
*/
bool IsMoveValid(const class ABaseLocation* const CurrentLocation, const ABaseLocation* const RequestedLocation);
I Have to do this:
UFUNCTION(BlueprintCallable, Category = Location)
/**
* Determine if a move is valid
*
* @param CurrentLocation The current location.
* @param RequestedLocation The requested location to move to.
*
* @return true if the requested location is adjacent, false if its not.
*/
bool IsMoveValid(const class ABaseLocation* const CurrentLocation, const ABaseLocation* const RequestedLocation);
Comment