- Home /
2D movimentation "Lag"
I have an simple code that the only thing it does is move the game object up.
public float speed;
void Update(){
transform.Translate(new Vector2(0,Speed * Time.deltaTime));
}
But it seems kind of laggie, any idea ?
Comment