Idea for Game Maker Server

Posted by namlunthkl
I think update player position, image_index, image.... every step is bad. it make game is more and more slower. Why don't you remove them??

Replies (1)

Last message on 21 Jun 2015

Size43 (Administrator) on 21 Jun 2015, 17:48:18
To disable image/sprite syncing you can call gms_optimize_variables.

Also note that variables are only sent when the value changes. This means that variables you don't use, for example image_blend, will only be sent once.

Please take a look at gms_optimize_set_sendspeed as well. You'll be able to reduce the rate at which variables are sent.