Search found 4 matches

by Rucoon
Wed Jul 31, 2019 4:26 pm
Forum: Games and Creations
Topic: Three Doors
Replies: 11
Views: 11054

Re: Three Doors

Fun one I love this kind of game. I must say the clicking sound kinda hurts though.
by Rucoon
Sun Feb 17, 2019 2:22 pm
Forum: Support and Development
Topic: How to delta time properly?
Replies: 3
Views: 4455

Re: How to delta time properly?

Yes, you will want to use dt on friction too. If you don't then (lets say your game is running at 60 fps) player.xv and player.yv will be multiplied by friction 60 times a second when you only want it to be multiplied by the total of friction once a second. Delta time is the time between two frames ...
by Rucoon
Sat Mar 11, 2017 7:27 pm
Forum: Support and Development
Topic: Hosting a UDP server in threads?
Replies: 2
Views: 2961

Re: Hosting a UDP server in threads?

I've created my own server / client just now, and it seems to work without any kind of problems without using threads. I've attached my files to this post for you to see. -snip- I can get the server working fine without threads (You can even copy the text from the thread file into the server and re...
by Rucoon
Sat Mar 11, 2017 4:48 pm
Forum: Support and Development
Topic: Hosting a UDP server in threads?
Replies: 2
Views: 2961

Hosting a UDP server in threads?

I am trying to speed up a UDP game server by using threads to send the data out instead of the server, the hope is with a few threads this will work. But when I try to send data from the thread sever I am getting a "refused" error and I don't know what is causing it as it is set up the sam...