Beispiel #1
0
 protected Agent(UUID agentId, Uri homeURI)
 {
     Attachments           = new AgentAttachments();
     Group                 = UGI.Unknown;
     ID                    = agentId;
     HomeURI               = homeURI;
     m_AnimationController = new AgentAnimationController(this, SendAnimations);
     AllowUnsit            = true;
 }
Beispiel #2
0
 public RezAttachmentHandler(
     SceneInterface scene,
     UUID assetid,
     AssetServiceInterface source,
     UGUI rezzingagent,
     AttachmentPoint attachPoint,
     AgentAttachments attachmentsList,
     InventoryItem sourceItem)
     : base(scene.AssetService, source, assetid, ReferenceSource.Destination)
 {
     m_Scene           = scene;
     m_RezzingAgent    = rezzingagent;
     m_AttachPoint     = attachPoint;
     m_AttachmentsList = attachmentsList;
     m_SourceItem      = sourceItem;
 }