Not yet tested on Linux or OSX! Notable changes: * AppearanceManager works much better though baking is only a placeholder * Fixes to openjpeg/TGA code * VisualParams class interface changed * Some TestClient fixes * Rest of TGA files added to Resources (they will eventually be used for baking)This is a big merge of my work from the Pleiades internal repo. Notable changes: * AppearanceManager works much better though baking is only a placeholder * Fixes to openjpeg/TGA code * VisualParams class interface changed * Some TestClient fixes * Rest of TGA files added to Resources (they will eventually be used for baking) git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1284 52acb1d6-8a22-11de-b505-999d5b087335
24 lines
592 B
C#
24 lines
592 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
using libsecondlife.Packets;
|
|
|
|
namespace libsecondlife.TestClient
|
|
{
|
|
public class AppearanceCommand : Command
|
|
{
|
|
public AppearanceCommand(TestClient testClient)
|
|
{
|
|
Name = "appearance";
|
|
Description = "Set your current appearance to your last saved appearance";
|
|
}
|
|
|
|
public override string Execute(string[] args, LLUUID fromAgentID)
|
|
{
|
|
Client.NewAppearanceManager.SetPreviousAppearance();
|
|
return "Done.";
|
|
}
|
|
}
|
|
}
|