senoutouya / recastnavigation

Automatically exported from code.google.com/p/recastnavigation
zlib License
0 stars 0 forks source link

Dynamic Obstacle API #160

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
API for adding dynamic obstacles. Basically the use case is, where the user has 
a bunch of crates / barrels / cars. Essentially any dynamic obstacles that move 
on a per frame basis.

class dtCrowd
{
       int addObstacle (const float* pos, float radius);
       void updateObstacle (int idx, const float* pos, float radius);
       void removeObstacle (const int idx);
};

Original issue reported on code.google.com by joachim....@gmail.com on 3 Feb 2011 at 3:04

GoogleCodeExporter commented 9 years ago

Original comment by memono...@gmail.com on 16 Sep 2013 at 6:55