diff options
Diffstat (limited to 'OpenSim/Region/Physics/Meshing/Meshmerizer.cs')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Meshmerizer.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs index 6fa91ab..9262a9e 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -705,6 +705,11 @@ namespace OpenSim.Region.Physics.Meshing | |||
705 | return CreateMesh(primName, primShape, size, lod, false); | 705 | return CreateMesh(primName, primShape, size, lod, false); |
706 | } | 706 | } |
707 | 707 | ||
708 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex, bool forOde) | ||
709 | { | ||
710 | return CreateMesh(primName, primShape, size, lod, false); | ||
711 | } | ||
712 | |||
708 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) | 713 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) |
709 | { | 714 | { |
710 | #if SPAM | 715 | #if SPAM |
@@ -746,5 +751,13 @@ namespace OpenSim.Region.Physics.Meshing | |||
746 | 751 | ||
747 | return mesh; | 752 | return mesh; |
748 | } | 753 | } |
754 | public IMesh GetMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex) | ||
755 | { | ||
756 | return null; | ||
757 | } | ||
758 | |||
759 | public void ReleaseMesh(IMesh imesh) { } | ||
760 | public void ExpireReleaseMeshs() { } | ||
761 | public void ExpireFileCache() { } | ||
749 | } | 762 | } |
750 | } | 763 | } |