layer_force_draw_depth


描述

This function forces all layers to be drawn at the specified z depth. This does not change the order the layers are rendered in and they’ll still be drawn in depth order, it simply changes what z value is used. In general you do not need to worry about this, but if you have layers that have a depth outside of the legal range (-16000 to 16000) then they won't be rendered, so you can force the Z depth to a reasonable value - 0 for example - and they will all be rendered fine. Note that this is generally only for use with legacy projects from previous version of GameMaker where you could have draw depths higher or lower than the permitted layer range.


语法:

layer_force_draw_depth(force, depth)


参数:

参数 描述
force Whether to enable (set to true or disable (set to false) Z depth forcing
depth The new Z depth


返回:

N/A(无返回值)


例如:

if !layer_is_draw_depth_forced()
   {
   layer_force_draw_depth(true, 0);
   }

The above code checks to see if the layer Z depth is forced or not and if it is not, it sets the Z depth to 0 and enables it.


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