I performed Space.ConvexCast(...) and have a RayCastResult. How do I get the Entity impacted? The 'HitObject' merely returns a BroadPhaseEntry, which appears to have no Entity property.
EDIT: Oh, and thanks for the quick and helpful answers to my previous questions
Try to cast it to an EntityCollidable; it has an Entity property. EntityCollidable is a BroadPhaseEntry that acts as the collision proxy of an entity in the broad phase (entity.CollisionInformation).
Oh, and thanks for the quick and helpful answers to my previous questions