1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-11-21 13:45:37 +01:00

Default tweaks

This commit is contained in:
Nick Blakely 2021-01-09 16:49:39 -08:00
parent 23d3136e3f
commit d2cdbcf440
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ int main(int argc, char** argv)
{ {
try try
{ {
copy_file(outputPath, outputPath2); copy_file(outputPath, outputPath2, copy_options::overwrite_existing);
} }
catch (const filesystem_error& ex) catch (const filesystem_error& ex)
{ {

View File

@ -47,7 +47,7 @@ private:
float m_agentHeight = 2.0f; float m_agentHeight = 2.0f;
float m_agentRadius = 0.6f; float m_agentRadius = 0.6f;
float m_agentMaxClimb = 0.9f; float m_agentMaxClimb = 0.9f;
float m_agentMaxSlope = 60.0f; // Sample: 45.0f float m_agentMaxSlope = 50.0f; // Sample: 45.0f
float m_regionMinSize = 8; float m_regionMinSize = 8;
float m_regionMergeSize = 20; float m_regionMergeSize = 20;
float m_edgeMaxLen = 12.0f; float m_edgeMaxLen = 12.0f;