ccdEnabled property

bool get ccdEnabled

Continuous collision detection, prevents fast bodies from tunneling through thin colliders.

Implementation

bool get ccdEnabled => _ccdEnabled;
set ccdEnabled (bool value)

Implementation

set ccdEnabled(bool value) {
  _ccdEnabled = value;
  final handle = _handle;
  if (handle != null) _sim!.setBodyCcdEnabled(handle, value);
}