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 1f08b03..e92ae50 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -908,6 +908,11 @@ namespace OpenSim.Region.Physics.Meshing | |||
908 | return CreateMesh(primName, primShape, size, lod, false, true); | 908 | return CreateMesh(primName, primShape, size, lod, false, true); |
909 | } | 909 | } |
910 | 910 | ||
911 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool shouldCache, bool convex, bool forOde) | ||
912 | { | ||
913 | return CreateMesh(primName, primShape, size, lod, false); | ||
914 | } | ||
915 | |||
911 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) | 916 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) |
912 | { | 917 | { |
913 | return CreateMesh(primName, primShape, size, lod, isPhysical, true); | 918 | return CreateMesh(primName, primShape, size, lod, isPhysical, true); |
@@ -960,5 +965,13 @@ namespace OpenSim.Region.Physics.Meshing | |||
960 | 965 | ||
961 | return mesh; | 966 | return mesh; |
962 | } | 967 | } |
968 | public IMesh GetMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex) | ||
969 | { | ||
970 | return null; | ||
971 | } | ||
972 | |||
973 | public void ReleaseMesh(IMesh imesh) { } | ||
974 | public void ExpireReleaseMeshs() { } | ||
975 | public void ExpireFileCache() { } | ||
963 | } | 976 | } |
964 | } | 977 | } |