aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorAdam Frisby2009-04-04 23:44:37 +0000
committerAdam Frisby2009-04-04 23:44:37 +0000
commit2e1646d368dc1318c9ed35be6682a875b45c0acc (patch)
treef444089dd0ce429a872a727e5d7fc6da7fa24799 /OpenSim
parentImplements on IObjectPhysics: (diff)
downloadopensim-SC_OLD-2e1646d368dc1318c9ed35be6682a875b45c0acc.zip
opensim-SC_OLD-2e1646d368dc1318c9ed35be6682a875b45c0acc.tar.gz
opensim-SC_OLD-2e1646d368dc1318c9ed35be6682a875b45c0acc.tar.bz2
opensim-SC_OLD-2e1646d368dc1318c9ed35be6682a875b45c0acc.tar.xz
* Removes IsPhysical, IsPhantom from IObject, since this is now represented in IObject.Physics.Enabled / IObject.Physics.Phantom instead.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs1
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs12
2 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
index 36d016e..3636544 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
@@ -141,7 +141,6 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
141 /// </summary> 141 /// </summary>
142 String Text { get; set; } 142 String Text { get; set; }
143 143
144 bool IsPhantom { get; set; } // SetStatus(PHANTOM)
145 bool IsRotationLockedX { get; set; } // SetStatus(!ROTATE_X) 144 bool IsRotationLockedX { get; set; } // SetStatus(!ROTATE_X)
146 bool IsRotationLockedY { get; set; } // SetStatus(!ROTATE_Y) 145 bool IsRotationLockedY { get; set; } // SetStatus(!ROTATE_Y)
147 bool IsRotationLockedZ { get; set; } // SetStatus(!ROTATE_Z) 146 bool IsRotationLockedZ { get; set; } // SetStatus(!ROTATE_Z)
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
index e62f795..48cae2f 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/SOPObject.cs
@@ -184,18 +184,6 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
184 set { throw new System.NotImplementedException(); } 184 set { throw new System.NotImplementedException(); }
185 } 185 }
186 186
187 public bool IsPhysical
188 {
189 get { throw new System.NotImplementedException(); }
190 set { throw new System.NotImplementedException(); }
191 }
192
193 public bool IsPhantom
194 {
195 get { throw new System.NotImplementedException(); }
196 set { throw new System.NotImplementedException(); }
197 }
198
199 public bool IsRotationLockedX 187 public bool IsRotationLockedX
200 { 188 {
201 get { throw new System.NotImplementedException(); } 189 get { throw new System.NotImplementedException(); }