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);
Actually, mine display correctly using this in-editor. As in, using my method, comments display correctly on functions and properties as viewed within the editor itself. Is this the issue you were having, or were you not able to see the comments when hovering over the properties and functions inside C++?
Not able to see them inside C++ (visual studio pro 2013)
In my class if i hover over a function it wont show the comment that is above the UFUNCTION. i have to move the UFUNCTION() above the comment for it show in the hover tooltip