Code Comments in Visual Studio Pro 2013

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);

Hi falola,

I’m not sure if I 100% understand what the issue is, but I lay out my macros in the following way.

My comments display fine.

I wonder what i messed up in visual studio then…oh well i guess time to reset to defaults and try again

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++?

This works fine for me, too.

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

Here is what is happening:

Correct:

Incorrect:

I might just have to re install Visual Studio and see if that fixes it

Ran the VS repair and the repair for the update 3 and it still doesn’t work. Next step is to uninstall VS all together