The enum EVisibilityPropagation was moved to another include?
It is not defined in
#include "Components/SceneComponent.h"
like the documentation says
i can not compile.
Thank you!!
The enum EVisibilityPropagation was moved to another include?
It is not defined in
#include "Components/SceneComponent.h"
like the documentation says
i can not compile.
Thank you!!
Ok, i just found the function can be used without de second paramenter.
like this:
SphereMesh->SetVisibility(false);
So, at the moment for me it is Ok.
I think the documentation and Rider are outdate… or something…
Overloaded function… this is better.
The documentation is correct, but the issue is you were trying to call the private (internal) function of SetVisibility, but you needed to use the public SetVisibility function like you are now using (second parameter should be true or false only, EVisibilityPropagation as the second parameter is for the private function only).
Hi @SteveRambo
Thanks for this info. Next time i’ll know what its mean and what is going on…
I would like to configure Rider to don’t show me the internal private functions.
Thank you so much!!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.