Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.AvatarInterestsUpdatePacket$PropertiesDataBlock


  /// Update agents profile interests
  /// </summary>
  /// <param name="interests">selection of interests from <seealso cref="T:OpenMetaverse.Avatar.Interests"/> struct</param>
  public void UpdateInterests(Avatar.Interests interests)
  {
    AvatarInterestsUpdatePacket aiup = new AvatarInterestsUpdatePacket();
    aiup.AgentData.AgentID = id;
    aiup.AgentData.SessionID = sessionID;
    aiup.PropertiesData.LanguagesText = Utils.stringToBytesWithTrailingNullByte(interests.LanguagesText);
    aiup.PropertiesData.SkillsMask = interests.SkillsMask;
    aiup.PropertiesData.SkillsText = Utils.stringToBytesWithTrailingNullByte(interests.SkillsText);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.AvatarInterestsUpdatePacket$PropertiesDataBlock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.