Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-01-04 11:57:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-04 11:57:33 +0400
commitab913fe15de957faf38aac11635d68e83df457f4 (patch)
tree5a96cf9a84b4bbfd90ec8f28263c91f0e5ca40e9 /source/blender/editors/mesh/mesh_navmesh.c
parent6fabbcb4dde782448df2079d6dba625720d9b487 (diff)
add length average option to 'Follow Active Quads' unwrap, gives nicer results.
Diffstat (limited to 'source/blender/editors/mesh/mesh_navmesh.c')
-rw-r--r--source/blender/editors/mesh/mesh_navmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_navmesh.c b/source/blender/editors/mesh/mesh_navmesh.c
index a7f77d0d483..41d4d4aafec 100644
--- a/source/blender/editors/mesh/mesh_navmesh.c
+++ b/source/blender/editors/mesh/mesh_navmesh.c
@@ -188,7 +188,7 @@ static bool buildNavMesh(const RecastData *recastParams, int nverts, float *vert
/* zero dimensions cause zero alloc later on [#33758] */
if (width <= 0 || height <= 0) {
- BKE_report(reports, RPT_ERROR, "Object has no volume");
+ BKE_report(reports, RPT_ERROR, "Object has a width or height of zero");
return false;
}