Changes the function/script that fires on mouse movement.
Resets the callback if function
argument is omitted or is undefined
.
The function receives x, y arguments (window mouse coordinates) that come from
WM_SETCURSOR
and can take an opportunity to change the cursor.
Windows may serve mouse events an arbitrary number of times per second -
for example, if the player uses a gaming mouse with a 8000 Hz polling rate,
your function might be called up to 133 times per frame (at 60fps).
For this reason it's best to keep your callback logic minimal or even allow
the user to opt out by
switching to a lower-frequency callback mode.
For example, the following
creates a handful of "directional crosshair" cursors from a spr_cursor_dir
sprite
and then selects the appropriate one based on direction
between window center and mouse position:
dir_count = 360;
dir_cursors = [];
var _surf = surface_create(64, 64);
var _texf = gpu_get_texfilter();
gpu_set_tex_filter(true);
for (var i = 0; i < dir_count; i++) {
surface_set_target(_surf);
draw_clear_alpha(c_white, 0);
draw_sprite_ext(spr_cursor_dir, 0, 32, 32, 1, 1, i * 360 / dir_count, c_white, 1);
surface_reset_target();
dir_cursors[i] = native_cursor_create_from_surface(_surf, 32, 32);
}
surface_free(_surf);
gpu_set_tex_filter(_texf);
native_cursor_set_callback(function(_x, _y) {
var dir = point_direction(
window_get_width() div 2,
window_get_height() div 2,
_x, _y
);
var ind = round(dir / 360 * dir_count) % dir_count;
if (ind < 0) ind += dir_count;
native_cursor_set(dir_cursors[ind]);
});