layer_background_visible


描述

Using this function you can toggle a background elements visibility. You supply the background element ID (which you get when you create a background element using layer_background_create() or when you use the function layer_background_get_id()), and then set the visible argument to true or false. When set to true the element will be displayed, and when set to false, the element will not be displayed. Note that this is dependent on the layer visibility, and even if the background element is flagged as visible, it will not be drawn if the layer it is on is flagged as not visible.


语法:

layer_background_visible(background_element_id, visible)


参数:

参数 描述
background_element_id The unique ID value of the background element to change
visible The visibility toggle, which can be true or false


返回:

N/A(无返回值)


例如:

if mouse_check_button_pressed(mb_left)
   {
   var back = layer_background_get_id(layer);
   if layer_background_get_visible(back)
      {
      layer_background_visible(back, false);
      }
   else
      {
      layer_background_visible(back, true);
      }
   }

The above code checks for a mouse button press and if one is detected it will toggle the background visibility of the background element assigned to the layer the instance running the code is on.


上一页: Background Layer Functions
next: layer_background_sprite
© Copyright YoYo Games Ltd. 2018 All Rights Reserved