aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs
diff options
context:
space:
mode:
authordan miller2007-10-07 14:40:02 +0000
committerdan miller2007-10-07 14:40:02 +0000
commit2d5f5e2b32c5b8cc5bf6492964e06724b8935fd1 (patch)
treeb76a0d37987e75822ea0c3b3cff914a495548054 /OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs
parentremoved the OpenSim.Region.ScriptEngine.DotNetEngine reference from OpenSim.... (diff)
downloadopensim-SC_OLD-2d5f5e2b32c5b8cc5bf6492964e06724b8935fd1.zip
opensim-SC_OLD-2d5f5e2b32c5b8cc5bf6492964e06724b8935fd1.tar.gz
opensim-SC_OLD-2d5f5e2b32c5b8cc5bf6492964e06724b8935fd1.tar.bz2
opensim-SC_OLD-2d5f5e2b32c5b8cc5bf6492964e06724b8935fd1.tar.xz
applied Darok"s BulletXPlugin changes 003.patch
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs
index 15645b1..87b6d34 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs
@@ -104,6 +104,19 @@ namespace OpenSim.Region.Physics.Manager
104 104
105 pluginAssembly = null; 105 pluginAssembly = null;
106 } 106 }
107 //---
108 public static void PhysicsPluginMessage(string message, bool isWarning)
109 {
110 if (isWarning)
111 {
112 MainLog.Instance.Warn("PHYSICS", message);
113 }
114 else
115 {
116 MainLog.Instance.Verbose("PHYSICS", message);
117 }
118 }
119 //---
107 } 120 }
108 121
109 public interface IPhysicsPlugin 122 public interface IPhysicsPlugin