N1k_T0k
(N1k_T0k)
1

I have material parameter collection in my blueprint files, but I can’t get access in c++, I need help with this
3dRaven
(3dRaven)
2
This can also be exposed as a uproprerty in the header and assigned in editor.
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, meta = (AllowPrivateAccess = "true"))
UMaterialParameterCollection* collection;
N1k_T0k
(N1k_T0k)
3
I tried without meta parameters before, so it didn’t work, thanks a lot, it really helped me