Examples of AvatarInterestsUpdatePacket


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

  /// 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
Copyright © 2018 www.massapi.com. 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.