mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
812 B
812 B
Excludes
Any element can have a few boolean values set to exclude it from normal operations for movement, rendering, and updating. Simply set the appropriate value to a true value.
Note that any element using one of these excludes its children as well.
excludeMovement
Excludes movement caused by a parent being moved.excludeUpdate
Excludes an element from being updated (bypop.update()
).excludeDraw
Excludes being rendered (bypop.draw()
).
Note: excludeDraw
also excludes an element from accepting the following
events:
mousepressed
clicked
keypressed
textinput
The reason for this is that it wouldn't make sense for an invisible element to be capturing input. However, some events are passed through in case an element becomes invisible while processing input.