filterData property

Filter filterData

Get the contact filtering data.

Implementation

Filter get filterData => _filter;
void filterData=(Filter filter)

Set the contact filtering data. This is an expensive operation and should not be called frequently. This will not update contacts until the next time step when either parent body is awake. This automatically calls refilter.

Implementation

set filterData(Filter filter) {
  _filter.set(filter);
  refilter();
}