The fixed-step 60fps physics loop and the variable-step 60fps game loop are not synchronized. Usually they step together but rarely the game loop can step ahead for one frame.
Technically the correct way to handle this is to use the physics WORLD_STEP event instead of scene update()
. But you could also avoid it by raising the physics fps, perhaps to 120.