touching method
Returns true if the bounding volume of the given game entity touches/intersects the trigger region.
Implementation
@override
bool touching([GameEntity? entity]) {
entity?.getWorldPosition( boundingSphereEntity.center );
boundingSphereEntity.radius = entity?.boundingRadius ?? 0;
return _boundingSphere.intersectsBoundingSphere( boundingSphereEntity );
}