diff options
author | Justin Clark-Casey (justincc) | 2011-07-30 03:11:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-07-30 03:11:36 +0100 |
commit | d917010433dda944dd1f6a7afcb827937804e805 (patch) | |
tree | f2d81aed038365f1e31014520ea8c65d5dfef4b8 /OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |
parent | refactor: extract method that generates a physics mesh from prim shape data (diff) | |
download | opensim-SC_OLD-d917010433dda944dd1f6a7afcb827937804e805.zip opensim-SC_OLD-d917010433dda944dd1f6a7afcb827937804e805.tar.gz opensim-SC_OLD-d917010433dda944dd1f6a7afcb827937804e805.tar.bz2 opensim-SC_OLD-d917010433dda944dd1f6a7afcb827937804e805.tar.xz |
minor: Add method doc to collision subscription methods. Change method case to reflect OpenSim standards.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODEPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index b3045bd..34c0deb 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | |||
@@ -2986,12 +2986,12 @@ Console.WriteLine("changeshape not need meshing"); | |||
2986 | public override void SubscribeEvents(int ms) | 2986 | public override void SubscribeEvents(int ms) |
2987 | { | 2987 | { |
2988 | m_eventsubscription = ms; | 2988 | m_eventsubscription = ms; |
2989 | _parent_scene.addCollisionEventReporting(this); | 2989 | _parent_scene.AddCollisionEventReporting(this); |
2990 | } | 2990 | } |
2991 | 2991 | ||
2992 | public override void UnSubscribeEvents() | 2992 | public override void UnSubscribeEvents() |
2993 | { | 2993 | { |
2994 | _parent_scene.remCollisionEventReporting(this); | 2994 | _parent_scene.RemoveCollisionEventReporting(this); |
2995 | m_eventsubscription = 0; | 2995 | m_eventsubscription = 0; |
2996 | } | 2996 | } |
2997 | 2997 | ||