-
-
Notifications
You must be signed in to change notification settings - Fork 157
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
pygame.mixer.Sound.copy (2577) #1328
Comments
hi, |
@bilhox |
Hi @thomasgrgi , sure ! Let me just send you the code I did when I'm back to my computer. Also don't forget to make a coauthored commit when you're ready to open a PR. |
@bilhox |
Here is my branch : https://github.com/bilhox/pygame-ce/tree/sound-copy |
Issue №2577 opened by fortwoone at 2021-05-04 15:38:39
I noticed there were copy protocols for some important Pygame objects, such as Surfaces and Rects. I wondered if it would have some interest to add one to Sound objects too, because it would help in some situations, for example if you don't want to use imported sounds directly (also to avoid direct instance editing as we may encounter with Surfaces if we don't copy them before editing)...
Comments
# # fortwoone commented at 2021-05-13 19:00:45
And so I found a technique to copy Sound objects without using a copy method : you only need to make an array from the source Sound and then make another Sound object from the array
# # illume commented at 2021-05-22 20:12:49
Would be useful to me too.
# # fortwoone commented at 2021-05-23 10:36:01
Do you want me to give you my piece of code ?
The text was updated successfully, but these errors were encountered: