diff options
author | UbitUmarov | 2016-11-03 14:01:35 +0000 |
---|---|---|
committer | UbitUmarov | 2016-11-03 14:01:35 +0000 |
commit | 01a4a883e08f681c48fbb3d456a773f93985f694 (patch) | |
tree | 30a9aef2876644413e56e22ff50088904bab8e53 /OpenSim/Region/PhysicsModules | |
parent | Merge branch 'master' into httptests (diff) | |
parent | fix some coments, thanks Austin Tate (diff) | |
download | opensim-SC-01a4a883e08f681c48fbb3d456a773f93985f694.zip opensim-SC-01a4a883e08f681c48fbb3d456a773f93985f694.tar.gz opensim-SC-01a4a883e08f681c48fbb3d456a773f93985f694.tar.bz2 opensim-SC-01a4a883e08f681c48fbb3d456a773f93985f694.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Region/PhysicsModules')
-rw-r--r-- | OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs b/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs index ff10e7f..bcd1530 100644 --- a/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs +++ b/OpenSim/Region/PhysicsModules/ubOdeMeshing/Meshmerizer.cs | |||
@@ -443,6 +443,11 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing | |||
443 | 443 | ||
444 | if (physicsParms != null) | 444 | if (physicsParms != null) |
445 | usemesh = true; | 445 | usemesh = true; |
446 | else | ||
447 | { | ||
448 | m_log.WarnFormat("[MESH]: Data for PRIM shape type not found for prim {0}",primName); | ||
449 | return false; | ||
450 | } | ||
446 | } | 451 | } |
447 | 452 | ||
448 | if(!usemesh && (map.ContainsKey("physics_convex"))) | 453 | if(!usemesh && (map.ContainsKey("physics_convex"))) |
@@ -451,7 +456,7 @@ namespace OpenSim.Region.PhysicsModule.ubODEMeshing | |||
451 | 456 | ||
452 | if (physicsParms == null) | 457 | if (physicsParms == null) |
453 | { | 458 | { |
454 | m_log.WarnFormat("[MESH]: unknown mesh type for {0}",primName); | 459 | m_log.WarnFormat("[MESH]: unknown mesh type for prim {0}",primName); |
455 | return false; | 460 | return false; |
456 | } | 461 | } |
457 | 462 | ||