Hi all,
Does anyone knows how to access protected variables from UE4 class?
ex:
class USoundWave
protected:
/** Cached sample rate for displaying in the tools */
UPROPERTY(Category = Info, AssetRegistrySearchable, VisibleAnywhere)
int32 SampleRate;
I want to access SampleRate and I declare a class inherits from USoundWave.
But still can’t access.