* Big cleanup of group functions, moving things from MainAvatar to GroupManager, renaming BeginGet* to Request*, and adding new functions and callbacks * Added an Autopilot function that takes doubles as input (very accurate autopilot) * Added Settings.CONTINUOUS_AGENT_UPDATES which defaults to true * Added quotes to the post-build event in VS2005 * Added empty AssetSound and AssetClothing, feel free to fill them in :-) * Client.Self.*Name are read only properties now git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1357 52acb1d6-8a22-11de-b505-999d5b087335
24 lines
582 B
C#
24 lines
582 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.Appearance.SetPreviousAppearance();
|
|
return "Done.";
|
|
}
|
|
}
|
|
}
|