aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie2013-02-12 01:02:16 +0100
committerMelanie2013-02-12 01:02:16 +0100
commit04235e58e87ae42617111cad2884e42785914d4e (patch)
tree9cccb05ea7355be02d2e4d9bef5b9b1da3225afa /OpenSim/Framework
parentMake keyframes use the sim's frame timer (diff)
downloadopensim-SC_OLD-04235e58e87ae42617111cad2884e42785914d4e.zip
opensim-SC_OLD-04235e58e87ae42617111cad2884e42785914d4e.tar.gz
opensim-SC_OLD-04235e58e87ae42617111cad2884e42785914d4e.tar.bz2
opensim-SC_OLD-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/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 0465042..96d2735 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -698,7 +698,8 @@ namespace OpenSim.Framework
698 ExtraData = 1 << 20, 698 ExtraData = 1 << 20,
699 Sound = 1 << 21, 699 Sound = 1 << 21,
700 Joint = 1 << 22, 700 Joint = 1 << 22,
701 FullUpdate = UInt32.MaxValue 701 Immediate = 1 << 23,
702 FullUpdate = UInt32.MaxValue & (uint)~((uint)1<<23)
702 } 703 }
703 704
704 public static class PrimUpdateFlagsExtensions 705 public static class PrimUpdateFlagsExtensions