From bb5b88d161b3af77ee2c5f467ef2685ea895c924 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Fri, 8 Feb 2008 23:48:27 +0000 Subject: * Fixed a situation in ODE where it didn't call the mesher on a cube when you tapered if you didn't have a cut or a hollow. --- OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 37b8fb9..0ee8eb5 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs @@ -1011,6 +1011,9 @@ namespace OpenSim.Region.Physics.OdePlugin if ((pbs.ProfileBegin != 0) || pbs.ProfileEnd != 0) return true; + if ((pbs.PathScaleX != 100) || (pbs.PathScaleY != 100)) + return true; + if (pbs.ProfileShape == ProfileShape.Circle && pbs.PathCurve == (byte)Extrusion.Straight) return true; -- cgit v1.1