Add setter for Acceleration on physics objects.
parent
5b28e29530
commit
f2855d3668
|
@ -841,6 +841,7 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||||
public override Vector3 Acceleration
|
public override Vector3 Acceleration
|
||||||
{
|
{
|
||||||
get { return _acceleration; }
|
get { return _acceleration; }
|
||||||
|
set { _acceleration = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetAcceleration(Vector3 accel)
|
public void SetAcceleration(Vector3 accel)
|
||||||
|
|
|
@ -673,6 +673,7 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||||
}
|
}
|
||||||
return _acceleration;
|
return _acceleration;
|
||||||
}
|
}
|
||||||
|
set { _acceleration = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue