diff options
author | UbitUmarov | 2012-10-03 19:33:28 +0100 |
---|---|---|
committer | UbitUmarov | 2012-10-03 19:33:28 +0100 |
commit | 7137b234b4e99d8d19e83dfb5268674c72f46479 (patch) | |
tree | 7c9a899940be65e1fcda108af16207dcebf489ca /OpenSim/Region/Physics/Manager/IMesher.cs | |
parent | Attempt to fix Mantis #6311. Honor a destination folder if one is given (diff) | |
download | opensim-SC-7137b234b4e99d8d19e83dfb5268674c72f46479.zip opensim-SC-7137b234b4e99d8d19e83dfb5268674c72f46479.tar.gz opensim-SC-7137b234b4e99d8d19e83dfb5268674c72f46479.tar.bz2 opensim-SC-7137b234b4e99d8d19e83dfb5268674c72f46479.tar.xz |
introduce a ODEMeshWorker class, should be pure cosmetic changes for now
Diffstat (limited to 'OpenSim/Region/Physics/Manager/IMesher.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/IMesher.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/Manager/IMesher.cs b/OpenSim/Region/Physics/Manager/IMesher.cs index a8c99f7..06f3c8b 100644 --- a/OpenSim/Region/Physics/Manager/IMesher.cs +++ b/OpenSim/Region/Physics/Manager/IMesher.cs | |||
@@ -37,7 +37,8 @@ namespace OpenSim.Region.Physics.Manager | |||
37 | { | 37 | { |
38 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod); | 38 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod); |
39 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical); | 39 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical); |
40 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical,bool convex); | 40 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex); |
41 | IMesh GetMesh(String primName, PrimitiveBaseShape primShape, Vector3 size, float lod, bool isPhysical, bool convex); | ||
41 | void ReleaseMesh(IMesh mesh); | 42 | void ReleaseMesh(IMesh mesh); |
42 | void ExpireReleaseMeshs(); | 43 | void ExpireReleaseMeshs(); |
43 | } | 44 | } |