diff options
author | Melanie | 2009-09-30 21:23:00 +0100 |
---|---|---|
committer | Melanie | 2009-09-30 21:33:20 +0100 |
commit | 400abed271b7d59b8038326fccfe76c28d7d1051 (patch) | |
tree | 71f2fddd7ec0ccc700dfa635e7d2ddee617750c6 /OpenSim/Region | |
parent | Remove predecode-j2k and it's assoaciated logic (diff) | |
download | opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.zip opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.gz opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.bz2 opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.xz |
Add RebakeAvatarTexturesPacket to the client view
Diffstat (limited to 'OpenSim/Region')
4 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index f6ae639..dae525d 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -11023,5 +11023,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11023 | } | 11023 | } |
11024 | 11024 | ||
11025 | #endregion | 11025 | #endregion |
11026 | |||
11027 | public void SendRebakeAvatarTextures(UUID textureID) | ||
11028 | { | ||
11029 | RebakeAvatarTexturesPacket pack = | ||
11030 | (RebakeAvatarTexturesPacket)PacketPool.Instance.GetPacket(PacketType.RebakeAvatarTextures); | ||
11031 | |||
11032 | pack.TextureData = new RebakeAvatarTexturesPacket.TextureDataBlock(); | ||
11033 | pack.TextureData.TextureID = textureID; | ||
11034 | OutPacket(pack, ThrottleOutPacketType.Task); | ||
11035 | } | ||
11026 | } | 11036 | } |
11027 | } | 11037 | } |
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index e9c35e9..31222df 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -1102,5 +1102,9 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1102 | { | 1102 | { |
1103 | } | 1103 | } |
1104 | #endregion | 1104 | #endregion |
1105 | |||
1106 | public void SendRebakeAvatarTextures(UUID textureID) | ||
1107 | { | ||
1108 | } | ||
1105 | } | 1109 | } |
1106 | } | 1110 | } |
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 4a2d7b5..2316267 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -1609,5 +1609,9 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1609 | } | 1609 | } |
1610 | 1610 | ||
1611 | #endregion | 1611 | #endregion |
1612 | |||
1613 | public void SendRebakeAvatarTextures(UUID textureID) | ||
1614 | { | ||
1615 | } | ||
1612 | } | 1616 | } |
1613 | } | 1617 | } |
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index f0bdf3b..ac8b98c 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -1101,5 +1101,9 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
1101 | { | 1101 | { |
1102 | } | 1102 | } |
1103 | #endregion | 1103 | #endregion |
1104 | |||
1105 | public void SendRebakeAvatarTextures(UUID textureID) | ||
1106 | { | ||
1107 | } | ||
1104 | } | 1108 | } |
1105 | } | 1109 | } |