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 2c10568..91339d2 100644 --- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs | |||
@@ -900,6 +900,11 @@ namespace OpenSim.Region.Physics.Meshing | |||
900 | return CreateMesh(primName, primShape, size, lod, false, true); | 900 | return CreateMesh(primName, primShape, size, lod, false, true); |
901 | } | 901 | } |
902 | 902 | ||
903 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool shouldCache, bool convex, bool forOde) | ||
904 | { | ||
905 | return CreateMesh(primName, primShape, size, lod, false); | ||
906 | } | ||
907 | |||
903 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) | 908 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical) |
904 | { | 909 | { |
905 | return CreateMesh(primName, primShape, size, lod, isPhysical, true); | 910 | return CreateMesh(primName, primShape, size, lod, isPhysical, true); |
@@ -952,5 +957,13 @@ namespace OpenSim.Region.Physics.Meshing | |||
952 | 957 | ||
953 | return mesh; | 958 | return mesh; |
954 | } | 959 | } |
960 | public IMesh GetMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex) | ||
961 | { | ||
962 | return null; | ||
963 | } | ||
964 | |||
965 | public void ReleaseMesh(IMesh imesh) { } | ||
966 | public void ExpireReleaseMeshs() { } | ||
967 | public void ExpireFileCache() { } | ||
955 | } | 968 | } |
956 | } | 969 | } |