Can't Have Unreal Engine UPROPERTY on the same line
I want my UPROPERTY to be on the same line as the declared variable:
UPROPERTY(VisibleDefaultsOnly, Category=Mesh) USkeletalMeshComponent* Mesh1P;
but every time I use Code>Reformat Code with Ctrl+Alt+L, the variable goes to the next line:
UPROPERTY(VisibleDefaultsOnly, Category=Mesh)
USkeletalMeshComponent* Mesh1P;
How can I tell rider to do not do this?
Rider 2023.2.2
Please sign in to leave a comment.
Hello m kh,
This code style for UPROPERTY is not available in Rider yet. Please feel free to vote for RSCPP-35090 to demonstrate your interest.
Thank you Kirill 😍