RayOptions constructor

RayOptions({
  1. Vector3? from,
  2. Vector3? to,
  3. RaycastCallback? callback,
  4. RayMode? mode,
  5. bool? checkCollisionResponse,
  6. int? collisionFilterGroup,
  7. int? collisionFilterMask,
  8. RaycastResult? result,
  9. bool? skipBackfaces,
})

Implementation

RayOptions({
  this.from,
  this.to,
  this.callback,
  this.mode,
  this.checkCollisionResponse,
  this.collisionFilterGroup,
  this.collisionFilterMask,
  this.result,
  this.skipBackfaces
});