Niagara user parameter is not visible in BluePrint -> UE5.2 & C++

@Ivan3z

Give the niagara component the following uproperty and it should work

UPROPERTY(VisibleAnywhere, meta = (AllowPrivateAccess = true))
class UNiagaraComponent* NiagaraComponent;

Here it is in a custom c++ class :slight_smile:

Definition in c++ class header

And the custom user params in the particle system

And if I remove the float override I set in c++ then yes it does show the original 800 value bp => c++ class

2 Likes