The function changes its sprite’s layer value by the specified amount. This function is rather unusual compared to other functions. It moves the layer value back, and not forward. To move it forward instead, a negative number can be used.
changelayer()
Function Definition: changelayer(postition = "forward", layer_number = 1)
- Python Library: Looks
- Library Import: sprite = Sprite("Sprite-Name")
- Mode: Stage Mode
Parameters
Name | Type | Description | Expected Values | Default Value |
---|---|---|---|---|
postition | string | The direction in which layer needs to change. | "forward" or "backward" | "forward" |
layer_number | int | The number by which the layer shift will happen. | Integer | 1 |
Description
Example
There are no examples documented for this article.