OpenMetaverse.AvatarUpdateEventArgs.AvatarUpdateEventArgs C# (CSharp) Method

AvatarUpdateEventArgs() public method

Construct a new instance of the AvatarUpdateEventArgs class
public AvatarUpdateEventArgs ( Simulator simulator, Avatar avatar, ushort timeDilation, bool isNew ) : System
simulator Simulator The simulator the packet originated from
avatar Avatar The data
timeDilation ushort The simulator time dilation
isNew bool The avatar was not in the dictionary before this update
return System
        public AvatarUpdateEventArgs(Simulator simulator, Avatar avatar, ushort timeDilation, bool isNew)
        {
            this.m_Simulator = simulator;
            this.m_Avatar = avatar;
            this.m_TimeDilation = timeDilation;
            this.m_IsNew = isNew;
        }
AvatarUpdateEventArgs