Pop.Box/docs/Excludes.md
2016-04-16 23:57:21 -07:00

613 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 (by pop.update()).
  • excludeDraw Excludes being rendered (by pop.draw()).

Note: excludeDraw also excludes an element from accepting events (it wouldn't make sense to have an invisible element capturing text input).