-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add loop and fade options to pygame.mixer.channel.queue() #3236
Comments
Hello @OlaKenji, I would like to work on this issue if it's possible |
If I understand well the issue, I should add two methods, one for the loop and one for the fade option for the sound that are in the queue ? |
Actually it should not add two methods, but two parameters for the same function aside from the sound being played. |
Yes, i agree with you. The params should be add in chan_queue in mixer.c file ? |
Hi, @AntoineMamou. I am happy that you would like to attempt this. I just wanted to also highlight this issue #3011, in case you happen to come across a solution while digging. |
Currently, the pygame.mixer.Channel.queue() method allows queuing a sound to be played immediately after the current sound finishes. However, it does not support specifying loop or fade options for the queued sound. These options are already available in pygame.mixer.Sound.play() and would significantly enhance the functionality and flexibility of queue().
The text was updated successfully, but these errors were encountered: