-
Hi ye 'all, Just wondering about this, Is there a resource section where I can add more icons & sounds & other fun stuff to make programming more fun, Just curious though.
-
This is where i will post a bunch of sprites, first round Halo Sprites, Please note all sprites used here are not ripped and took (10) intense minutes to google but i thought i would share some of these, i will share more sprites later...
-
I am trying to display a polygon (in floating mode, like a sprite), which is easy. What I'm stuck on, is trying to separately add a label (eg a number) onto the polygon, so that travels with it. But my first problem is just getting my number to display. Why doesn't this display a number on a...
-
I have a test program. The Main() method contains this code: Define spider As Sprite Define factor As Decimal = 0.2 Define magnification As Decimal Define i As Integer = 100 spider.Load( "spider.png") spider.MoveTo(100, 50) spider.Show() Define spiders As Sprite[50] For i = 1 To 5 magnification...
-
This is my version of Breakout. Thanks to everyone who posted the assorted bricks, balls and sounds etc that I used. You can change the number of balls, the ball speed and update speed to make the game easier or more difficult if desired. Have fun
-
Ok so a programmer friend of mine helped me out... so here is a copy of the updated source code for those who may be able to use the changes for themselves. I am also having a new problem though... I want to erase the line when I press a particular key but it wont work, I get an error message instead...
-
Hi All, I have been trying to figure something out for the past few days, I'm stuck. I am working on a very simple typing program, and I would like my sprite to move as if they are falling down from the sky. Ok I got them to do that, but I can't for the life of me get them to fall a couple seconds...
-
Hi All, I have been trying to figure something out for the past few days, I'm stuck. I am working on a very simple typing program, and I would like my sprite to move as if they are falling down from the sky. Ok I got them to do that, but I can't for the life of me get them to fall a couple seconds...
-
How to move a sprite in an elliptical path.
-
Hymake, I think the problem is largely due to you drawing the button as a sprite. I added two lines to your program. The button.Button.Show() actually draws the button as a sprite on the screen. This is very important step - as this makes the button sprite something that can be interacted with. Notice...