tommyleug1991
Member
Hello everyone
I follow this tutorial to make Virtual Joystick.
but when i put two joysticks on room screen.
I find it can't multiple touch, any idea how to solve it??
Thank you very much
my step code:
I follow this tutorial to make Virtual Joystick.
but when i put two joysticks on room screen.
I find it can't multiple touch, any idea how to solve it??
Thank you very much
my step code:
GML:
var move = device_mouse_check_button(0, mb_left);
var fingerX = device_mouse_x(0);
var fingerY = device_mouse_y(0);
var dirToStable = point_distance(fingerX,fingerY,joystickStableX,joystickStableY);
var dirToFinger = point_direction(fingerX,fingerY,joystickStableX,joystickStableY) + 180;
Last edited: