I have an ai class that uses a pathfinder class to find a path to the player. To do this, it needs to check whether or not there is a wall at specific locations or whether there are any walls within a certain distance of a point. I use b2World->RayCast() to figure all this out. But creating a path is slow and causes my game to stutter unless the pathfinder works in the background. I set this up fine, autorelease pool and everything. The one problem that keeps popping up is a bad access in b2Fixture::RayCast. The program makes it through b2World::RayCast, b2BroadPhase::RayCast, b2DynamicTree::RayCast, b2WorldRayCastWrapper::RayCastCallback and finally to b2Fixture::RayCast, which is where the error occurs. Is there any way to prevent this? What would cause a bad access here? Thanks in advance Ben
|
feedback
|