当前位置: 首页>>代码示例>>C#>>正文


C# TestClient.TestClient类代码示例

本文整理汇总了C#中OpenMetaverse.TestClient.TestClient的典型用法代码示例。如果您正苦于以下问题:C# TestClient类的具体用法?C# TestClient怎么用?C# TestClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


TestClient类属于OpenMetaverse.TestClient命名空间,在下文中一共展示了TestClient类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InviteToGroupCommand

 public InviteToGroupCommand(TestClient testClient)
 {
     testC = testClient;
     Name = "invitetogroup";
     Description = "invites and avatar to a group the bot is in. Usage: invitetogroup AvatarName|AvatarUUID GroupName|UUIDGroupId";
     Category = CommandCategory.Groups;
 }
开发者ID:zadark,项目名称:par,代码行数:7,代码来源:InviteToGroupCommand.cs

示例2: DumpOutfitCommand

        public DumpOutfitCommand(TestClient testClient)
        {
            Name = "dumpoutfit";
            Description = "Dumps all of the textures from an avatars outfit to the hard drive. Usage: dumpoutfit [avatar-uuid]";
            Category = CommandCategory.Inventory;

        }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:DumpOutfitCommand.cs

示例3: WearCommand

 public WearCommand(TestClient testClient)
 {
     Client = testClient;
     Name = "wear";
     Description = "Wear an outfit folder from inventory. Usage: wear [outfit name] [nobake]";
     Category = CommandCategory.Appearance;
 }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:WearCommand.cs

示例4: FindTextureCommand

 public FindTextureCommand(TestClient testClient)
 {
     Name = "findtexture";
     Description = "Checks if a specified texture is currently visible on a specified face. " +
         "Usage: findtexture [face-index] [texture-uuid]";
     Category = CommandCategory.Objects;
 }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:FindTextureCommand.cs

示例5: PrimRegexCommand

 public PrimRegexCommand(TestClient testClient)
 {
     Name = "primregex";
     Description = "Find prim by text predicat. " +
         "Usage: primregex [text predicat] (eg findprim .away.)";
     Category = CommandCategory.Objects;
 }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:PrimRegexCommand.cs

示例6: ImGroupCommand

        public ImGroupCommand(TestClient testClient)
        {

            Name = "imgroup";
            Description = "Send an instant message to a group. Usage: imgroup [group_uuid] [message]";
            Category = CommandCategory.Communication;
        }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:IMGroupCommand.cs

示例7: AttachmentsCommand

 public AttachmentsCommand(TestClient testClient)
 {
     Client = testClient;
     Name = "attachments";
     Description = "Prints a list of the currently known agent attachments";
     Category = CommandCategory.Appearance;
 }
开发者ID:RavenB,项目名称:gridsearch,代码行数:7,代码来源:AttachmentsCommand.cs

示例8: DownloadTextureCommand

        public DownloadTextureCommand(TestClient testClient)
        {
            Name = "downloadtexture";
            Description = "Downloads the specified texture. " +
                "Usage: downloadtexture [texture-uuid] [discardlevel]";
            Category = CommandCategory.Inventory;

        }
开发者ID:KSLcom,项目名称:Aurora-LibOMV,代码行数:8,代码来源:DownloadTextureCommand.cs

示例9: GridLayerCommand

        public GridLayerCommand(TestClient testClient)
        {
            Name = "gridlayer";
            Description = "Downloads all of the layer chunks for the grid object map";
            Category = CommandCategory.Simulator;

            testClient.Grid.OnGridLayer += new GridManager.GridLayerCallback(Grid_OnGridLayer);
        }
开发者ID:RavenB,项目名称:gridsearch,代码行数:8,代码来源:GridLayerCommand.cs

示例10: DownloadCommand

        public DownloadCommand(TestClient testClient)
        {
            Name = "download";
            Description = "Downloads the specified asset. Usage: download [uuid] [assetType]";
            Category = CommandCategory.Inventory;

            testClient.Assets.OnAssetReceived += new AssetManager.AssetReceivedCallback(Assets_OnAssetReceived);
        }
开发者ID:RavenB,项目名称:gridsearch,代码行数:8,代码来源:DownloadCommand.cs

示例11: ImportCommand

 public ImportCommand(TestClient testClient)
 {
     Name = "import";
     Description = "Import prims from an exported xml file. Usage: import inputfile.xml [usegroup]";
     Category = CommandCategory.Objects;
     
     testClient.Objects.ObjectUpdate += Objects_OnNewPrim;
 }
开发者ID:RavenB,项目名称:gridsearch,代码行数:8,代码来源:ImportCommand.cs

示例12: GridLayerCommand

        public GridLayerCommand(TestClient testClient)
        {
            Name = "gridlayer";
            Description = "Downloads all of the layer chunks for the grid object map";
            Category = CommandCategory.Simulator;

            testClient.Grid.GridLayer += Grid_GridLayer;
        }
开发者ID:RavenB,项目名称:gridsearch,代码行数:8,代码来源:GridLayerCommand.cs

示例13: PacketLogCommand

        public PacketLogCommand(TestClient testClient)
        {
            Name = "logpacket";
            Description = "Logs a given number of packets to a file.  For example, packetlog 10 tenpackets.xml";
            Category = CommandCategory.TestClient;

            m_client = testClient;
        }
开发者ID:nivardus,项目名称:libopenmetaverse,代码行数:8,代码来源:LogPacketCommand.cs

示例14: FollowCommand

		public FollowCommand(TestClient testClient)
		{
			Name = "follow";
			Description = "Follow another avatar. (usage: follow [FirstName LastName])  If no target is set then will follow master.";
            Category = CommandCategory.Movement;

            testClient.Network.RegisterCallback(PacketType.AlertMessage, new NetworkManager.PacketCallback(AlertMessageHandler));
		}
开发者ID:RavenB,项目名称:gridsearch,代码行数:8,代码来源:FollowCommand.cs

示例15: ImCommand

        public ImCommand(TestClient testClient)
        {
            testClient.Avatars.AvatarPickerReply += Avatars_AvatarPickerReply;

            Name = "im";
            Description = "Instant message someone. Usage: im [firstname] [lastname] [message]";
            Category = CommandCategory.Communication;
        }
开发者ID:KSLcom,项目名称:Aurora-LibOMV,代码行数:8,代码来源:IMCommand.cs


注:本文中的OpenMetaverse.TestClient.TestClient类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。