A lightweight programming environment for desktop and mobile devices
on.mouse_move = function(x,y, dx,dy, is_touch)
	if not Show_code then
		if car.mousemoved then
			call_protected(car.mousemoved, x,y, dx,dy, is_touch)
		end
		if car.mouse_move then
			call_protected(car.mouse_move, x,y, dx,dy, is_touch)
		end
	end
end