layer_background_get_visible


描述

This function can be used to get the visible state of the background element. You give 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 the function will return either true if the element is currently visible, or false if it is not. Note that this return value is not affected by whether the layer the element is on is visible or not.


语法:

layer_background_get_visible(background_element_id);


参数:

参数 描述
background_element_id The unique ID value of the background element to get the information from


返回:

Boolean(布尔值)


例如:

var lay_id = layer_get_id("Background_sky");
var back_id = layer_background_get_id(lay_id);
if layer_background_get_visible(back_id)
   {
   layer_background_visible(back_id, false);
   }

The above code will get the layer ID for the layer named "Background_sky" and then use that to get the ID of the background element on that layer. This ID is then used to check the element visibility and if it is visible, then this property is set to false.


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