diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index e76952a..68df0e4 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -2353,6 +2353,14 @@ namespace OpenSim.Region.Environment.Scenes | |||
2353 | } | 2353 | } |
2354 | } | 2354 | } |
2355 | 2355 | ||
2356 | public void SetVehicleRotationParam(int param, Quaternion rotation) | ||
2357 | { | ||
2358 | if (PhysActor != null) | ||
2359 | { | ||
2360 | PhysActor.VehicleRotationParam(param, rotation); | ||
2361 | } | ||
2362 | } | ||
2363 | |||
2356 | public void SetGroup(UUID groupID, IClientAPI client) | 2364 | public void SetGroup(UUID groupID, IClientAPI client) |
2357 | { | 2365 | { |
2358 | _groupID = groupID; | 2366 | _groupID = groupID; |