From fc773649720c062a72d1b8a098eb54bda9a84ca9 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 16 May 2008 00:04:46 +0000 Subject: appearance now survives logout. Tommorrow will involve moving the MSSQL and MYSQL mappers back in under datastores and looking at doing gid bits for this --- OpenSim/Framework/AvatarAppearance.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index 42cd6f9..cf9ff58 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs @@ -293,6 +293,16 @@ namespace OpenSim.Framework return textu; } + public override String ToString() + { + String s = "[Wearables] =>"; + s += "Body Item: " + BodyItem.ToString() + ";"; + s += "Skin Item: " + SkinItem.ToString() + ";"; + s += "Shirt Item: " + ShirtItem.ToString() + ";"; + s += "Pants Item: " + PantsItem.ToString() + ";"; + return s; + } + protected AvatarAppearance(SerializationInfo info, StreamingContext context) { //System.Console.WriteLine("AvatarAppearance Deserialize BGN"); -- cgit v1.1