Audio Component Play not working

The sound you are trying to play could be optimized away, this happens when the volume is 0 or when you are far away I believe. On the sound asset editor configure it to play virtualized when silent.

*Edit You can also do that in c++.

// USoundBase* Sound
Sound->VirtualizationMode = EVirtualizationMode::PlayWhenSilent;
1 Like