From e86396ad1fbb492dd2164b7d26f3ed87e0ba0fa0 Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 28 Jul 2007 13:44:12 +0000 Subject: You should now see the correct Avatar for other users, including their clothes, although their still seems to be a few problems with the clothes, in that sometimes other avatar's default clothes are white. At last, removed the need for the avatar-texture.dat file. (Please never come back). --- OpenSim/Framework/General/Interfaces/IClientAPI.cs | 1 + OpenSim/Framework/General/NullClientAPI.cs | 1 + 2 files changed, 2 insertions(+) (limited to 'OpenSim/Framework/General') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 260da81..c1d91d5 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -172,6 +172,7 @@ namespace OpenSim.Framework.Interfaces void OutPacket(Packet newPack); void SendWearables(AvatarWearable[] wearables); + void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry); void SendStartPingCheck(byte seq); void SendKillObject(ulong regionHandle, uint avatarLocalID); void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId); diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 9815aca..45c1a14 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs @@ -104,6 +104,7 @@ namespace OpenSim.Framework public virtual void OutPacket(Packet newPack){} public virtual void SendWearables(AvatarWearable[] wearables){} + public virtual void SendAppearance(LLUUID agentID, byte[] visualParams, byte[] textureEntry) { } public virtual void SendStartPingCheck(byte seq){} public virtual void SendKillObject(ulong regionHandle, uint avatarLocalID){} public virtual void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId){} -- cgit v1.1