XNA Creators Club Online
foros de la comunidad

Search Forums

Page 1 of 10 (100 items) 1 2 3 4 5 Next > ... Last »
  • Re: Where should I consider (0, 0) in my game?

    Sorry for the slight offtop, but you can remember it this way:  That's Down, Right rude!
    Posted to General (Forum) by Beeny95 on 22/10/2009
  • Re: Need good, cheap, possibly free art program.

    [quote user="Ben Andersen"]If you've decided on using the gimp, might I suggest that in order to learn it you try Grokking the Gimp. You can either buy the printed version or just navigate the free HTML version on their web site: http://gimp-savvy.com/BOOK/index.html It's a pretty good place to start with the gimp and for some ...
    Posted to Game Design (Forum) by Beeny95 on 22/10/2009
  • Re: Ball Speed Bug

    Ok I figured it out. The block was updating it's rectangle X and Y on the rectangle X and Y.... Yeah so nothing changed.So I simply changed it to the X and Y positions. I didn't even notice, I must of been tired.... Anyway here is what the block rectangle code in update is now: ...
    Posted to General (Forum) by Beeny95 on 21/10/2009
  • Re: Ball Speed Bug

    I do:  // Updates collision rect               this.ball_rect = new Rectangle(                   (int)this.ball_position.X,                   (int)this.ball_position.Y,                   this.ball_sprite.Width,   ...
    Posted to General (Forum) by Beeny95 on 21/10/2009
  • Re: Fade Effect

    Why not have a color variable such as fade_color, set it to 255, 255, 255, 255 Then have on each update minus/add a 1 or whatever suits you to the alpha. You can pass the color through the update.Such as if you had a alpha class: alpha_class.Update(gameTime, clientBounds, fade_color);
    Posted to General (Forum) by Beeny95 on 20/10/2009
  • Re: Ball Speed Bug

    Ahhh, smart. I'll do it now and see what happens. [EDIT:] I updated the first post with the new code. It appears that the ball doesn't react with the blocks. It also doesn't even run the if statements to check where about it hits the block. I put break points to test.
    Posted to General (Forum) by Beeny95 on 20/10/2009
  • Re: Ball Speed Bug

    yeah your right, but how would i got about updating the ball speed once every update, and updating if the ball intersects the block once for every block every update?
    Posted to General (Forum) by Beeny95 on 20/10/2009
  • Re: Ball Speed Bug

    ahhhh, ok thanks. I will try and fix it. Many thanks (embarrased face), wish me luck [EDIT:] Im not sure how to do this tehn?
    Posted to General (Forum) by Beeny95 on 20/10/2009
  • Ball Speed Bug

    Hi XNA community. I have ran into a bug I just can't figure out. Basically I am making a breakout game, and whenever I add an extra block to the game, the ball travels faster. I have no idea why.Here is an outline of the porcess: Update In-Game State Update level_manager Update BlocksThat said I don't understand what is causing ...
    Posted to General (Forum) by Beeny95 on 20/10/2009
  • Re: Font is displayed incorrectly in XNA - How do I remove extra red lines?

    I can't see red lines in either, but i see blur in the second image. Make sure you change the scale in the spritefont file.
    Posted to General (Forum) by Beeny95 on 18/10/2009
Page 1 of 10 (100 items) 1 2 3 4 5 Next > ... Last »