small contribution for discussion
MEGAUPLOAD - The leading online storage and file delivery service - adt to obj exporter to play w/ recast demo.
you will need vc# (w/ xna 3 installed) to compile/change adts you want to export (in program.cs). code is nasty but it works though
now my questions :
what optimal settings you've found for recastdemo ?
- cell size/heigt
- agent settings
- region
- polygonization
and i would appreciate if you explain why those ones fits better (besides simple shuffling them).
thanks
small bug: replace AddModel function in CModel.cs with following to fix
public void AddModel(CModel model)
{
if ( !CModelManager.models.ContainsKey(model.name) )
{
CModelManager.models.Add(model.name, model) ;
modelsGroup.Add(model);
}
else
{
CModel mm = CModelManager.models[model.name];
modelsGroup.Add(mm);
System.Console.WriteLine("Model {0} already exists in the list", model.name);
}
}