Re: learning pygame?
@10, thanks! I never knew about that.
URL: https://forum.audiogames.net/post/450254/#p450254
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector
Re: learning pygame?
hiif you use windows, can to get the vscode and play witc python.you no will to need redirect the output for a file
URL: https://forum.audiogames.net/post/450240/#p450240
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
Re: learning pygame?
Interesting, I may have to give that a shot.
URL: https://forum.audiogames.net/post/449133/#p449133
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector
Re: learning pygame?
python script.py > output.txt 2>&1 is even better and pipes errorneous output as well when under Windows . When under Linux, python script.py >& output.txt works fine as well.Best Regards.Hijacker
URL: https://forum.audiogames.net/pos
Re: learning pygame?
@ 10 good idea, that's what i do
URL: https://forum.audiogames.net/post/448989/#p448989
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector
Re: learning pygame?
A good thing that I learned is typing this into your command line or power shell. python script.py>output.txt This will capture any text your program outputs into a file called output.txt which will be located in the directory of your script. This is good beca
Re: learning pygame?
A good thing that I learned is typing this into your command line or power shell. python script.py>output.txt This will capture any text your program outputs into a file called output.txt which will be located in the directory of your script.
URL: ht
Re: learning pygame?
You are probably getting an error when you press any key. You should send your code here so we can find the errors and tell you about them
URL: https://forum.audiogames.net/post/448811/#p448811
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin
Re: learning pygame?
I have some problems.I create a function, I put the commands of sounds and keys, but any key that I press the program closes.What can I do?
URL: https://forum.audiogames.net/post/448802/#p448802
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin
Re: learning pygame?
lol, i feel stupid now. I just saw that there was no line that called the function.And that shows how bad at computers i am.
URL: https://forum.audiogames.net/post/448791/#p448791
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
Re: learning pygame?
@5that was the function definition.The function wasn't called in the main program, that's why the code doesn't executeeither type example() at the end of the file, or use something like:if __name__ == '__main__': example()
URL: https://forum.a
Re: learning pygame?
hi, I am trying to learn about py game also, so i used this example.however when running it from powershell, i just get a message welcoming me to pygame, then the program clozes, a window isn't even shone.not really sure if i did something wrong, but i have pyga
Re: learning pygame?
I have an example that can help get you started with the core basics, window, key input, audio, etc.import pygame
from pygame import mixer
import sys
def Example():
#initialize pygame
pygame.init()
#initialize sound mixer
mixer.init()
#create display
Re: learning pygame?
You won't find a full documentation dedicated to audiogames somewhere, because audiogames are simply not interesting enough to create a documentation for those. The pygame documentation features alot things like keyboard/joystick handling, audio playback and
Re: learning pygame?
pygame.org
URL: https://forum.audiogames.net/post/448688/#p448688
--
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector
learning pygame?
Hello guys!Where could I find documentation on developing audiogames using pygame?If you do not hear, is there any documentation that is fairly focused on audio, keyboard manipulation, etc?
URL: https://forum.audiogames.net/post/448687/#p448687
--
Audiogames
16 matches
Mail list logo