Search found 2 matches

by sundays
Fri Sep 07, 2018 6:33 pm
Forum: Support and Development
Topic: vscode not working with love2d
Replies: 2
Views: 3129

Re: vscode not working with love2d

Press CTRL+, In the right hand side, you can specify settings for that plugin, for example: { "pixelbyte.love2d.path": "Y:\\dev\\love2d\\love-11.1.0-win64\\love.exe", "pixelbyte.love2d.debug": true, "pixelbyte.love2d.srcDir": "", } You can also overr...
by sundays
Sun Sep 02, 2018 8:42 pm
Forum: Support and Development
Topic: Network Multithreading in Love2d
Replies: 0
Views: 2198

Network Multithreading in Love2d

I'm writing a simple game that has online multiplayer. I'm not sure how exactly networking is done in love2d. I'm using blocking sockets. My plan was to handle everything but reading/writing to the socket in the main thread. I would send messages from the client on the main thread, and read messages...