mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-03-22 09:44:16 -05:00
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
///mouse_dir_update()
|
|
function mouse_direction_update() {
|
|
|
|
// MOUSE SPEED & DIRECTION
|
|
global.mouse_dir_x = mouse_x-global.mouse_x_prev;
|
|
global.mouse_dir_y = mouse_y-global.mouse_y_prev;
|
|
|
|
|
|
}
|