From 8a3157aa6a83b7b84811cd4675ba9fc8e6fbd32e Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 29 Oct 2008 18:38:10 +0000 Subject: * Check in (disabled) results of not persisting avatar textures but rather sending ImageNotFound to clients if avatar textures are missing * Whilst this does automatically get the client to rebake, on crossing a region border the 'local' assets are left behind * There may be a cunning solution (such as squirting the assets on region crossing, or having them fetched from the original region) but instead I'm going to opt for the easy solution of keeping them in the asset database, for now --- OpenSim/Framework/IClientAPI.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index c8a54a7..538a2e7 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -829,6 +829,12 @@ namespace OpenSim.Framework /// /// void SendImageNextPart(ushort partNumber, UUID imageUuid, byte[] imageData); + + /// + /// Tell the client that the requested texture cannot be found + /// + /// + void SendImageNotFound(UUID imageid); void SendShutdownConnectionNotice(); -- cgit v1.1