diff options
author | UbitUmarov | 2014-08-21 00:49:10 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-21 00:49:10 +0100 |
commit | 5bf145a3977a55c474106bbe2a6c107dd9457f0d (patch) | |
tree | b43c772cdb4c15de78e8262b366a26af3d2fefae /OpenSim/Framework/IClientAPI.cs | |
parent | revert droping udp packet resends after 6 retries, keep resending. (diff) | |
download | opensim-SC-5bf145a3977a55c474106bbe2a6c107dd9457f0d.zip opensim-SC-5bf145a3977a55c474106bbe2a6c107dd9457f0d.tar.gz opensim-SC-5bf145a3977a55c474106bbe2a6c107dd9457f0d.tar.bz2 opensim-SC-5bf145a3977a55c474106bbe2a6c107dd9457f0d.tar.xz |
add a direct sendpartfullUpdate to send a full object update to a part,
optionally overriding its parentID. check what it does to attachments
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 3b0430b..d73802e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1116,6 +1116,8 @@ namespace OpenSim.Framework | |||
1116 | /// <param name="localID"></param> | 1116 | /// <param name="localID"></param> |
1117 | void SendKillObject(List<uint> localID); | 1117 | void SendKillObject(List<uint> localID); |
1118 | 1118 | ||
1119 | void SendPartFullUpdate(ISceneEntity ent, uint? parentID); | ||
1120 | |||
1119 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); | 1121 | void SendAnimations(UUID[] animID, int[] seqs, UUID sourceAgentId, UUID[] objectIDs); |
1120 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); | 1122 | void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args); |
1121 | 1123 | ||