diff options
author | Melanie | 2011-10-25 01:51:24 +0100 |
---|---|---|
committer | Melanie | 2011-10-25 01:51:24 +0100 |
commit | 2895789bd0dbbfcd01903ddcc3c8c961ef612fbc (patch) | |
tree | f8170f3533497ae90e9de1b6d542cac31a22fea8 /OpenSim/Framework | |
parent | Merge commit '77c65951e06c1d309f2bc8f6d2451b2b9a82c9df' into bigmerge (diff) | |
parent | refactor: rename IClientAPI.SendPrimUpdate() to SendEntityUpdate() since it s... (diff) | |
download | opensim-SC-2895789bd0dbbfcd01903ddcc3c8c961ef612fbc.zip opensim-SC-2895789bd0dbbfcd01903ddcc3c8c961ef612fbc.tar.gz opensim-SC-2895789bd0dbbfcd01903ddcc3c8c961ef612fbc.tar.bz2 opensim-SC-2895789bd0dbbfcd01903ddcc3c8c961ef612fbc.tar.xz |
Merge commit 'aa19ccf65c9cd235e0ba941e9832c5240df4412c' into bigmerge
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index f02543d..0557fb6 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1101,7 +1101,14 @@ namespace OpenSim.Framework | |||
1101 | void SetChildAgentThrottle(byte[] throttle); | 1101 | void SetChildAgentThrottle(byte[] throttle); |
1102 | 1102 | ||
1103 | void SendAvatarDataImmediate(ISceneEntity avatar); | 1103 | void SendAvatarDataImmediate(ISceneEntity avatar); |
1104 | void SendPrimUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags); | 1104 | |
1105 | /// <summary> | ||
1106 | /// Send a positional, velocity, etc. update to the viewer for a given entity. | ||
1107 | /// </summary> | ||
1108 | /// <param name="entity"></param> | ||
1109 | /// <param name="updateFlags"></param> | ||
1110 | void SendEntityUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags); | ||
1111 | |||
1105 | void ReprioritizeUpdates(); | 1112 | void ReprioritizeUpdates(); |
1106 | void FlushPrimUpdates(); | 1113 | void FlushPrimUpdates(); |
1107 | 1114 | ||