window_view_mouse_get_y

Returns the y coordinate of the mouse in the window with respect to the given view.

Syntax:

window_view_mouse_get_y( id );


Argument Description
id The id of the view to compare the mouse position to.


Returns: Real


Description

This function will return the mouse y position relative to the view selected. The following image illustrates how this works:

NOTE: For regular mouse functions see the section on Mouse Input.


Example:

if mouse_check_button_pressed(mb_left)
   {
   var xx, yy;
   xx = window_view_mouse_get_x(0);
   yy = window_view_mouse_get_y(0);
   if xx > 0 && xx < 32 && yy > 0 && yy < 32
      {
      b_press[0] = true;
      }
   }

The above code will check for a mouse button being pressed, and if it is it then gets the mouse position relative to the view[0] and compares it to see if a variable should be set to true.


Back: Views
Next: window_views_mouse_get_x
© Copyright YoYo Games Ltd. 2018 All Rights Reserved