diff --git a/LibreMetaverse/AppearanceManager.cs b/LibreMetaverse/AppearanceManager.cs index bdc33476..8e90e7b7 100644 --- a/LibreMetaverse/AppearanceManager.cs +++ b/LibreMetaverse/AppearanceManager.cs @@ -686,7 +686,6 @@ namespace OpenMetaverse /// /// List of wearable inventory items to /// be added to the outfit - /// Should existing item on the same point or of the same type be replaced public void AddToOutfit(List wearableItems) { AddToOutfit(wearableItems, true); @@ -1346,10 +1345,7 @@ namespace OpenMetaverse /// Populates textures and visual params from a decoded asset /// /// Wearable to decode - /// - /// Populates textures and visual params from a decoded asset - /// - /// Wearable to decode + /// Texture data public static void DecodeWearableParams(WearableData wearable, ref TextureData[] textures) { var alphaMasks = new Dictionary(); diff --git a/LibreMetaverse/AssetManager.cs b/LibreMetaverse/AssetManager.cs index b69a26c9..b9b3c93a 100644 --- a/LibreMetaverse/AssetManager.cs +++ b/LibreMetaverse/AssetManager.cs @@ -537,11 +537,13 @@ namespace OpenMetaverse /// Request an asset download /// /// Asset UUID + /// task ID /// Asset type, must be correct for the transfer to succeed /// Whether to give this transfer an elevated priority /// Source location of the requested asset /// UUID of the transaction /// The callback to fire when the simulator responds with the asset data + /// Item ID public void RequestAsset(UUID assetID, UUID itemID, UUID taskID, AssetType type, bool priority, SourceType sourceType, UUID transactionID, AssetReceivedCallback callback) { AssetDownload transfer = new AssetDownload(); diff --git a/LibreMetaverse/AvatarManager.cs b/LibreMetaverse/AvatarManager.cs index d55334aa..161d4080 100644 --- a/LibreMetaverse/AvatarManager.cs +++ b/LibreMetaverse/AvatarManager.cs @@ -1441,6 +1441,9 @@ namespace OpenMetaverse /// The default agent texture /// The agents appearance layer textures /// The for the agent + /// Appearance Version + /// Current outfit folder version + /// Appearance Flags public AvatarAppearanceEventArgs(Simulator sim, UUID avatarID, bool isTrial, Primitive.TextureEntryFace defaultTexture, Primitive.TextureEntryFace[] faceTextures, List visualParams, byte appearanceVersion, int COFVersion, AppearanceFlags appearanceFlags) diff --git a/LibreMetaverse/Messages/LindenMessages.cs b/LibreMetaverse/Messages/LindenMessages.cs index 821ea789..d60c2300 100644 --- a/LibreMetaverse/Messages/LindenMessages.cs +++ b/LibreMetaverse/Messages/LindenMessages.cs @@ -4451,7 +4451,7 @@ namespace OpenMetaverse.Messages.Linden public class GetObjectCostRequest : IMessage { - /// Object IDs for which to request cost information + /// Object IDs for which to request cost information public UUID[] ObjectIDs; /// diff --git a/LibreMetaverseTypes/Quaternion.cs b/LibreMetaverseTypes/Quaternion.cs index 980f8e19..86463eb1 100644 --- a/LibreMetaverseTypes/Quaternion.cs +++ b/LibreMetaverseTypes/Quaternion.cs @@ -36,20 +36,20 @@ namespace OpenMetaverse [ProtoContract] public struct Quaternion : IEquatable { - [ProtoMember(1)] /// X value + [ProtoMember(1)] public float X; - [ProtoMember(2)] /// Y value + [ProtoMember(2)] public float Y; - [ProtoMember(3)] /// Z value + [ProtoMember(3)] public float Z; - [ProtoMember(4)] /// W value + [ProtoMember(4)] public float W; #region Constructors diff --git a/LibreMetaverseTypes/Vector3.cs b/LibreMetaverseTypes/Vector3.cs index a797edf0..7b98aebb 100644 --- a/LibreMetaverseTypes/Vector3.cs +++ b/LibreMetaverseTypes/Vector3.cs @@ -39,16 +39,16 @@ namespace OpenMetaverse [ProtoContract] public struct Vector3 : IComparable, IEquatable { - [ProtoMember(1)] /// X value + [ProtoMember(1)] public float X; - [ProtoMember(2)] /// Y value + [ProtoMember(2)] public float Y; - [ProtoMember(3)] /// Z value + [ProtoMember(3)] public float Z; #region Constructors diff --git a/Programs/examples/TestClient/Commands/Agent/GenericMessageCommand.cs b/Programs/examples/TestClient/Commands/Agent/GenericMessageCommand.cs index 035ea348..1af8c12c 100644 --- a/Programs/examples/TestClient/Commands/Agent/GenericMessageCommand.cs +++ b/Programs/examples/TestClient/Commands/Agent/GenericMessageCommand.cs @@ -20,8 +20,6 @@ namespace OpenMetaverse.TestClient public override string Execute(string[] args, UUID fromAgentID) { - UUID target; - if (args.Length < 1) return "Usage: sendgeneric method_name [value1 value2 ...]";