diff options
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index d0faf02..ed987b0 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -49,6 +49,12 @@ namespace OpenSim.Physics.Manager | |||
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | public abstract PhysicsVector Size | ||
53 | { | ||
54 | get; | ||
55 | set; | ||
56 | } | ||
57 | |||
52 | public abstract PhysicsVector Position | 58 | public abstract PhysicsVector Position |
53 | { | 59 | { |
54 | get; | 60 | get; |
@@ -103,6 +109,18 @@ namespace OpenSim.Physics.Manager | |||
103 | } | 109 | } |
104 | } | 110 | } |
105 | 111 | ||
112 | public override PhysicsVector Size | ||
113 | { | ||
114 | get | ||
115 | { | ||
116 | return PhysicsVector.Zero; | ||
117 | } | ||
118 | set | ||
119 | { | ||
120 | return; | ||
121 | } | ||
122 | } | ||
123 | |||
106 | public override PhysicsVector Velocity | 124 | public override PhysicsVector Velocity |
107 | { | 125 | { |
108 | get | 126 | get |