112
nukaboy
7y

Other people playing games: "Nice graphics!"
Me playing games: "Wonder how they did that shader..."

Comments
  • 6
    Me: I wonder how you even develop graphics..
  • 2
    I have a question for tou: how to bullets travel in a multi-player game? Aren't they too fast even for 50ms server-client latency? Assuming the distance is so small it would hit something in less than 50ms.
  • 2
    @Mayhem93 the actual hit calculations etc are all done on the server, so you only have lag during input (sending a "shoot" command to the server) and output (telling clients to play effects etc or that something was hit)
  • 3
    @Mayhem93 Well, bullets are instant in most games, and there is no actual "bullet". In most cases they just cast a ray from your gun and check if it collides with any object.
  • 1
    @gggggggggg talking about those games were bullet drop exists, like in Battlefield 4
  • 0
    @Mayhem93 before it was done using a ray. Now it's actual bullets.
  • 0
    @gggggggggg cs:go doesn't do that. It did tho.
Add Comment