• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Player is little blurry when view moves horizontal

L

LightWood

Guest
Hi guys. I have a problem where my player is moving horizontal view works strange and player gets a little blurry. But if I set spd = 1 it goes normal, but too fast for me. I need floor number of speed but view ruins it.
obj_player [CREATE EVENT]
frame_delta = 60 / 1000000 * delta_time;

spd = 0.75 * frame_delta;
imgSpd = 0.05 * frame_delta;
hsp = 0.75 * frame_delta;
vsp = 0.75 * frame_delta;

in room settings I set camera in middle to follow player. How can I work with floor numbers
 

Dmi7ry

Member
round position of the view, like
Code:
view_xview[0] = round(view_xview[0]);
But you should do it after the view changed position.
 
Top