Why is it that when the Input.MousePosition of frames is accelerated, it drops quickly and the actions performed at this moment are performed several times less often, let's say we spawn the object, when the mouse is moved slowly, the detours will spawn perfectly, and if we move the mesh to another point faster, then we will spawn these detours less often by 3-4 times, depending on the speed of the jerk?
public GameObject prefab;
void FixedUpdate()
{
if(Input.GetMouseButton(0))
{
SpawnPoint();
}
}
public void SpawnPoint()
{
Transform inst = Instantiate(prefab).transform;
inst.position = (Vector2)Camera.main.ScreenToWorldPoint(Input.mousePosition);
}
Here's what happens in the game itself 1 when moving slowly 2 with a quick jerk of movement enter image description here
You should check for user input in
Update()
instead ofFixedUpdate()
The reason you typically get user input in
Update
is because it runs once per frame, whereFixedUpdate
does not - it runs per physics tick, and more or less than one of those may occur each frame.So a general rule is to get user input in
Update
and handle the physics related stuff inFixedUpdate
.Then in your
SpawnPoint
you are instantiating an object andInstantiate()
is little bit expensive plusCamera.main
will try to find camera every physics frame by doingFindGameObjectsWithTag()
so you should also cacheCamera
into a variable instead.