mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Implements llSetForce() and llGetForce(). These are experimental and the units may not match the Linden implementation.
This commit is contained in:
@@ -173,7 +173,7 @@ namespace OpenSim.Region.Physics.Manager
|
||||
|
||||
public abstract PhysicsVector Position { get; set; }
|
||||
public abstract float Mass { get; }
|
||||
public abstract PhysicsVector Force { get; }
|
||||
public abstract PhysicsVector Force { get; set; }
|
||||
public abstract PhysicsVector GeometricCenter { get; }
|
||||
public abstract PhysicsVector CenterOfMass { get; }
|
||||
public abstract PhysicsVector Velocity { get; set; }
|
||||
@@ -277,6 +277,7 @@ namespace OpenSim.Region.Physics.Manager
|
||||
public override PhysicsVector Force
|
||||
{
|
||||
get { return PhysicsVector.Zero; }
|
||||
set { return; }
|
||||
}
|
||||
|
||||
public override PhysicsVector CenterOfMass
|
||||
|
||||
Reference in New Issue
Block a user