How can I control the sound distance?
1 Like
Under your Sound in Properties you have these:
RollOffMaxDistance - This is the maximum distance at which the sound can be heard.
- Beyond this, the sound volume = 0.
- Example:
sound.MaxDistance = 50
means it fades out fully by 50 studs.
RollOffMinDistance - The distance within which the sound plays at full volume.
- Between
MinDistance
andMaxDistance
, it fades out. - Example:
MinDistance = 10
→ full volume within 10 studs.
Change the stud distance to your liking
3 Likes