diff options
author | Melanie | 2013-02-12 01:02:16 +0100 |
---|---|---|
committer | Melanie | 2013-02-12 01:02:16 +0100 |
commit | 04235e58e87ae42617111cad2884e42785914d4e (patch) | |
tree | 9cccb05ea7355be02d2e4d9bef5b9b1da3225afa /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |
parent | Make keyframes use the sim's frame timer (diff) | |
download | opensim-SC-04235e58e87ae42617111cad2884e42785914d4e.zip opensim-SC-04235e58e87ae42617111cad2884e42785914d4e.tar.gz opensim-SC-04235e58e87ae42617111cad2884e42785914d4e.tar.bz2 opensim-SC-04235e58e87ae42617111cad2884e42785914d4e.tar.xz |
Push updates from keyframe directly to the front of the output queue rather
than through the update system.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index ed1bbd8..910f42e 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -2638,10 +2638,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
2638 | /// </summary> | 2638 | /// </summary> |
2639 | public void SendGroupRootTerseUpdate() | 2639 | public void SendGroupRootTerseUpdate() |
2640 | { | 2640 | { |
2641 | SendGroupRootTerseUpdate(0); | ||
2642 | } | ||
2643 | |||
2644 | public void SendGroupRootTerseUpdate(PrimUpdateFlags flags) | ||
2645 | { | ||
2641 | if (IsDeleted) | 2646 | if (IsDeleted) |
2642 | return; | 2647 | return; |
2643 | 2648 | ||
2644 | RootPart.SendTerseUpdateToAllClients(); | 2649 | RootPart.SendTerseUpdateToAllClients(flags); |
2645 | } | 2650 | } |
2646 | 2651 | ||
2647 | public void QueueForUpdateCheck() | 2652 | public void QueueForUpdateCheck() |