Python Forum

Full Version: Second player on second monitor?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's the logical way to get a second play window on an additional laptop monitor? I don't know how blue tooth works, a cord would be fine, as would both controllers in one laptop.

I'm under the impression that I can make
 
self.screen1 = pg.display.set_mode((self.width, self.height))
self.screen2 = pg.display.set_mode((self.width, self.height))


I don't know how to get screen2 onto my friends screen.
If you have two different computers. Then you need to learn how to make a server program. Then you would create your client program. Which both computers would have to run client. One would host as the other would join.
(Jan-14-2021, 05:52 AM)Windspar Wrote: [ -> ]If you have two different computers. Then you need to learn how to make a server program. Then you would create your client program. Which both computers would have to run client. One would host as the other would join.

Perfect. Thank-you.