Jump to content
A 2021 backup has been restored. Forums are closed and work in progress. Join our Discord server for more updates! ×
SoaH City Message Board

cyborg_ar

Members
  • Posts

    555
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by cyborg_ar

  1. You should spend more time developing games (or doing anything more useful) and less whoring for attention.
  2. oh, you can't sleep, so we all have to suffer it? please, spend more than 5 minutes thinking and/or working before starting other topic the next time.
  3. oh dear fucking god someone, please kill me, kill me now. seriously, if you don't even know how to crop an image (or take an screenshot of a sepparate window) i don't know how the hell you expect to make a game.
  4. No, we didnt switch usernames, we made clear who we NOT are
  5. note: since i don't know where will you implement it my example will be generic python (which should be possible to translate easily) ok, to start the movement, set the bullet's speed to something along sonic's orientation vector (in this example i'll take it from his angle, but if your engine uses rotation matrices, you can get it from there) bullet_speed[0] = cos(sonic_angle) * BULLET_STRENGTH bullet_speed[1] = sin(sonic_angle) * BULLET_STRENGTH Then, if your engine doesn't have a physics engine we are gonna do this calculation every frame (basic newtonian physics): #TIMESTEP being the amount of time from frame to frame, at 50 fps its 1/50th of second = 0.02 bullet_position[0] += bullet_speed[0] * TIMESTEP bullet_position[1] += bullet_speed[1] * TIMESTEP # acceleration of gravity bullet_speed[1] -= 9.8 * TIMESTEP
  6. football manager in the second place? are you kidding, not-me?
  7. more confusing? this is just the most unambiguous way of solving the problem!
  8. that's a pretty good idea, the avatars should be upside down xD here's mine: gr8 music btw :3
  9. My screen is not a 35mm film printer, so there are at least 32 useless bits per pixel in those textures (not to tell about the resolution)
  10. lol, that seems rael got all the credit
  11. i can be your tester for Linux (if it happens to work here)
  12. http://www.shacknews.com/featuredarticle.x?id=1127 ......................
  13. yeah, that's kinda what doom/duke3d did and worked pretty well
  14. omg slinger is in another power trip, has big avatar
×
×
  • Create New...