Beispiel #1
0
        public void StartFollowingAvatar(UUID avatarID, Dictionary <int, object> options)
        {
            lock (m_movementLock)
            {
                if (MovementInProgress)
                {
                    StopMovement();
                }

                AvatarFollower.AvatarFollowerDescription desc =
                    new AvatarFollower.AvatarFollowerDescription(avatarID, options);

                BeginTrackingFrames(desc);
            }
        }
        public void StartFollowingAvatar(UUID avatarID, Dictionary<int, object> options)
        {
            lock (m_movementLock)
            {
                if (MovementInProgress)
                    StopMovement();

                AvatarFollower.AvatarFollowerDescription desc = 
                    new AvatarFollower.AvatarFollowerDescription(avatarID, options);

                BeginTrackingFrames(desc);
            }
        }