Photon Pong game

Options
Hi! there is some example of Pong game with photon?
In the past i try to made a pong game but the ball get a very laggy/jerky.

There is some example like the UNET example https://www.assetstore.unity3d.com/en/#!/content/41836 ?

Regards

Comments

  • Tobias
    Options
    There is no Pong demo currently.
    Actually, Pong is already relatively difficult to get right, because every little hiccup will be visible. The strict rules for movement and the single ball make you notice every little correction you would do.
    Also, the "hit or miss" situation for the paddle is pretty important to get right.

    I suggest to not synchronize the balls position regularly but instead send "hits", their position and the new direction. The interpolation when it moves can be done locally.

    Thanks for the heads up. I will check out the demo for uNet. It will be very interesting to see how correct this looks.
  • mrwayne
    Options
    Thx very much tobias, i will try