AfterAll14 Posted August 15, 2017 Share Posted August 15, 2017 Anyone knows how to disable background wind? Kinda annoying, I want to get clean picture for intro scene. setAmbientSoundEnabled doesn't help . Link to comment
NeXuS™ Posted August 15, 2017 Share Posted August 15, 2017 Use setDevelopmentMode and the showsound command. Wait till you hear the wind sound and then use setWorldSoundEnabled to disable it with the given ID. Link to comment
AfterAll14 Posted August 15, 2017 Author Share Posted August 15, 2017 (edited) @NeXuS™ it doesn't work either. Even with all sound groups disabled this static noise is still there. It only goes away when camera is in fade. Edited August 15, 2017 by AfterAll14 Link to comment
NeXuS™ Posted August 15, 2017 Share Posted August 15, 2017 You have to go inside an interior and then leave it to disable that sound which is already playing. Quote Note: This function does not affect sounds which are already playing, such as the wind sound that can only be stopped by entering an interior. 1 Link to comment
AfterAll14 Posted August 15, 2017 Author Share Posted August 15, 2017 Well, the problem is - I need to be in exterior for my intro scene Link to comment
Tails Posted August 15, 2017 Share Posted August 15, 2017 (edited) What I do in my server is I run set the camera interior to 1 then I disable the sounds then a start a timer to set it it back after 2 seconds. Camera.interior = 1 setAmbientSoundEnabled("general", false) setAmbientSoundEnabled("gunfire", false) setWorldSoundEnabled(0, 0, false) setWorldSoundEnabled(0, 29, false) setWorldSoundEnabled(0, 30, false) Timer(function() Camera.interior = 0 end, 2000, 1) This works as a workaround, I don't currently know a better working solution, if you find it please let me know Edited August 15, 2017 by Tails 1 Link to comment
AfterAll14 Posted August 15, 2017 Author Share Posted August 15, 2017 @Tails Thanks, worked. 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now