No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: Final Fantasy XIV A Realm Reborn, it's about 1 year thata this game came up to online massive playing, and it has been very accepted from fans. | |
Re: pygame.mixer.Sound class is ideal for short wave (.wav) files that can be used as sound effects, you can play them as much as you want. | |
Re: __file__ is the name of de module file that is actually in use. os.path.dirname gets the directory path where the __file__ is stored. os.path.join creates a new path concatenating first argument to second argument. | |
Is it valid to use an integer variable as a condition? I mean: int var = 20; if (var) { //code here } I know that when var == 0 it's equivalent to false and true if 1, but otherwise could it be a valid question? | |
Re: is'n this the same as https://www.daniweb.com/software-development/python/threads/323401/six-degrees-graphs-in-python ?? | |
Re: You have to use an auxiliar image variable, so you rotate the image and saves it in the aux var, and the original image is not modified. `self.image = pygame.image.load('Plane.gif').convert()` `self.rotatedImage = rotate(self.image, 10)` `surface.blit(self.rotatedImage,(self.x,self.y))` try it and tell us how it worked. Maybe you will see some strange rotation … | |
Re: To set a Scrollbar to some other widget I have an example: JTextArea directionJA = new JTextArea(); JScrollPane directionJS = new JScrollPane(); directionJS.setViewportView(directionJA); directionJS.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); directionJS.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS); I'm setting a vertical scrollbar to a text area. I see you are setting both types of scrollbar. If giving it to constructor class doesn't … | |
Re: I vote for **Geany** as it is easy and simple and works on much languajes. http://www.geany.org/ |
The End.