diff options
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index f1d0f84..bfe1d0b 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -58,6 +58,8 @@ namespace OpenSim.Region.Physics.Manager | |||
58 | 58 | ||
59 | public abstract Quaternion Orientation { get; set; } | 59 | public abstract Quaternion Orientation { get; set; } |
60 | 60 | ||
61 | public abstract bool IsPhysical {get; set;} | ||
62 | |||
61 | public abstract bool Flying { get; set; } | 63 | public abstract bool Flying { get; set; } |
62 | 64 | ||
63 | public abstract bool IsColliding { get; set; } | 65 | public abstract bool IsColliding { get; set; } |
@@ -100,6 +102,12 @@ namespace OpenSim.Region.Physics.Manager | |||
100 | get { return PhysicsVector.Zero; } | 102 | get { return PhysicsVector.Zero; } |
101 | } | 103 | } |
102 | 104 | ||
105 | public override bool IsPhysical | ||
106 | { | ||
107 | get { return false; } | ||
108 | set { return; } | ||
109 | } | ||
110 | |||
103 | public override bool Flying | 111 | public override bool Flying |
104 | { | 112 | { |
105 | get { return false; } | 113 | get { return false; } |